ISysStructSpotRelationService.java 1.5 KB
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();

}