| | |
| | | package org.jeecg.modules.dnc.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.dnc.entity.PartsInfo; |
| | | import org.jeecg.common.api.vo.Result; |
| | | import org.jeecg.modules.dnc.entity.ProcessSpecVersion; |
| | | import org.jeecg.modules.system.entity.MdcProduction; |
| | | import org.jeecg.modules.system.entity.SysUser; |
| | |
| | | * @param processSpecVersionCode |
| | | * @return |
| | | */ |
| | | ProcessSpecVersion getByCode(String processSpecVersionCode); |
| | | ProcessSpecVersion getByCode(String partId,String processSpecVersionCode); |
| | | |
| | | /** |
| | | * 根据零件id获取 |
| | |
| | | */ |
| | | boolean assignRemoveDepart(ProcessSpecVersion processSpecVersion, Collection<MdcProduction> departmentList); |
| | | |
| | | /** |
| | | * 根据工艺规程id查询,下级工序工步数量 |
| | | * @param processSpecId |
| | | * @return |
| | | */ |
| | | Result<?> getProcessSpecVersionCount(String processSpecId); |
| | | |
| | | /** |
| | | * 查询工艺规程版本下的工序与工步 |
| | | * @param processSpecVersionId |
| | | * @return |
| | | */ |
| | | |
| | | } |