From d7f90a850e71079be63530b65ba75778b3d373de Mon Sep 17 00:00:00 2001 From: xhxu Date: Tue, 25 Apr 2023 14:29:06 +0800 Subject: [PATCH] //apply --- .../basic/WxProfitSharingReceiverApplyController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mallinkAdmin/src/main/java/com/iformall/controller/basic/WxProfitSharingReceiverApplyController.java b/mallinkAdmin/src/main/java/com/iformall/controller/basic/WxProfitSharingReceiverApplyController.java index a7d198499..cafa3b16c 100644 --- a/mallinkAdmin/src/main/java/com/iformall/controller/basic/WxProfitSharingReceiverApplyController.java +++ b/mallinkAdmin/src/main/java/com/iformall/controller/basic/WxProfitSharingReceiverApplyController.java @@ -144,7 +144,7 @@ public class WxProfitSharingReceiverApplyController extends BaseController { @SystemControllerLog(description = "修改") public ResultData delReceiverApply(@RequestBody WxProfitSharingReceiverApply receiverApply) { log.debug("[" + getIpAddr() + "] merchantProfitSharingReceiver::delReceiverApply"); - if(receiverApply.getId() == null || receiverApply.getFunctionState() == null){ + if(receiverApply.getId() == null){ return new ResultData(ErrorCode.SYS_PARAMETER_NOT_NULL); } WxProfitSharingReceiverApply delApply = wxProfitSharingReceiverApplyService.selectById(receiverApply.getId());