浏览代码

。。。

wangwei 5 年之前
父节点
当前提交
59305ef260

+ 13 - 0
examcloud-core-examwork-api/src/main/java/cn/com/qmth/examcloud/examwork/api/request/GetExamReq.java

@@ -32,6 +32,11 @@ public class GetExamReq extends BaseRequest {
 	 */
 	 */
 	private String name;
 	private String name;
 
 
+	/**
+	 * 机构ID(机构特殊配置不为空时覆盖考试信息)
+	 */
+	private Long orgId;
+
 	public Long getRootOrgId() {
 	public Long getRootOrgId() {
 		return rootOrgId;
 		return rootOrgId;
 	}
 	}
@@ -64,4 +69,12 @@ public class GetExamReq extends BaseRequest {
 		this.code = code;
 		this.code = code;
 	}
 	}
 
 
+	public Long getOrgId() {
+		return orgId;
+	}
+
+	public void setOrgId(Long orgId) {
+		this.orgId = orgId;
+	}
+
 }
 }