| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.dto.DateQueryDto; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | |
| | | |
| | | @Schema(description = "设备类型") |
| | | private String type; |
| | | |
| | | @ApiModelProperty("是否为物联设备 0-否 1-是") |
| | | private Integer isIotDevice; |
| | | |
| | | @ApiModelProperty("外部编码") |
| | | private String externalCode; |
| | | |
| | | @Schema(description = "设备区域ID") |
| | | private Long areaId; |
| | | |
| | | @Schema(description = "设备区域名称") |
| | | @TableField(exist = false) |
| | | private String areaName; |
| | | } |