| | |
| | | void addTechnique(Integer technologyId, TechniqueDto techniqueDto); |
| | | |
| | | /** |
| | | * 添加同一个型号生产工艺的版本 |
| | | * @param specificationsId |
| | | * @return |
| | | */ |
| | | Integer addVersion(Integer specificationsId,Integer version); |
| | | |
| | | /** |
| | | * 删除 |
| | | * @param 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); |
| | | } |
| | | |