|
@@ -1,5 +1,6 @@
|
|
package cn.com.qmth.examcloud.core.examwork.dao.entity;
|
|
package cn.com.qmth.examcloud.core.examwork.dao.entity;
|
|
|
|
|
|
|
|
+import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.Id;
|
|
import javax.persistence.Id;
|
|
@@ -27,10 +28,13 @@ public class ExamOrgPropertyEntity extends JpaEntity {
|
|
@GeneratedValue
|
|
@GeneratedValue
|
|
private Long id;
|
|
private Long id;
|
|
|
|
|
|
|
|
+ @Column(nullable = false)
|
|
private Long examId;
|
|
private Long examId;
|
|
|
|
|
|
|
|
+ @Column(nullable = false)
|
|
private Long orgId;
|
|
private Long orgId;
|
|
|
|
|
|
|
|
+ @Column(nullable = false)
|
|
private Long keyId;
|
|
private Long keyId;
|
|
|
|
|
|
@Lob
|
|
@Lob
|