standard-server/src/main/java/com/yuanchu/mom/service/impl/TechniqueServiceImpl.java
@@ -60,10 +60,9 @@ //右上角新增-->生产工艺 @Override public void addTechnique(Integer technologyId, TechniqueDto techniqueDto) { public void addTechnique(TechniqueDto techniqueDto) { Technique technique = new Technique(); BeanUtils.copyProperties(techniqueDto, technique); technique.setTechnologyId(technologyId); techniqueMapper.insert(technique); }