| | |
| | | package com.ruoyi.project.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "器官获取时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date organgettime; |
| | | |
| | | /** |
| | | * 预计获取时间 |
| | | */ |
| | | @ApiModelProperty("预计获取时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "预计获取时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date estimatedtime; |
| | | |
| | | /** |
| | | * 医生姓名 |
| | |
| | | |
| | | @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("审核人编号") |
| | |
| | | private Integer transplantstate; |
| | | |
| | | |
| | | |
| | | /** 系统编号 */ |
| | | /** |
| | | * 系统编号 |
| | | */ |
| | | @ApiModelProperty("系统编号") |
| | | @Excel(name = "系统编号") |
| | | private String caseno; |
| | | |
| | | |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField(exist = false) |
| | | private Date starttime; |
| | | |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField(exist = false) |
| | | private Date endtime; |
| | | |
| | | @TableField(exist = false) |
| | | private String city; |
| | | |
| | | /** |
| | | * 报告者编号 |
| | | */ |
| | | @TableField(exist = false) |
| | | private String reporterno; |
| | | |
| | | |
| | | } |
| | | |