SceneDeviceAttributeDto.java 620 B

1234567891011121314151617181920212223242526
  1. package com.huaxu.dto;
  2. import com.fasterxml.jackson.annotation.JsonIgnore;
  3. import io.swagger.annotations.ApiModel;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. @Data
  7. @ApiModel(value = "设备属性信息")
  8. public class SceneDeviceAttributeDto {
  9. /**
  10. * 设备属性名称
  11. */
  12. @ApiModelProperty("设备属性名称")
  13. private String attributeName;
  14. /**
  15. * 设备属性ID
  16. */
  17. @ApiModelProperty("设备属性ID")
  18. private String attributeId;
  19. @ApiModelProperty(value = "属性类型标记",hidden = true)
  20. @JsonIgnore
  21. private String attributeType;
  22. }