|
@@ -122,6 +122,30 @@ public class Paper implements Serializable {
|
|
|
|
|
|
private String examRoom;
|
|
|
|
|
|
+ @Basic
|
|
|
+ @Column(name = "is_test")
|
|
|
+ private boolean test; //是否试评(false:不是,true:是)
|
|
|
+
|
|
|
+ @Basic
|
|
|
+ @Column(name = "is_active")
|
|
|
+ private boolean active; //是否激活(false:不是,true:是)
|
|
|
+
|
|
|
+ public boolean isTest() {
|
|
|
+ return test;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTest(boolean test) {
|
|
|
+ this.test = test;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isActive() {
|
|
|
+ return active;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActive(boolean active) {
|
|
|
+ this.active = active;
|
|
|
+ }
|
|
|
+
|
|
|
public static long getSerialVersionUID() {
|
|
|
return serialVersionUID;
|
|
|
}
|