|
@@ -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;
|
|
|
}
|
|
|
}
|