소스 검색

update db for ec_e_exam_ip_limit remark

deason 1 년 전
부모
커밋
8a63bc4172
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. 13 0
      examcloud-core-examwork-dao/src/main/java/cn/com/qmth/examcloud/core/examwork/dao/entity/ExamIpLimitEntity.java

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