liusheng
2023-05-06 2b04605163633cbc4c1c801f31211d1ae0ccf0f5
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
package com.ruoyi.project.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
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 java.util.Date;
 
/**
 * 报销申请对象 service_reimbursement
 * 
 * @author ruoyi
 * @date 2022-01-24
 */
@Data
@ApiModel("报销申请")
public class ReimbursementService 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("报销人编号")
    @Excel(name = "报销人编号")
    private String userno;
 
    /** 报销人姓名 */
    @ApiModelProperty("报销人姓名")
    @Excel(name = "报销人姓名")
    private String username;
 
    /** 证件类型 根据字典sys_IDType */
    @ApiModelProperty("证件类型 根据字典sys_IDType")
    @Excel(name = "证件类型 根据字典sys_IDType")
    private String idcardtype;
 
    /** 证件号码 */
    @ApiModelProperty("证件号码")
    @Excel(name = "证件号码")
    private String idcardno;
 
    /** 联系电话 */
    @ApiModelProperty("联系电话")
    @Excel(name = "联系电话")
    private String phone;
 
    /** 开户银行 */
    @ApiModelProperty("开户银行")
    @Excel(name = "开户银行")
    private String depositbank;
 
    /** 卡号 */
    @ApiModelProperty("卡号")
    @Excel(name = "卡号")
    private String bankcardno;
 
    /** 分行名称 */
    @ApiModelProperty("分行名称")
    @Excel(name = "分行名称")
    private String branchbankname;
 
    /** 银行卡照片路径 多个用;分开 */
    @ApiModelProperty("银行卡照片路径 多个用;分开")
    @Excel(name = "银行卡照片路径 多个用;分开")
    private String annexbankcard;
 
    /** 附件路径 多个用;分开 */
    @ApiModelProperty("附件路径 多个用;分开")
    @Excel(name = "附件路径 多个用;分开")
    private String annexfiles;
 
    /** 申请金额 */
    @ApiModelProperty("申请金额")
    @Excel(name = "申请金额")
    private Double amountrequested;
 
    /** 预支费用 */
    @ApiModelProperty("预支费用")
    @Excel(name = "预支费用")
    private Double 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;
 
    /** 关联service_donatebaseinfo表的ID */
    @ApiModelProperty("关联service_donatebaseinfo表的ID")
    @Excel(name = "关联service_donatebaseinfo表的ID")
    private Long infoid;
 
    /** 捐献者编号 */
    @ApiModelProperty("捐献者编号")
    @Excel(name = "捐献者编号")
    private String donorno;
 
    /** 记录状态 */
    @ApiModelProperty("记录状态")
    @Excel(name = "记录状态")
    private Integer 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;
 
    @ApiModelProperty("出差人")
    @Excel(name = "出差人")
    private String travelers;
 
    @ApiModelProperty("出差事由")
    private String reason;
 
    @ApiModelProperty("捐献者姓名")
    private String donorname;
 
    @ApiModelProperty("总金额")
    private Double totalamount;
 
    @ApiModelProperty("总金额的大写")
    private String bigstrmoney;
 
    /** 附件地址,add by yangjb 20221124 */
    @ApiModelProperty("附件地址")
    private String fileurl;
 
    private String remark;
 
    /** 当前审核级别 处于哪个阶段 0:申请;1:一级审核;2:二级审核;3:三级审核等 */
    @ApiModelProperty("当前审核级别")
    private Long flowlevel;
 
 
    /** 费用归属:0:其他人员;1:专职人员;2:协调员;3:专家;4:捐献者家属 */
    @ApiModelProperty("费用归属")
    private String costtype;
 
    /** 费用归属描述 */
    @ApiModelProperty("费用归属描述")
    private String costtypename;
 
    @ApiModelProperty("捐献家属银行")
    private String donorbank;
 
    @ApiModelProperty("捐献家属银行卡号")
    private String donorbankcard;
 
    @ApiModelProperty("捐献家属费用说明")
    private String donorremark;
 
    @ApiModelProperty("捐献家属费用金额")
    private Double donoramount;
 
    @ApiModelProperty("捐献家属人数")
    private String personname2;
 
    @ApiModelProperty("aaaa")
    private String destination2;
    
}