|
@@ -20,44 +20,42 @@ import javax.validation.constraints.NotNull;
|
|
|
@TableName("zs_reimbursement_user_info")
|
|
|
public class AccountantReimbursementUserDTO extends BaseEntity {
|
|
|
|
|
|
- @Excel(name = "姓名",width = 6)
|
|
|
- @Length(min = 1, max = 100)
|
|
|
+ @Excel(name = "姓名",width = 10)
|
|
|
@NotNull(message = "姓名不能为空")
|
|
|
private String userName;//员工姓名
|
|
|
- @Excel(name = "部门")
|
|
|
+ @Excel(name = "部门",width = 10)
|
|
|
@Length(min = 1, max = 100)
|
|
|
@NotNull(message = "部门不能为空")
|
|
|
private String officeName;//部门名称
|
|
|
|
|
|
private String officeId;//部门id
|
|
|
|
|
|
-
|
|
|
private String userId; //报销人id
|
|
|
private UserDTO user; //报销人员信息
|
|
|
|
|
|
- @Excel(name = "报销年份")
|
|
|
+ @Excel(name = "报销年份",width = 10)
|
|
|
@Length(min = 1, max = 100)
|
|
|
@NotNull(message = "报销年份不能为空")
|
|
|
private String year; //报销年份
|
|
|
- @Excel(name = "日报销额度")
|
|
|
+ @Excel(name = "日报销额度",width = 14)
|
|
|
@Length(min = 1, max = 100)
|
|
|
@NotNull(message = "日报销额度不能为空")
|
|
|
private String reimbursementQuotaDay; //日报销额度
|
|
|
- @Excel(name = "年报销额度")
|
|
|
+ @Excel(name = "年报销额度",width = 14)
|
|
|
@Length(min = 1, max = 100)
|
|
|
private String reimbursementQuota; //年报销额度
|
|
|
- @Excel(name = "分所已报销额度", type = 10)
|
|
|
+ @Excel(name = "分所已报销额度", type = 10,width = 16)
|
|
|
private String substationAlreadyReimbursementAmount; //分所已报销额度
|
|
|
- @Excel(name = "总所已报销额度", type = 10)
|
|
|
+ @Excel(name = "总所已报销额度", type = 10,width = 16)
|
|
|
private String headquarterAlreadyReimbursementAmount; //总所已报销额度
|
|
|
- @Excel(name = "剩余额度", type = 10)
|
|
|
+ @Excel(name = "剩余额度", type = 10,width = 10)
|
|
|
private String remainReimbursementAmount; //剩余报销额度
|
|
|
- @Excel(name = "已报天数")
|
|
|
+ @Excel(name = "已报天数",width = 10)
|
|
|
private String alreadyReimbursementDay; //已报销天数
|
|
|
- @Excel(name = "剩余天数")
|
|
|
+ @Excel(name = "剩余天数",width = 10)
|
|
|
private String surplusReimbursementDay; //剩余报销天数
|
|
|
|
|
|
- @Excel(name = "年可报销天数")
|
|
|
+ @Excel(name = "年可报销天数",width = 14)
|
|
|
@NotNull(message = "年可报销天数不能为空")
|
|
|
private Integer reimbursementAllDay; //年可报销天数
|
|
|
private String reimbursementDay; //报销天数
|