dengzedong
2024-12-16 56e36dc4e6c1effe6204f72467d3b40d5d716a75
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.iailab.module.model.mcs.pre.service;
 
import com.iailab.framework.common.pojo.PageResult;
import com.iailab.module.model.mcs.pre.entity.MmItemTypeEntity;
import com.iailab.module.model.mcs.pre.vo.MmItemTypePageReqVO;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author PanZhibao
 * @date 2021年04月23日 15:27
 */
public interface MmItemTypeService{
 
    void saveItemType(MmItemTypeEntity module);
 
    void update(MmItemTypeEntity module);
 
    void deleteBatch(String[] module);
 
    int check(MmItemTypeEntity module);
 
    PageResult<MmItemTypeEntity> page(MmItemTypePageReqVO reqVO);
 
    MmItemTypeEntity getItemTypeByItemId(String itemId);
 
    MmItemTypeEntity info(String id);
 
    List<MmItemTypeEntity> list(Map<String, Object> params);
}