|
@@ -19,6 +19,16 @@ public class DefaultQuestion implements Question {
|
|
*/
|
|
*/
|
|
private String id;
|
|
private String id;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 属性注释
|
|
|
|
+ */
|
|
|
|
+ private Long rootOrgId;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 是否脱离试卷存在
|
|
|
|
+ */
|
|
|
|
+ private Boolean isolated;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 主版本
|
|
* 主版本
|
|
*/
|
|
*/
|
|
@@ -44,6 +54,22 @@ public class DefaultQuestion implements Question {
|
|
this.id = id;
|
|
this.id = id;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Long getRootOrgId() {
|
|
|
|
+ return rootOrgId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setRootOrgId(Long rootOrgId) {
|
|
|
|
+ this.rootOrgId = rootOrgId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Boolean getIsolated() {
|
|
|
|
+ return isolated;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setIsolated(Boolean isolated) {
|
|
|
|
+ this.isolated = isolated;
|
|
|
|
+ }
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public QuestionStructure getMasterVersion() {
|
|
public QuestionStructure getMasterVersion() {
|
|
return masterVersion;
|
|
return masterVersion;
|