Kaynağa Gözat

1.删除一些无用代码
2.类和方法重命名

lideyin 6 yıl önce
ebeveyn
işleme
51d65c2464

+ 18 - 5
examcloud-core-examwork-dao/src/main/java/cn/com/qmth/examcloud/core/examwork/dao/entity/NoticePublishScheduleEntity.java

@@ -42,7 +42,12 @@ public class NoticePublishScheduleEntity extends JpaEntity {
 	/**
 	 * 已发布的最大用户id
 	 */
-	private Long maxUserId;
+	private Long maxStudentId;
+
+	/**
+	 * 已发布的最大用户id
+	 */
+	private Long maxCommonUserId;
 
 	public Long getId() {
 		return id;
@@ -68,11 +73,19 @@ public class NoticePublishScheduleEntity extends JpaEntity {
 		this.publishStatus = publishStatus;
 	}
 
-	public Long getMaxUserId() {
-		return maxUserId;
+	public Long getMaxStudentId() {
+		return maxStudentId;
+	}
+
+	public void setMaxStudentId(Long maxStudentId) {
+		this.maxStudentId = maxStudentId;
+	}
+
+	public Long getMaxCommonUserId() {
+		return maxCommonUserId;
 	}
 
-	public void setMaxUserId(Long maxUserId) {
-		this.maxUserId = maxUserId;
+	public void setMaxCommonUserId(Long maxCommonUserId) {
+		this.maxCommonUserId = maxCommonUserId;
 	}
 }