java110
2022-02-21 bd09ba3723a91fb8f1ccf51784c34c1639fb89a8
service-fee/src/main/java/com/java110/fee/cmd/payFeeBatch/UpdatePayFeeBatchCmd.java
@@ -32,7 +32,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;
@@ -63,7 +63,7 @@
        Assert.hasKeyAndValue(reqJson, "batchId", "batchId不能为空");
        Assert.hasKeyAndValue(reqJson, "communityId", "communityId不能为空");
        Assert.hasKeyAndValue(reqJson, "state", "状态不能为空");
        Assert.hasKeyAndValue(reqJson, "message", "消息不能为空");
        Assert.hasKeyAndValue(reqJson, "msg", "消息不能为空");
    }
    @Override
@@ -84,7 +84,7 @@
            throw new CmdException("更新数据失败");
        }
        if (!PayFeeBatchDto.STATE_FAIL.equals(payFeeBatchPo.getState())) {
        if (PayFeeBatchDto.STATE_FAIL.equals(payFeeBatchPo.getState())) {
            cmdDataFlowContext.setResponseEntity(ResultVo.success());
            return;
        }