liusheng
2024-03-19 ded03f0315e02c13f17b8bf7777c89a5cc73130e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
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;
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * 器官分配对象 service_organallocation
 *
 * @author ruoyi
 * @date 2021-11-10
 */
@Data
@ApiModel("器官分配")
public class ServiceOrganallocation extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * $column.columnComment
     */
    @ApiModelProperty("$column.columnComment")
    //数据库自增改成@TableId(type = IdType.AUTO)
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * 对应器官表service_donateorgan的ID
     */
    @Excel(name = "对应器官表service_donateorgan的ID")
    private Long organid;
 
    /**
     * 器官编号
     */
    @ApiModelProperty("器官编号")
    @Excel(name = "器官编号")
    private String organnumber;
 
    /**
     * 申请人编号
     */
    @Excel(name = "申请人编号")
    @ApiModelProperty("申请人编号")
    private String applicantuserid;
 
    /**
     * 申请人姓名
     */
    @ApiModelProperty("申请人姓名")
    @Excel(name = "申请人姓名")
    private String applicantusername;
 
    /**
     * 申请时间
     */
    @ApiModelProperty("申请时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMH+08:00")
    @Excel(name = "申请时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date applicanttime;
 
    /**
     * 审核人编号
     */
    @ApiModelProperty("审核人编号")
    @Excel(name = "审核人编号")
    private String checkuserid;
 
    /**
     * 审核人姓名
     */
    @ApiModelProperty("审核人姓名")
    @Excel(name = "审核人姓名")
    private String checkusername;
 
    /**
     * 审核时间
     */
    @ApiModelProperty("审核时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "审核时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date checktime;
 
    /**
     * 审核意见
     */
    @ApiModelProperty("审核意见")
    @Excel(name = "审核意见")
    private String checksuggestion;
 
    /**
     * 0:提交分配;1:审核通过;2:审核拒绝
     */
    @Excel(name = "0:提交分配;1:审核通过;2:审核拒绝")
    @ApiModelProperty("分配状态")
    private Long allocationstatus;
 
    /**
     * 移植人姓名
     */
    @ApiModelProperty("移植人姓名")
    @Excel(name = "移植人姓名")
    private String name;
 
    /**
     * 移植人性别 根据字典sys_user_sex
     */
    @Excel(name = "移植人性别 根据字典sys_user_sex")
    @ApiModelProperty("移植人性别")
    private Long sex;
 
    /**
     * 移植人证件类型 根据字典sys_IDType
     */
    @ApiModelProperty("移植人证件类型")
    @Excel(name = "移植人证件类型 根据字典sys_IDType")
    private Long idcardtype;
 
    /**
     * 移植人证件号码
     */
    @ApiModelProperty("移植人证件号码")
    @Excel(name = "移植人证件号码")
    private String idcardno;
 
    /**
     * 移植人年龄
     */
    @ApiModelProperty("移植人年龄")
    @Excel(name = "移植人年龄")
    private Long age;
 
    /**
     * 移植人年龄单位 根据字典sys_AgeUnit
     */
    @Excel(name = "移植人年龄单位 根据字典sys_AgeUnit")
    @ApiModelProperty("移植人年龄单位")
    private String ageunit;
 
    /**
     * 移植人出生日期
     */
    @Excel(name = "移植人出生日期")
    @ApiModelProperty("移植人出生日期")
    private String birthday;
 
    /**
     * 移植人联系电话
     */
    @Excel(name = "移植人联系电话")
    @ApiModelProperty("移植人联系电话")
    private String phone;
 
    /**
     * 移植人现住地址
     */
    @Excel(name = "移植人现住地址")
    @ApiModelProperty("移植人现住地址")
    private String residenceaddress;
 
    /**
     * 移植人现住地址省代码
     */
    @Excel(name = "移植人现住地址省代码")
    @ApiModelProperty("移植人现住地址省代码")
    private String residenceprovince;
 
    /**
     * 移植人现住地址省名称
     */
    @Excel(name = "移植人现住地址省名称")
    @ApiModelProperty("移植人现住地址省名称")
    private String residenceprovincename;
 
    /**
     * 移植人市编号  根据行政区划表
     */
    @Excel(name = "移植人市编号  根据行政区划表")
    @ApiModelProperty("移植人市编号  根据行政区划表")
    private String residencecity;
 
    /**
     * 移植人市名称
     */
    @Excel(name = "移植人市名称")
    @ApiModelProperty("移植人市名称")
    private String residencecityname;
 
    /**
     * 移植人所属街道(镇)根据行政区划表
     */
    @Excel(name = "移植人所属街道", readConverterExp = "镇=")
    @ApiModelProperty("移植人所属街道(镇)根据行政区划表")
    private String residencetown;
 
    /**
     * 移植人所属街道(镇)名称
     */
    @Excel(name = "移植人所属街道", readConverterExp = "镇=")
    @ApiModelProperty("移植人所属街道(镇)名称")
    private String residencetownname;
 
    /**
     * 移植人社区(村)编号 根据行政区划表
     */
    @Excel(name = "移植人社区", readConverterExp = "村=")
    @ApiModelProperty("移植人社区(村)编号 根据行政区划表")
    private String residencecommunity;
 
    /**
     * 移植人社区(村)名称
     */
    @Excel(name = "移植人社区", readConverterExp = "村=")
    @ApiModelProperty("移植人社区(村)名称")
    private String residencecommunityname;
 
    /**
     * 移植人所属区域编号  根据行政区划表
     */
    @Excel(name = "移植人所属区域编号  根据行政区划表")
    @ApiModelProperty("移植人所属区域编号  根据行政区划表")
    private String residencecountycode;
 
    /**
     * 移植人所属区域名称
     */
    @Excel(name = "移植人所属区域名称")
    @ApiModelProperty("移植人所属区域名称")
    private String residencecountyname;
 
 
    @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;
 
}