Commit a70b5039433dfe4d5e218f858b455d0da6a5a7ae

Authored by lifeontrip
2 parents 908ed86a 8002ba4a

Merge branch 'master' into 20220908

@@ -20,9 +20,6 @@ public class DataBoardDTO extends TenantDTO { @@ -20,9 +20,6 @@ public class DataBoardDTO extends TenantDTO {
20 @ApiModelProperty(value = "视图类型") 20 @ApiModelProperty(value = "视图类型")
21 private ViewType viewType = ViewType.PRIVATE_VIEW; 21 private ViewType viewType = ViewType.PRIVATE_VIEW;
22 22
23 - @ApiModelProperty(value = "公有视图URL")  
24 - private String openUrl;  
25 -  
26 @ApiModelProperty(value = "组件布局") 23 @ApiModelProperty(value = "组件布局")
27 private List<ComponentLayoutDTO> layout; 24 private List<ComponentLayoutDTO> layout;
28 25
@@ -19,6 +19,15 @@ public class DataSourceInfoDTO implements Serializable { @@ -19,6 +19,15 @@ public class DataSourceInfoDTO implements Serializable {
19 @ApiModelProperty(value = "属性", required = true) 19 @ApiModelProperty(value = "属性", required = true)
20 private String attribute; 20 private String attribute;
21 21
  22 + @ApiModelProperty(value = "设备名称")
  23 + private String deviceName;
  24 +
  25 + @ApiModelProperty(value = "是否网关设备")
  26 + private boolean gatewayDevice = false;
  27 +
  28 + @ApiModelProperty(value = "子设备ID")
  29 + private String slaveDeviceId;
  30 +
22 @ApiModelProperty(value = "设备重命名") 31 @ApiModelProperty(value = "设备重命名")
23 private String deviceRename; 32 private String deviceRename;
24 33
@@ -22,8 +22,6 @@ public class DataBoard extends TenantBaseEntity { @@ -22,8 +22,6 @@ public class DataBoard extends TenantBaseEntity {
22 @TableField(typeHandler = EnumTypeHandler.class) 22 @TableField(typeHandler = EnumTypeHandler.class)
23 private ViewType viewType; 23 private ViewType viewType;
24 24
25 - private String openUrl;  
26 -  
27 @TableField(typeHandler = JacksonTypeHandler.class) 25 @TableField(typeHandler = JacksonTypeHandler.class)
28 private JsonNode layout; 26 private JsonNode layout;
29 27