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