package com.qianwen.smartman.modules.smis.service; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; import com.qianwen.core.mp.support.Query; import com.qianwen.smartman.modules.smis.entity.MaterialType; import com.qianwen.smartman.modules.smis.vo.MaterialTypeAddVO; import com.qianwen.smartman.modules.smis.vo.MaterialTypeUpdateVO; import com.qianwen.smartman.modules.smis.vo.MaterialTypeVO; public interface IMaterialTypeService extends IService { List enableList(); IPage getPageMaterialType(Query query, String keyWord, Integer status); MaterialTypeVO createMaterialType(MaterialTypeAddVO materialTypeAddVO); MaterialTypeVO updateMaterialType(MaterialTypeUpdateVO materialTypeUpdateVO); boolean deleteMaterialType(List ids, Integer type); }