|
|
@@ -28,15 +28,16 @@ import java.util.List;
|
|
|
public class IotMain extends SuperEntity {
|
|
|
|
|
|
// ------------------------iotMain 基础字段 start-----------------------
|
|
|
+
|
|
|
+ @Schema(description = "功能类型,属性 事件 服务")
|
|
|
+ FunctionType functionType;
|
|
|
+
|
|
|
@Schema(description = "功能名称")
|
|
|
private String name;
|
|
|
|
|
|
@Schema(description = "标识符")
|
|
|
private String identifier;
|
|
|
|
|
|
- @Schema(description = "功能类型,属性 事件 服务")
|
|
|
- FunctionType functionType;
|
|
|
-
|
|
|
@Schema(description = "物模型Topic")
|
|
|
private String iotTopic;
|
|
|
|
|
|
@@ -64,10 +65,10 @@ public class IotMain extends SuperEntity {
|
|
|
private String maxLength;
|
|
|
|
|
|
@Schema(description = "属性,参数列表,输入参数")
|
|
|
- private List<IotAttribute> attributes;
|
|
|
+ private List<IotAttribute> childs;
|
|
|
|
|
|
@Schema(description = "值的对应,如:0-开")
|
|
|
- private List<IotDict> values;
|
|
|
+ private List<IotDict> dicts;
|
|
|
|
|
|
//--------------------------------关联设备时特有的属性 start------------------
|
|
|
@Schema(description = "区分是模版还是设备关联的物模型")
|