| | |
| | | package com.ycl.dto.dispatch; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | * 时间 |
| | | */ |
| | | @ApiModelProperty(value = "时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime investigationTime; |
| | | |
| | | /** |
| | |
| | | * 到达时间 |
| | | */ |
| | | @ApiModelProperty(value = "到达时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime arrivalTime; |
| | | |
| | | /** |
| | |
| | | * 文书发放时间 |
| | | */ |
| | | @ApiModelProperty(value = "文书发放时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime sendTime; |
| | | |
| | | /** |
| | | * 文书限定时间 |
| | | */ |
| | | @ApiModelProperty(value = "文书限定时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime limitTime; |
| | | |
| | | /** |
| | |
| | | * 实际整改时间 |
| | | */ |
| | | @ApiModelProperty(value = "实际整改时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime rectifyTime; |
| | | |
| | | /** |