From 7958f1dddb8a7f4e70d232b07a7703955ecedae0 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期六, 26 八月 2023 12:45:33 +0800
Subject: [PATCH] 优化diamante

---
 service-acct/src/main/java/com/java110/acct/cmd/couponRule/DeleteCouponRuleFeeCmd.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/service-acct/src/main/java/com/java110/acct/cmd/couponRule/DeleteCouponRuleFeeCmd.java b/service-acct/src/main/java/com/java110/acct/cmd/couponRule/DeleteCouponRuleFeeCmd.java
index 22e0d1d..f031c33 100644
--- a/service-acct/src/main/java/com/java110/acct/cmd/couponRule/DeleteCouponRuleFeeCmd.java
+++ b/service-acct/src/main/java/com/java110/acct/cmd/couponRule/DeleteCouponRuleFeeCmd.java
@@ -21,16 +21,16 @@
 import com.java110.core.context.ICmdDataFlowContext;
 import com.java110.core.event.cmd.Cmd;
 import com.java110.core.event.cmd.CmdEvent;
-import com.java110.core.factory.GenerateCodeFactory;
 import com.java110.intf.acct.ICouponRuleFeeV1InnerServiceSMO;
-import com.java110.po.couponRuleFee.CouponRuleFeePo;
+import com.java110.po.coupon.CouponRuleFeePo;
 import com.java110.utils.exception.CmdException;
 import com.java110.utils.util.Assert;
 import com.java110.utils.util.BeanConvertUtil;
 import com.java110.vo.ResultVo;
-import org.springframework.beans.factory.annotation.Autowired;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+
 /**
  * 绫昏〃杩帮細鍒犻櫎
  * 鏈嶅姟缂栫爜锛歝ouponRuleFee.deleteCouponRuleFee
@@ -43,7 +43,7 @@
  */
 @Java110Cmd(serviceCode = "couponRule.deleteCouponRuleFee")
 public class DeleteCouponRuleFeeCmd extends Cmd {
-  private static Logger logger = LoggerFactory.getLogger(DeleteCouponRuleFeeCmd.class);
+    private static Logger logger = LoggerFactory.getLogger(DeleteCouponRuleFeeCmd.class);
 
     @Autowired
     private ICouponRuleFeeV1InnerServiceSMO couponRuleFeeV1InnerServiceSMOImpl;
@@ -51,7 +51,7 @@
     @Override
     public void validate(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) {
         Assert.hasKeyAndValue(reqJson, "crfId", "crfId涓嶈兘涓虹┖");
-Assert.hasKeyAndValue(reqJson, "communityId", "communityId涓嶈兘涓虹┖");
+        Assert.hasKeyAndValue(reqJson, "communityId", "communityId涓嶈兘涓虹┖");
 
     }
 
@@ -59,7 +59,7 @@
     @Java110Transactional
     public void doCmd(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) throws CmdException {
 
-       CouponRuleFeePo couponRuleFeePo = BeanConvertUtil.covertBean(reqJson, CouponRuleFeePo.class);
+        CouponRuleFeePo couponRuleFeePo = BeanConvertUtil.covertBean(reqJson, CouponRuleFeePo.class);
         int flag = couponRuleFeeV1InnerServiceSMOImpl.deleteCouponRuleFee(couponRuleFeePo);
 
         if (flag < 1) {

--
Gitblit v1.8.0