提交 | 用户 | 时间
|
97d38f
|
1 |
package com.iailab.module.model.mcs.pre.service; |
潘 |
2 |
|
5b952f
|
3 |
import com.baomidou.mybatisplus.core.metadata.IPage; |
b06c21
|
4 |
import com.iailab.framework.common.pojo.PageResult; |
潘 |
5 |
import com.iailab.framework.common.service.BaseService; |
9587d2
|
6 |
import com.iailab.module.model.api.mcs.dto.AlarmConfigRespDTO; |
b06c21
|
7 |
import com.iailab.module.model.mcs.pre.entity.MmPredictAlarmConfigEntity; |
潘 |
8 |
import com.iailab.module.model.mcs.pre.vo.MmPredictAlarmConfigPageReqVO; |
5b952f
|
9 |
import com.iailab.module.model.mcs.pre.vo.MmPredictAlarmConfigRespVO; |
b06c21
|
10 |
import com.iailab.module.model.mcs.pre.vo.MmPredictAlarmConfigSaveReqVO; |
9587d2
|
11 |
|
L |
12 |
import java.util.List; |
|
13 |
import java.util.Map; |
b06c21
|
14 |
|
97d38f
|
15 |
/** |
潘 |
16 |
* @author PanZhibao |
|
17 |
* @Description |
|
18 |
* @createTime 2024年11月19日 |
|
19 |
*/ |
b06c21
|
20 |
public interface MmPredictAlarmConfigService extends BaseService<MmPredictAlarmConfigEntity> { |
潘 |
21 |
|
5b952f
|
22 |
PageResult<MmPredictAlarmConfigRespVO> page(MmPredictAlarmConfigPageReqVO reqVO); |
b06c21
|
23 |
|
潘 |
24 |
MmPredictAlarmConfigEntity getInfo(String id); |
|
25 |
|
|
26 |
void create(MmPredictAlarmConfigSaveReqVO reqVO); |
|
27 |
|
|
28 |
void update(MmPredictAlarmConfigSaveReqVO reqVO); |
|
29 |
|
|
30 |
void delete(String id); |
9587d2
|
31 |
|
L |
32 |
List<AlarmConfigRespDTO> list(Map<String, Object> params); |
97d38f
|
33 |
} |