Commit 2e3cd64145b1ee2d1f590d8401b78ad31dfda0b3

Authored by 云中非
1 parent d3a3e200

refactor: 数据源新增高级配置字段

... ... @@ -41,4 +41,8 @@ public class ConfigurationDatasourceDTO extends ConfigurationDTO {
41 41
42 42 @ApiModelProperty(value = "组态描述")
43 43 private String remark;
  44 +
  45 +
  46 + @ApiModelProperty(value = "数据源高级配置说明")
  47 + private JsonNode additional;
44 48 }
... ...
... ... @@ -23,5 +23,7 @@ public class ConfigurationDatasource extends ConfigurationBaseEntity {
23 23 private String deviceId;
24 24 private String slaveDeviceId;
25 25 private String attr;
  26 + @TableField(typeHandler = JacksonTypeHandler.class)
  27 + private JsonNode additional;
26 28
27 29 }
... ...