Pārlūkot izejas kodu

update db for ec_e_exam_ip_limit remark

deason 1 gadu atpakaļ
vecāks
revīzija
8a63bc4172

+ 13 - 0
examcloud-core-examwork-dao/src/main/java/cn/com/qmth/examcloud/core/examwork/dao/entity/ExamIpLimitEntity.java

@@ -46,6 +46,10 @@ public class ExamIpLimitEntity extends JpaEntity {
 	@Enumerated(EnumType.STRING)
 	private IpLimitType limitType;
 
+	/**
+	 * ip地址归属的学习中心备注信息
+	 */
+	private String remark;
 
 	public Long getId() {
 		return id;
@@ -78,4 +82,13 @@ public class ExamIpLimitEntity extends JpaEntity {
 	public void setLimitType(IpLimitType limitType) {
 		this.limitType = limitType;
 	}
+
+	public String getRemark() {
+		return remark;
+	}
+
+	public void setRemark(String remark) {
+		this.remark = remark;
+	}
+
 }