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());