提交 | 用户 | 时间
|
f1162e
|
1 |
package com.iailab.module.data.ind.category.service; |
潘 |
2 |
|
|
3 |
|
|
4 |
import com.iailab.module.data.ind.category.entity.IndItemCategoryEntity; |
|
5 |
import com.iailab.module.data.ind.category.vo.IndItemCategoryReqVO; |
|
6 |
import com.iailab.module.data.ind.category.vo.IndItemCategorySaveReqVO; |
|
7 |
|
|
8 |
import java.util.List; |
|
9 |
|
|
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2024年09月10日 |
|
14 |
*/ |
|
15 |
public interface IndItemCategoryService { |
|
16 |
|
|
17 |
List<IndItemCategoryEntity> getList(IndItemCategoryReqVO reqVO); |
|
18 |
|
cb49da
|
19 |
List<IndItemCategoryEntity> getSimpleList(); |
潘 |
20 |
|
f1162e
|
21 |
void create(IndItemCategorySaveReqVO createReqVO); |
潘 |
22 |
|
|
23 |
void update(IndItemCategorySaveReqVO updateReqVO); |
|
24 |
|
|
25 |
IndItemCategoryEntity get(String id); |
|
26 |
|
|
27 |
void delete(String id); |
|
28 |
} |