|
|
|
package com.zc.business.service;
|
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
import com.zc.business.domain.DcDevice;
|
|
|
|
import com.zc.business.domain.DcStakeMark;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 设备Service接口
|
|
|
|
*
|
|
|
|
* @author zhaoxianglong
|
|
|
|
*/
|
|
|
|
public interface IDcDeviceService extends IService<DcDevice> {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 添加设备信息
|
|
|
|
*
|
|
|
|
* @param dcDevice 设备信息
|
|
|
|
* @return 操作结果
|
|
|
|
*/
|
|
|
|
boolean addDevice(DcDevice dcDevice);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 修改设备信息
|
|
|
|
*
|
|
|
|
* @param dcDevice 设备信息
|
|
|
|
* @return 操作结果
|
|
|
|
*/
|
|
|
|
boolean editDevice(DcDevice dcDevice);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 删除设备
|
|
|
|
*
|
|
|
|
* @param ids 设备ID
|
|
|
|
* @return 操作结果
|
|
|
|
*/
|
|
|
|
boolean removeDevice(List<String> ids);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取设备列表
|
|
|
|
*
|
|
|
|
* @param dcDevice 参数
|
|
|
|
* @return 结果
|
|
|
|
*/
|
|
|
|
List<DcDevice> pageDevice(DcDevice dcDevice);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取设备列表
|
|
|
|
*
|
|
|
|
* @param dcDevice 参数
|
|
|
|
* @return 结果
|
|
|
|
*/
|
|
|
|
List<DcDevice> listDevice(DcDevice dcDevice);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 批量修改设备
|
|
|
|
*
|
|
|
|
* @param listDevice 参数
|
|
|
|
* @return 结果
|
|
|
|
*/
|
|
|
|
boolean batchUpdate(List<DcDevice> listDevice);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 根据id查询设备信息
|
|
|
|
*
|
|
|
|
* @param id 设备ID
|
|
|
|
* @return 设备信息
|
|
|
|
*/
|
|
|
|
DcDevice getDevice(String id);
|
|
|
|
|
|
|
|
DcStakeMark exampleQueryTheAssociatedPileNumber(DcDevice dcDevice);
|
|
|
|
|
|
|
|
Long statisticalAnomalyDevice();
|
|
|
|
}
|