oying-system/src/main/java/com/oying/modules/pc/product/service/impl/ProductServiceImpl.java
@@ -46,7 +46,6 @@ @Override @Transactional(rollbackFor = Exception.class) public void create(Product resources) { resources.setCreateBy(SecurityUtils.getCurrentUserId()); productMapper.insert(resources); } @@ -55,7 +54,6 @@ public void update(Product resources) { Product product = getById(resources.getProductId()); product.copy(resources); product.setUpdateBy(SecurityUtils.getCurrentUserId()); productMapper.updateById(product); }