提交 | 用户 | 时间
|
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 |
|
|
7 |
import java.util.List; |
|
8 |
import java.util.Map; |
|
9 |
|
|
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @date 2021年04月23日 8:35 |
|
13 |
*/ |
5c6007
|
14 |
public interface DmModuleService{ |
7fd198
|
15 |
|
潘 |
16 |
void saveModule(DmModuleEntity module); |
|
17 |
|
|
18 |
void update(DmModuleEntity module); |
|
19 |
|
|
20 |
void deleteBatch(String[] module); |
|
21 |
|
|
22 |
int check(DmModuleEntity module); |
|
23 |
|
|
24 |
PageResult<DmModuleEntity> queryPage(DmModulePageReqVO reqVO); |
|
25 |
|
|
26 |
List<DmModuleEntity> list(Map<String, Object> params); |
|
27 |
|
|
28 |
List<DmModuleEntity> getModuleByModuleType(String moduletype); |
bbc1ee
|
29 |
|
5c6007
|
30 |
DmModuleEntity info(String id); |
7fd198
|
31 |
} |