| | |
| | | |
| | | import com.yuanchu.mom.pojo.Technology; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.mom.pojo.dto.TechnologyDto; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> selectAllTec(Integer specificationsId, Integer version,String message); |
| | | |
| | | /** |
| | | * 右上角新增-->工艺路线-->选择设备组 |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> chooseDevice(); |
| | | |
| | | /** |
| | | * 右上角新增-->工艺路线-->选择工序 |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> chooseFather(Integer specificationsId); |
| | | |
| | | /** |
| | | * 右上角新增-->工艺路线 |
| | | * @param specificationsId |
| | | * @param technologyDto |
| | | */ |
| | | void addTechnology(Integer specificationsId, TechnologyDto technologyDto); |
| | | |
| | | /** |
| | | * 填写生产定额,鼠标移开保存 |
| | | * @param id |
| | | * @param productionQuota |
| | | * @return |
| | | */ |
| | | Integer write(Integer id, Integer productionQuota); |
| | | |
| | | /** |
| | | * 添加同一个型号工艺路线的版本 |
| | | * @param specificationsId |
| | | * @return |
| | | */ |
| | | Integer addVersion(Integer specificationsId,Integer version); |
| | | |
| | | /** |
| | | * 删除 |
| | | * @param id |
| | | */ |
| | | void delTechById(Integer id); |
| | | |
| | | /** |
| | | * 批量删除 |
| | | * @param ids |
| | | */ |
| | | void delAllTech(String ids); |
| | | } |