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