1234567891011121314151617181920212223242526 |
- package com.huaxu.dto;
- import com.fasterxml.jackson.annotation.JsonIgnore;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- @Data
- @ApiModel(value = "设备属性信息")
- public class SceneDeviceAttributeDto {
- /**
- * 设备属性名称
- */
- @ApiModelProperty("设备属性名称")
- private String attributeName;
- /**
- * 设备属性ID
- */
- @ApiModelProperty("设备属性ID")
- private String attributeId;
- @ApiModelProperty(value = "属性类型标记",hidden = true)
- @JsonIgnore
- private String attributeType;
- }
|