| | |
| | | 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; |
| | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | import com.ruoyi.basic.dto.StorageBlobDTO; |
| | | import com.ruoyi.basic.dto.StorageBlobVO; |
| | | |
| | | /** |
| | | * 设备台账实体类 |
| | |
| | | * 供应商名称 |
| | | */ |
| | | private String supplierName; |
| | | |
| | | /** |
| | | * 设备附件(用于接收) |
| | | */ |
| | | @TableField(exist = false) |
| | | @Schema(description = "设备附件接收列表") |
| | | private List<StorageBlobDTO> storageBlobDTOs; |
| | | |
| | | /** |
| | | * 设备附件(用于返回) |
| | | */ |
| | | @TableField(exist = false) |
| | | @Schema(description = "设备附件展示列表") |
| | | private List<StorageBlobVO> storageBlobVOs; |
| | | |
| | | /** |
| | | * 单位 |
| | |
| | | |
| | | @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; |
| | | } |