ISysStructSpotRelationService.java
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.skua.modules.remotecontrol.service;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.skua.modules.remotecontrol.entity.SysStructSpotRelation;
import com.skua.modules.remotecontrol.vo.SysStructSpotRelationVO;
import java.util.List;
import java.util.Map;
/**
* 工艺一张图
*/
public interface ISysStructSpotRelationService extends IService<SysStructSpotRelation> {
List<Map<String,Object>> listStructSimulation(String departId);
List<Map<String,Object>> selectData(String structCode);
//点击按钮查询总的工艺数据
List<Map<String,Object>> bottonSelectData();
//查询详情时更为详细的工艺数据信息
List<Map<String,Object>> selectSumData(String structCode);
//查询此构筑物下设备状态信息
List<Map<String,Object>> selectequidStatic(String structCode, String equipId);
//查询设备列表
List<Map<String,Object>> selectequid(String structCode);
//查询进水管线数据
List<Map<String,Object>> jinShuiSelectData(String structCode);
List<Map<String,Object>> outMud(String startTime, String stopTime);//产泥量
/**
* 自定义查询逻辑
* @param pageList
* @param SysStructSpotRelationVO
* @return
*/
Page<SysStructSpotRelationVO> queryCustomPageList(Page<SysStructSpotRelationVO> pageList, SysStructSpotRelationVO sysStructSpotRelationVO);
List<Map<String,Object>> selectDosing();//加药
List<Map<String, Object>> deptNameList();
}