| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | /** |
| | | * 捐献上报基础对象 service_donatebaseinfo_report |
| | |
| | | @Excel(name = "上报的医院", readConverterExp = "上报的医院") |
| | | private String toHospital; |
| | | |
| | | |
| | | /** |
| | | * 确认意见(接收,放弃-需要说明原因) |
| | | */ |
| | | @ApiModelProperty("确认意见(接收,放弃-需要说明原因)") |
| | | @Excel(name = "确认意见(接收,放弃-需要说明原因)", readConverterExp = "确认意见(接收,放弃-需要说明原因)") |
| | | private String confirmResult; |
| | | |
| | | /** |
| | | * 确认时间 |
| | | */ |
| | | @ApiModelProperty("确认时间") |
| | | @Excel(name = "确认时间", readConverterExp = "确认时间") |
| | | private Date confirmTime; |
| | | |
| | | @ApiModelProperty("入院时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date entryTime; |
| | | |
| | | } |
| | | |