提交 | 用户 | 时间
|
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; |
|
6 |
import com.iailab.module.model.mcs.pre.entity.MmPredictAlarmConfigEntity; |
|
7 |
import com.iailab.module.model.mcs.pre.vo.MmPredictAlarmConfigPageReqVO; |
5b952f
|
8 |
import com.iailab.module.model.mcs.pre.vo.MmPredictAlarmConfigRespVO; |
b06c21
|
9 |
import com.iailab.module.model.mcs.pre.vo.MmPredictAlarmConfigSaveReqVO; |
潘 |
10 |
|
97d38f
|
11 |
/** |
潘 |
12 |
* @author PanZhibao |
|
13 |
* @Description |
|
14 |
* @createTime 2024年11月19日 |
|
15 |
*/ |
b06c21
|
16 |
public interface MmPredictAlarmConfigService extends BaseService<MmPredictAlarmConfigEntity> { |
潘 |
17 |
|
5b952f
|
18 |
PageResult<MmPredictAlarmConfigRespVO> page(MmPredictAlarmConfigPageReqVO reqVO); |
b06c21
|
19 |
|
潘 |
20 |
MmPredictAlarmConfigEntity getInfo(String id); |
|
21 |
|
|
22 |
void create(MmPredictAlarmConfigSaveReqVO reqVO); |
|
23 |
|
|
24 |
void update(MmPredictAlarmConfigSaveReqVO reqVO); |
|
25 |
|
|
26 |
void delete(String id); |
97d38f
|
27 |
} |