package com.iailab.module.data.ind.category.service;
|
|
|
import com.iailab.module.data.ind.category.entity.IndItemCategoryEntity;
|
import com.iailab.module.data.ind.category.vo.IndItemCategoryReqVO;
|
import com.iailab.module.data.ind.category.vo.IndItemCategorySaveReqVO;
|
|
import java.util.List;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年09月10日
|
*/
|
public interface IndItemCategoryService {
|
|
List<IndItemCategoryEntity> getList(IndItemCategoryReqVO reqVO);
|
|
void create(IndItemCategorySaveReqVO createReqVO);
|
|
void update(IndItemCategorySaveReqVO updateReqVO);
|
|
IndItemCategoryEntity get(String id);
|
|
void delete(String id);
|
}
|