潘志宝
2024-11-04 a3a0726158dc82590ad591ca9b56f17c31fe9951
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
package com.iailab.module.data.plan.category.service;
 
 
import com.iailab.module.data.plan.category.entity.PlanItemCategoryEntity;
import com.iailab.module.data.plan.category.vo.PlanItemCategoryReqVO;
import com.iailab.module.data.plan.category.vo.PlanItemCategorySaveReqVO;
 
import java.util.List;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年11月01日
 */
public interface PlanItemCategoryService {
 
    List<PlanItemCategoryEntity> getList(PlanItemCategoryReqVO reqVO);
 
    List<PlanItemCategoryEntity> getSimpleList();
 
    void create(PlanItemCategorySaveReqVO createReqVO);
 
    void update(PlanItemCategorySaveReqVO updateReqVO);
 
    PlanItemCategoryEntity get(String id);
 
    void delete(String id);
}