liusheng
2023-09-21 bdb5b994b566f50dd0acac4b02fc697c656fc94e
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
package com.ruoyi.project.domain;
 
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
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;
 
/**
 * 资金申请主表对象 service_donateconsolationfund
 * 
 * @author ruoyi
 * @date 2022-01-18
 */
@Data
@ApiModel("资金申请主表")
public class ServiceDonateconsolationfund extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    @ApiModelProperty("$column.columnComment")
    //数据库自增改成@TableId(type = IdType.AUTO)
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**  */
    @ApiModelProperty("")
    private Long infoid;
 
    /** 捐献者编号 */
    @ApiModelProperty("捐献者编号")
    @Excel(name = "捐献者编号")
    private String donorno;
 
    /** 与捐献者关系 */
    @ApiModelProperty("与捐献者关系")
    @Excel(name = "与捐献者关系")
    private String familyrelations;
 
    /** 家属姓名 */
    @ApiModelProperty("家属姓名")
    @Excel(name = "家属姓名")
    private String name;
 
    /** 家属性别 根据字典sys_user_sex */
    @ApiModelProperty("家属性别 根据字典sys_user_sex")
    private Long sex;
 
    /** 移植人证件类型 */
    @ApiModelProperty("移植人证件类型")
    private Long idcardtype;
 
    /** 移植人证件号码 */
    @ApiModelProperty("移植人证件号码")
    @Excel(name = "移植人证件号码")
    private String idcardno;
 
    /** 家属联系电话 */
    @ApiModelProperty("家属联系电话")
    @Excel(name = "家属联系电话")
    private String phone;
 
    /** 开户银行 */
    @ApiModelProperty("开户银行")
    @Excel(name = "开户银行")
    private String depositbank;
 
    /** 银行省代码 */
    @ApiModelProperty("银行省代码")
    private String bankprovince;
 
    /** 银行省名称 */
    @ApiModelProperty("银行省名称")
    private String bankprovincename;
 
    /** 银行市编号 */
    @ApiModelProperty("银行市编号")
    private String bankcity;
 
    /** 银行市名称 */
    @ApiModelProperty("银行市名称")
    private String bankcityname;
 
    /** 银行所属街道(镇) */
    @ApiModelProperty("银行所属街道(镇)")
    private String banktown;
 
    /** 银行所属街道(镇)名称 */
    @ApiModelProperty("银行所属街道(镇)名称")
    private String banktownname;
 
    /** 分行名称 */
    @ApiModelProperty("分行名称")
    private String branchbankname;
 
    /** 卡号 */
    @ApiModelProperty("卡号")
    @Excel(name = "卡号")
    private String bankcardno;
 
    /** 银行卡照片路径 */
    @ApiModelProperty("银行卡照片路径")
    private String annexbankcard;
 
    /** 登记表照片路径 */
    @ApiModelProperty("登记表照片路径")
    private String annexregistform;
 
    /** 申请金额 */
    @ApiModelProperty("申请金额")
    @Excel(name = "申请金额")
    private BigDecimal amountrequested;
 
    /** 资金备注 */
    @ApiModelProperty("资金备注")
    @Excel(name = "资金备注")
    private String consolationmark;
 
    /** 资金类别 */
    @ApiModelProperty("资金类别")
    @Excel(name = "资金类别")
    private String consolationtype;
 
    /** 预支费用 */
    @ApiModelProperty("预支费用")
    @Excel(name = "预支费用")
    private BigDecimal prepaidamount;
 
    /** 发票张数 */
    @ApiModelProperty("发票张数")
    @Excel(name = "发票张数")
    private Long invoicecount;
 
    /** 附件数 */
    @ApiModelProperty("附件数")
    @Excel(name = "附件数")
    private Long attachcount;
 
    /** 部门主管工号 */
    @ApiModelProperty("部门主管工号")
    @Excel(name = "部门主管工号")
    private String managerno;
 
    /** 部门主管名字 */
    @ApiModelProperty("部门主管名字")
    @Excel(name = "部门主管名字")
    private String managername;
 
    /** 部门编号 */
    @ApiModelProperty("部门编号")
    @Excel(name = "部门编号")
    private String deptmentno;
 
    /** 部门名称 */
    @ApiModelProperty("部门名称")
    @Excel(name = "部门名称")
    private String deptmentname;
 
    /** 中心签字 */
    @ApiModelProperty("中心签字")
    @Excel(name = "中心签字")
    private String opochecker;
 
    /** 财务副院长签字 */
    @ApiModelProperty("财务副院长签字")
    @Excel(name = "财务副院长签字")
    private String finvicepresident;
 
    /** 业务副院长签字 */
    @ApiModelProperty("业务副院长签字")
    @Excel(name = "业务副院长签字")
    private String busvicepresident;
 
    /** 办公室主任签字 */
    @ApiModelProperty("办公室主任签字")
    @Excel(name = "办公室主任签字")
    private String officedirector;
 
    /** 财务室主任签字 */
    @ApiModelProperty("财务室主任签字")
    @Excel(name = "财务室主任签字")
    private String financedirector;
 
    /** 财务审核 */
    @ApiModelProperty("财务审核")
    @Excel(name = "财务审核")
    private String financechecher;
 
    /** 记录状态 */
    @ApiModelProperty("记录状态")
    @Excel(name = "记录状态")
    private String recordstatus;
 
    /** 上传标志 */
    @ApiModelProperty("上传标志")
    @Excel(name = "上传标志")
    private String uploadflag;
 
    /** 上传时间 */
    @ApiModelProperty("上传时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "上传时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date uploadtime;
 
}