Ver Fonte

美术阅卷10月新增需求-新增paper bean配置

wangliang há 5 anos atrás
pai
commit
56e18dd778

+ 24 - 0
stmms-ms-core/src/main/java/cn/com/qmth/stmms/ms/core/domain/Paper.java

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