| | |
| | | package cn.iocoder.yudao.module.mes.service.md.item; |
| | | |
| | | import cn.iocoder.yudao.module.mes.controller.admin.md.item.vo.type.MesMdItemTypeImportExcelVO; |
| | | import cn.iocoder.yudao.module.mes.controller.admin.md.item.vo.type.MesMdItemTypeImportRespVO; |
| | | import cn.iocoder.yudao.module.mes.controller.admin.md.item.vo.type.MesMdItemTypeListReqVO; |
| | | import cn.iocoder.yudao.module.mes.controller.admin.md.item.vo.type.MesMdItemTypeSaveReqVO; |
| | | import cn.iocoder.yudao.module.mes.dal.dataobject.md.item.MesMdItemTypeDO; |
| | |
| | | /** |
| | | * MES 物料产品分类 Service 接口 |
| | | * |
| | | * @author 芋道源码 |
| | | * @author 超级管理员 |
| | | */ |
| | | public interface MesMdItemTypeService { |
| | | |
| | |
| | | MesMdItemTypeDO getItemType(Long id); |
| | | |
| | | /** |
| | | * 根据编码获得物料产品分类 |
| | | * |
| | | * @param code 分类编码 |
| | | * @return 物料产品分类 |
| | | */ |
| | | MesMdItemTypeDO getItemTypeByCode(String code); |
| | | |
| | | /** |
| | | * 获得物料产品分类列表 |
| | | * |
| | | * @param listReqVO 查询条件 |
| | |
| | | */ |
| | | List<MesMdItemTypeDO> getItemTypeChildrenList(Long parentId); |
| | | |
| | | /** |
| | | * 导入物料产品分类 |
| | | * |
| | | * @param importList 导入列表 |
| | | * @param isUpdateSupport 是否支持更新 |
| | | * @return 导入结果 |
| | | */ |
| | | MesMdItemTypeImportRespVO importItemTypeList(List<MesMdItemTypeImportExcelVO> importList, Boolean isUpdateSupport); |
| | | |
| | | } |