| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.mom.pojo.Technique; |
| | | import com.yuanchu.mom.pojo.dto.TechniqueDto; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> selectAllTeq(Integer specificationsId, Integer version,String message); |
| | | |
| | | /** |
| | | * 右上角新增-->生产工艺-->选择工序,工艺 |
| | | * @param specificationsId |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> chooseTech(Integer specificationsId); |
| | | |
| | | /** |
| | | * 右上角新增-->生产工艺-->选择设备 |
| | | * @param technologyId |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> chooseDev(Integer technologyId); |
| | | |
| | | /** |
| | | *右上角新增-->生产工艺-->选择项目(父子),单位 |
| | | * @param technologyId |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> choosePro(Integer technologyId); |
| | | |
| | | /** |
| | | * 右上角新增-->生产工艺 |
| | | * @param technologyId |
| | | * @param techniqueDto |
| | | */ |
| | | void addTechnique(Integer technologyId, TechniqueDto techniqueDto); |
| | | |
| | | /** |
| | | * 删除 |
| | | * @param id |
| | | */ |
| | | void delTeqById(Integer id); |
| | | |
| | | /** |
| | | * 批量删除 |
| | | * @param ids |
| | | */ |
| | | void delAllTeq(String ids); |
| | | |
| | | /** |
| | | * 根据id查看详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> selTeqById(Integer id); |
| | | |
| | | /** |
| | | * 编辑 |
| | | * @param id |
| | | * @param product |
| | | * @param productFather |
| | | * @param unit |
| | | * @return |
| | | */ |
| | | String wriTeqById(Integer id, String product, String productFather, String unit); |
| | | } |
| | | |