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);
|
}
|