| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.poi.hpsf.Decimal; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 捐献器官管理对象 service_donateorgan |
| | |
| | | * 器官获取时间 |
| | | */ |
| | | @ApiModelProperty("器官获取时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @Excel(name = "器官获取时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date organgettime; |
| | | |
| | |
| | | * 预计获取时间 |
| | | */ |
| | | @ApiModelProperty("预计获取时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @Excel(name = "预计获取时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date estimatedtime; |
| | | |
| | |
| | | * 移植时间 |
| | | */ |
| | | @ApiModelProperty("移植时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @Excel(name = "移植时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date transplanttime; |
| | | |
| | |
| | | |
| | | @ApiModelProperty("申请时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date applicanttime; |
| | | |
| | | @ApiModelProperty("审核人编号") |