wuxw
2022-07-19 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54
service-fee/src/main/java/com/java110/fee/cmd/feePrintPage/SaveFeePrintPageCmd.java
@@ -19,7 +19,7 @@
import com.java110.core.annotation.Java110Cmd;
import com.java110.core.annotation.Java110Transactional;
import com.java110.core.context.ICmdDataFlowContext;
import com.java110.core.event.cmd.AbstractServiceCmdListener;
import com.java110.core.event.cmd.Cmd;
import com.java110.core.event.cmd.CmdEvent;
import com.java110.core.factory.GenerateCodeFactory;
import com.java110.intf.fee.IFeePrintPageV1InnerServiceSMO;
@@ -29,7 +29,7 @@
import com.java110.utils.util.BeanConvertUtil;
import com.java110.vo.ResultVo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.java110.core.log.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
/**
@@ -43,7 +43,7 @@
 * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
 */
@Java110Cmd(serviceCode = "feePrintPage.saveFeePrintPage")
public class SaveFeePrintPageCmd extends AbstractServiceCmdListener {
public class SaveFeePrintPageCmd extends Cmd {
    private static Logger logger = LoggerFactory.getLogger(SaveFeePrintPageCmd.class);
@@ -57,7 +57,6 @@
        Assert.hasKeyAndValue(reqJson, "pageName", "请求报文中未包含pageName");
        Assert.hasKeyAndValue(reqJson, "communityId", "请求报文中未包含communityId");
        Assert.hasKeyAndValue(reqJson, "pageUrl", "请求报文中未包含pageUrl");
        Assert.hasKeyAndValue(reqJson, "state", "请求报文中未包含state");
    }
@@ -67,6 +66,7 @@
        FeePrintPagePo feePrintPagePo = BeanConvertUtil.covertBean(reqJson, FeePrintPagePo.class);
        feePrintPagePo.setPageId(GenerateCodeFactory.getGeneratorId(CODE_PREFIX_ID));
        feePrintPagePo.setState("F");
        int flag = feePrintPageV1InnerServiceSMOImpl.saveFeePrintPage(feePrintPagePo);
        if (flag < 1) {