| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.mom.pojo.Mbom; |
| | | import com.yuanchu.mom.pojo.dto.MbomDto; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> selectAllMbom(Integer specificationsId, Integer version,String message); |
| | | |
| | | /** |
| | | * 右上角新增-->物料清单-->选择工序,工艺 |
| | | * @param specificationsId |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> chooseTech(Integer specificationsId); |
| | | |
| | | /** |
| | | * 右上角新增-->物料清单 |
| | | * @param technologyId |
| | | * @param mbomDto |
| | | */ |
| | | void addMbom(Integer technologyId, MbomDto mbomDto); |
| | | |
| | | /** |
| | | * 填写数量,鼠标移开保存 |
| | | * @param id |
| | | * @param num |
| | | * @return |
| | | */ |
| | | Integer write(Integer id, Integer num); |
| | | |
| | | /** |
| | | * 添加同一个型号物料清单的版本 |
| | | * @param specificationsId |
| | | * @return |
| | | */ |
| | | Integer addVersion(Integer specificationsId,Integer version); |
| | | |
| | | /** |
| | | * 删除 |
| | | * @param id |
| | | */ |
| | | void delMbomById(Integer id); |
| | | |
| | | /** |
| | | * 批量删除 |
| | | * @param ids |
| | | */ |
| | | void delAllMbom(String ids); |
| | | } |
| | | |