Browse Source

//MALL FEE

release_toaliyun_real
xhxu 3 years ago
parent
commit
126c9c6598
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      mallinkService/src/main/java/com/iformall/service/impl/TtMallGoodsCategoryServiceImpl.java

+ 5
- 5
mallinkService/src/main/java/com/iformall/service/impl/TtMallGoodsCategoryServiceImpl.java View File

@@ -142,11 +142,11 @@ public class TtMallGoodsCategoryServiceImpl implements TtMallGoodsCategoryServic
List<TtMallGoodsCategory> childList = new ArrayList<>();
for (Integer childId:childIds) {
TtMallGoodsCategory child = new TtMallGoodsCategory();
old.setGoodsCategoryId(childId);
old.updateTenantInfo(tenantEntity);
old.setSoftwareFee(softwareFee);
old.setCreateDate(now);
old.setUpdateDate(now);
child.setGoodsCategoryId(childId);
child.updateTenantInfo(tenantEntity);
child.setSoftwareFee(softwareFee);
child.setCreateDate(now);
child.setUpdateDate(now);
childList.add(child);
}
ttMallGoodsCategoryMapper.insertList(childList);


Loading…
Cancel
Save