package cn.stylefeng.guns.modular.sc.equipmentAlarmConf.service;
|
|
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
|
import cn.stylefeng.guns.modular.sc.equipmentAlarmConf.entity.EquipmentAlarmConf;
|
import cn.stylefeng.guns.modular.sc.equipmentAlarmConf.model.params.EquipmentAlarmConfParam;
|
import cn.stylefeng.guns.modular.sc.equipmentAlarmConf.model.result.EquipmentAlarmConfResult;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 报警代码配置 服务类
|
* </p>
|
*
|
* @author cl
|
* @since 2022-10-28
|
*/
|
public interface EquipmentAlarmConfService extends IService<EquipmentAlarmConf> {
|
|
/**
|
* 新增
|
*
|
* @author cl
|
* @Date 2022-10-28
|
*/
|
void add(EquipmentAlarmConfParam param);
|
|
/**
|
* 删除
|
*
|
* @author cl
|
* @Date 2022-10-28
|
*/
|
void delete(EquipmentAlarmConfParam param);
|
|
/**
|
* 更新
|
*
|
* @author cl
|
* @Date 2022-10-28
|
*/
|
void update(EquipmentAlarmConfParam param);
|
|
/**
|
* 查询单条数据,Specification模式
|
*
|
* @author cl
|
* @Date 2022-10-28
|
*/
|
EquipmentAlarmConfResult findBySpec(EquipmentAlarmConfParam param);
|
|
/**
|
* 查询列表,Specification模式
|
*
|
* @author cl
|
* @Date 2022-10-28
|
*/
|
List<EquipmentAlarmConfResult> findListBySpec(EquipmentAlarmConfParam param);
|
|
/**
|
* 查询分页数据,Specification模式
|
*
|
* @author cl
|
* @Date 2022-10-28
|
*/
|
LayuiPageInfo findPageBySpec(EquipmentAlarmConfParam param);
|
|
}
|