提交 | 用户 | 时间
|
71e81e
|
1 |
package cn.stylefeng.guns.modular.em.equipmentAlarm.service; |
懒 |
2 |
|
|
3 |
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo; |
|
4 |
import cn.stylefeng.guns.modular.em.equipmentAlarm.entity.EquipmentAlarm; |
|
5 |
import cn.stylefeng.guns.modular.em.equipmentAlarm.model.params.EquipmentAlarmParam; |
|
6 |
import cn.stylefeng.guns.modular.em.equipmentAlarm.model.result.EquipmentAlarmResult; |
|
7 |
import com.baomidou.mybatisplus.extension.service.IService; |
|
8 |
|
|
9 |
import java.util.List; |
|
10 |
|
|
11 |
/** |
|
12 |
* <p> |
|
13 |
* 设备报警 服务类 |
|
14 |
* </p> |
|
15 |
* |
|
16 |
* @author cl |
|
17 |
* @since 2022-10-28 |
|
18 |
*/ |
|
19 |
public interface EquipmentAlarmService extends IService<EquipmentAlarm> { |
|
20 |
|
|
21 |
/** |
|
22 |
* 新增 |
|
23 |
* |
|
24 |
* @author cl |
|
25 |
* @Date 2022-10-28 |
|
26 |
*/ |
|
27 |
void add(EquipmentAlarmParam param); |
|
28 |
|
|
29 |
/** |
|
30 |
* 删除 |
|
31 |
* |
|
32 |
* @author cl |
|
33 |
* @Date 2022-10-28 |
|
34 |
*/ |
|
35 |
void delete(EquipmentAlarmParam param); |
|
36 |
|
|
37 |
/** |
|
38 |
* 更新 |
|
39 |
* |
|
40 |
* @author cl |
|
41 |
* @Date 2022-10-28 |
|
42 |
*/ |
|
43 |
void update(EquipmentAlarmParam param); |
|
44 |
|
|
45 |
/** |
|
46 |
* 查询单条数据,Specification模式 |
|
47 |
* |
|
48 |
* @author cl |
|
49 |
* @Date 2022-10-28 |
|
50 |
*/ |
|
51 |
EquipmentAlarmResult findBySpec(EquipmentAlarmParam param); |
|
52 |
|
|
53 |
/** |
|
54 |
* 查询列表,Specification模式 |
|
55 |
* |
|
56 |
* @author cl |
|
57 |
* @Date 2022-10-28 |
|
58 |
*/ |
|
59 |
List<EquipmentAlarmResult> findListBySpec(EquipmentAlarmParam param); |
|
60 |
|
|
61 |
/** |
|
62 |
* 查询分页数据,Specification模式 |
|
63 |
* |
|
64 |
* @author cl |
|
65 |
* @Date 2022-10-28 |
|
66 |
*/ |
|
67 |
LayuiPageInfo findPageBySpec(EquipmentAlarmParam param); |
|
68 |
|
|
69 |
} |