提交 | 用户 | 时间
|
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.MmItemTypeEntity; |
|
5 |
import com.iailab.module.model.mcs.pre.vo.MmItemTypePageReqVO; |
|
6 |
|
5c6007
|
7 |
import java.util.List; |
7fd198
|
8 |
import java.util.Map; |
潘 |
9 |
|
|
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @date 2021年04月23日 15:27 |
|
13 |
*/ |
5c6007
|
14 |
public interface MmItemTypeService{ |
7fd198
|
15 |
|
潘 |
16 |
void saveItemType(MmItemTypeEntity module); |
|
17 |
|
|
18 |
void update(MmItemTypeEntity module); |
|
19 |
|
|
20 |
void deleteBatch(String[] module); |
|
21 |
|
|
22 |
int check(MmItemTypeEntity module); |
|
23 |
|
|
24 |
PageResult<MmItemTypeEntity> page(MmItemTypePageReqVO reqVO); |
|
25 |
|
|
26 |
MmItemTypeEntity getItemTypeByItemId(String itemId); |
5c6007
|
27 |
|
L |
28 |
MmItemTypeEntity info(String id); |
|
29 |
|
|
30 |
List<MmItemTypeEntity> list(Map<String, Object> params); |
7fd198
|
31 |
} |