|
@@ -31,6 +31,12 @@ public class SiteEntity extends WithIdAndStatusJpaEntity {
|
|
|
@Column(nullable = false)
|
|
|
private String name;
|
|
|
|
|
|
+ /**
|
|
|
+ * 考点最大人数
|
|
|
+ */
|
|
|
+ @Column(nullable = false)
|
|
|
+ private Long maxNumOfStudent;
|
|
|
+
|
|
|
public Long getRootOrgId() {
|
|
|
return rootOrgId;
|
|
|
}
|
|
@@ -55,4 +61,12 @@ public class SiteEntity extends WithIdAndStatusJpaEntity {
|
|
|
this.name = name;
|
|
|
}
|
|
|
|
|
|
+ public Long getMaxNumOfStudent() {
|
|
|
+ return maxNumOfStudent;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaxNumOfStudent(Long maxNumOfStudent) {
|
|
|
+ this.maxNumOfStudent = maxNumOfStudent;
|
|
|
+ }
|
|
|
+
|
|
|
}
|