| | |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ApiModelProperty(value = "开始时间") |
| | | private Date startTime; |
| | | private Date startDate; |
| | | /** |
| | | * 结束时间 |
| | | */ |
| | |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ApiModelProperty(value = "结束时间") |
| | | private Date endTime; |
| | | private Date endDate; |
| | | /** |
| | | * 停机原因id |
| | | */ |
| | | @Excel(name = "停机原因id", width = 15) |
| | | @ApiModelProperty(value = "停机原因id") |
| | | @Dict(dictTable = "mdc_downtime_reason",dicCode = "id",dicText = "downtime_type") |
| | | private String reasonId; |
| | | /** |
| | | * 状态(0未上报,1已上报) |
| | |
| | | @Excel(name = "备注", width = 15) |
| | | @ApiModelProperty(value = "备注") |
| | | private String remark; |
| | | /** |
| | | * 录入类型 |
| | | */ |
| | | @Excel(name = "录入类型", width = 15) |
| | | @ApiModelProperty(value = "录入类型") |
| | | @Dict(dicCode = "enter_type") |
| | | private Integer enterType; |
| | | /** |
| | | * 停机时长 |
| | | */ |
| | | @Excel(name = "停机时长", width = 15) |
| | | @ApiModelProperty(value = "停机时长") |
| | | private Integer shutdownDuration; |
| | | |
| | | } |