提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.pre.service; |
潘 |
2 |
|
|
3 |
import com.iailab.framework.common.pojo.PageResult; |
|
4 |
import com.iailab.module.model.mcs.pre.entity.DmModuleEntity; |
|
5 |
import com.iailab.module.model.mcs.pre.vo.DmModulePageReqVO; |
|
6 |
|
4f1717
|
7 |
import java.util.Date; |
7fd198
|
8 |
import java.util.List; |
潘 |
9 |
import java.util.Map; |
|
10 |
|
|
11 |
/** |
|
12 |
* @author PanZhibao |
|
13 |
* @date 2021年04月23日 8:35 |
|
14 |
*/ |
5c6007
|
15 |
public interface DmModuleService{ |
7fd198
|
16 |
|
潘 |
17 |
void saveModule(DmModuleEntity module); |
|
18 |
|
|
19 |
void update(DmModuleEntity module); |
|
20 |
|
|
21 |
void deleteBatch(String[] module); |
|
22 |
|
|
23 |
int check(DmModuleEntity module); |
|
24 |
|
|
25 |
PageResult<DmModuleEntity> queryPage(DmModulePageReqVO reqVO); |
|
26 |
|
|
27 |
List<DmModuleEntity> list(Map<String, Object> params); |
|
28 |
|
|
29 |
List<DmModuleEntity> getModuleByModuleType(String moduletype); |
bbc1ee
|
30 |
|
5c6007
|
31 |
DmModuleEntity info(String id); |
9f049d
|
32 |
|
J |
33 |
DmModuleEntity getModuleByItemId(String itemId); |
4f1717
|
34 |
|
潘 |
35 |
void updatePredictTime(String id, Date predictTime); |
7fd198
|
36 |
} |