WANG 6 lat temu
rodzic
commit
610535dd4a

+ 10 - 0
examcloud-core-basic-dao/src/main/java/cn/com/qmth/examcloud/core/basic/dao/entity/SysConfigEntity.java

@@ -27,6 +27,8 @@ public class SysConfigEntity extends JpaEntity {
 	@Id
 	private String propertyKey;
 
+	private String description;
+
 	@Enumerated(EnumType.STRING)
 	@Column(nullable = false)
 	private DataType dataType;
@@ -42,6 +44,14 @@ public class SysConfigEntity extends JpaEntity {
 		this.propertyKey = propertyKey;
 	}
 
+	public String getDescription() {
+		return description;
+	}
+
+	public void setDescription(String description) {
+		this.description = description;
+	}
+
 	public DataType getDataType() {
 		return dataType;
 	}