baihe 3 жил өмнө
parent
commit
afe46f1e10

+ 4 - 0
application-facade/src/main/java/com/factory/wx/entity/req/PlanInfoReq.java

@@ -1,5 +1,7 @@
 package com.factory.wx.entity.req;
 
+import java.util.List;
+
 import io.swagger.annotations.ApiModelProperty;
 import lombok.AllArgsConstructor;
 import lombok.Builder;
@@ -25,4 +27,6 @@ public class PlanInfoReq {
 
     @ApiModelProperty(value = "计划类型")
     private int planType;
+    @ApiModelProperty(value = "角色列表",hidden=true)
+    private List<Long> roleIds;
 }

+ 1 - 0
application-facade/src/main/java/com/factory/wx/service/impl/PlanReminderServiceImpl.java

@@ -118,6 +118,7 @@ public class PlanReminderServiceImpl implements PlanReminderService {
     		log.error("没有权限确认超时任务{}",planInfoReq);
     		return;
     	}
+    	planInfoReq.setRoleIds(roleIds);
         reminderMapper.confirmReminder(planInfoReq);
     }