WANG 6 лет назад
Родитель
Сommit
1d22791493

+ 0 - 3
examcloud-core-examwork-api/src/main/java/cn/com/qmth/examcloud/examwork/api/NoticeCloudService.java

@@ -1,15 +1,12 @@
 package cn.com.qmth.examcloud.examwork.api;
 
 import cn.com.qmth.examcloud.api.commons.CloudService;
-import cn.com.qmth.examcloud.api.commons.enums.NoticeStatus;
 import cn.com.qmth.examcloud.examwork.api.request.DisposePublishingUserNoticeReq;
 import cn.com.qmth.examcloud.examwork.api.request.UpdateNoticeStatusReq;
 import cn.com.qmth.examcloud.examwork.api.response.DisposePublishingUserNoticeResp;
 import cn.com.qmth.examcloud.examwork.api.response.GetNoticeRulePublishProgressListResp;
 import io.swagger.annotations.ApiOperation;
 
-import java.util.List;
-
 public interface NoticeCloudService extends CloudService {
 
 	@ApiOperation(value = "获取通知规则发布状态")

+ 8 - 19
examcloud-core-examwork-api/src/main/java/cn/com/qmth/examcloud/examwork/api/response/DisposePublishingUserNoticeResp.java

@@ -1,8 +1,6 @@
 package cn.com.qmth.examcloud.examwork.api.response;
 
-import cn.com.qmth.examcloud.api.commons.enums.BasicDataType;
 import cn.com.qmth.examcloud.api.commons.exchange.BaseResponse;
-import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
 
 /**
  * @Description 处理发布中的用户
@@ -12,24 +10,15 @@ import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
  */
 public class DisposePublishingUserNoticeResp extends BaseResponse {
 
-    private static final long serialVersionUID = -523450513256788602L;
-    private Long nextUserId;
+	private static final long serialVersionUID = -523450513256788602L;
 
-//    private Long maxUserId;
+	private Long nextUserId;
 
-    public Long getNextUserId() {
-        return nextUserId;
-    }
+	public Long getNextUserId() {
+		return nextUserId;
+	}
 
-    public void setNextUserId(Long nextUserId) {
-        this.nextUserId = nextUserId;
-    }
-//
-//    public Long getMaxUserId() {
-//        return maxUserId;
-//    }
-//
-//    public void setMaxUserId(Long maxUserId) {
-//        this.maxUserId = maxUserId;
-//    }
+	public void setNextUserId(Long nextUserId) {
+		this.nextUserId = nextUserId;
+	}
 }

+ 10 - 7
examcloud-core-examwork-api/src/main/java/cn/com/qmth/examcloud/examwork/api/response/GetNoticeRulePublishProgressListResp.java

@@ -1,4 +1,5 @@
 package cn.com.qmth.examcloud.examwork.api.response;
+
 import java.util.List;
 
 import cn.com.qmth.examcloud.api.commons.exchange.BaseResponse;
@@ -11,13 +12,15 @@ import cn.com.qmth.examcloud.examwork.api.bean.NoticeRulePublishProgressBean;
  * @Version 1.0
  */
 public class GetNoticeRulePublishProgressListResp extends BaseResponse {
-    private List<NoticeRulePublishProgressBean> list;
+	private static final long serialVersionUID = 8334154959495986440L;
+
+	private List<NoticeRulePublishProgressBean> list;
 
-    public List<NoticeRulePublishProgressBean> getList() {
-        return list;
-    }
+	public List<NoticeRulePublishProgressBean> getList() {
+		return list;
+	}
 
-    public void setList(List<NoticeRulePublishProgressBean> list) {
-        this.list = list;
-    }
+	public void setList(List<NoticeRulePublishProgressBean> list) {
+		this.list = list;
+	}
 }