standard-server/src/main/java/com/yuanchu/mom/service/impl/TechnologyServiceImpl.java
@@ -71,11 +71,9 @@ //右上角新增-->工艺路线 @Override @Transactional(rollbackFor = Exception.class) public void addTechnology(Integer specificationsId, TechnologyDto technologyDto) { public void addTechnology(TechnologyDto technologyDto) { Technology technology = new Technology(); BeanUtils.copyProperties(technologyDto, technology); technology.setSpecificationsId(specificationsId); technologyMapper.insert(technology); }