| | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.yssh.entity.SuYuan; |
| | | import com.yssh.entity.SuYuan2d; |
| | | import com.yssh.entity.SuYuan3d; |
| | | import com.yssh.entity.SuYuanMonitorData; |
| | | |
| | | import com.yssh.entity.*; |
| | | |
| | | public interface ISuYuanService { |
| | | public Integer isTableExists(String tableName); |
| | | |
| | | public void insertSuYuanDatas(List<SuYuan> lists, String time) throws Exception; |
| | | |
| | | |
| | | int createNewTable(String tableName); |
| | | |
| | | |
| | | public List<SuYuan2d> selectSuYuan2d(Date date); |
| | | |
| | | |
| | | public List<SuYuan3d> selectSuYuan3d(String name, Date date); |
| | | |
| | | |
| | | public Map<String, Object> selectSuYuan100(String name, Date date); |
| | | |
| | | |
| | | public Map<String, Object> selectSuYuan200(String name, Date date); |
| | | |
| | | |
| | | public Map<String, Object> selectSuYuan300(String name, Date date); |
| | | |
| | | |
| | | public Map<String, Object> selectSuYuan500(String name, Date date); |
| | | |
| | | |
| | | public List<SuYuanMonitorData> getMonitorData(String name); |
| | | |
| | | //public List<Temporary> temporary(String name, Date date); |
| | | |
| | | public int updateVocsName(Date date, String id, String vocsName); |
| | | |
| | | public List<Qxsh> queryQxsh(Date date); |
| | | } |