SysStructSpotRelationMapper.java
1.8 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
53
54
55
56
57
58
59
60
package com.skua.modules.remotecontrol.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.skua.modules.remotecontrol.entity.SysStructSpotRelation;
import com.skua.modules.remotecontrol.vo.SysStructSpotRelationVO;
import org.springframework.data.repository.query.Param;
import java.util.List;
import java.util.Map;
/**
* 工艺一张图
*/
public interface SysStructSpotRelationMapper extends BaseMapper<SysStructSpotRelation> {
List<Map<String, Object>> getDepartTreeByJt(@Param("orgCode") String orgCode);
List<Map<String, Object>> queryUserDeparts(@Param("userId") String userId);
//根据厂区获取构筑物
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>> chuShuiSelectData(String structCode);
List<Map<String,Object>> selectDosing();//加药
List<Map<String,Object>> outMud(String startTime, String stopTime);//产泥量
/**
* 自定义查询
* @param pageList
* @param sysStructSpotRelationVO
* @return
*/
List<SysStructSpotRelationVO> queryCustomPageList(Page<SysStructSpotRelationVO> pageList, SysStructSpotRelationVO sysStructSpotRelationVO);
}