| | |
| | | package org.sxkj.fw.device.dto; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | |
| | | */ |
| | | @ApiModelProperty(value = "删除标志(0存在 1删除)") |
| | | private Integer isDeleted; |
| | | // flyTime |
| | | @ApiModelProperty(value = " flyTime") |
| | | private Date flyTime; |
| | | |
| | | /** |
| | | * 使用日期 |
| | | */ |
| | | @ApiModelProperty(value = "使用日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date useDate; |
| | | |
| | | /** |
| | | * 使用年限(单位:年) |
| | | */ |
| | | @ApiModelProperty(value = "使用年限(单位:年)") |
| | | private Integer serviceLife; |
| | | // isEnabled |
| | | @ApiModelProperty(value = "是否启用") |
| | | private Integer isEnabled; |
| | | |
| | | // track_status |
| | | @ApiModelProperty(value = "出库状态") |
| | | private Integer trackStatus; |
| | | |
| | | } |