| | |
| | | package com.whyc.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | |
| | | private String deviceName; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | private Date circleProductDate; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | private Date circleInuseDate; |
| | | |
| | | |
| | | @ApiModelProperty(value = "资产类别:1 动环,2设备仪器") |
| | | private Integer deviceType ; |
| | | |
| | | @ApiModelProperty(value = "品牌/厂家") |
| | | private String deviceProduct ; |
| | | |
| | | @ApiModelProperty(value = "型号/规格") |
| | | private String deviceModel ; |
| | | |
| | | @ApiModelProperty(value = "所在位置") |
| | | private String deviceAddress; |
| | | |
| | | @ApiModelProperty(value = "资产状态:0停用,1正常") |
| | | private Integer deviceState ; |
| | | |
| | | @ApiModelProperty(value = "子件数量") |
| | | private Integer subCount; |
| | | |
| | | @ApiModelProperty(value = "交、直流配电柜") |
| | | private String propertyName; |
| | | |
| | | @TableField(exist = false) |
| | | private List<SubInf> subList; |
| | | |
| | | @TableField(exist = false) |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | private Date startTime; |
| | | |
| | | @TableField(exist = false) |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | private Date endTime; |
| | | |
| | | } |