|
|
@@ -16,23 +16,29 @@ public class OutExpenseAccountDetailsList {
|
|
|
private Integer type;
|
|
|
@Excel(name = "类型")
|
|
|
private String typeOther;
|
|
|
+ @Excel(name = "报销时间",width = 26)
|
|
|
+ private String releaseTimeStr;
|
|
|
+ @Excel(name = "工时",width = 5)
|
|
|
+ private Double duration ;
|
|
|
+ @Excel(name = "天数",width = 5)
|
|
|
+ private Integer days;
|
|
|
private Integer sonId;
|
|
|
private Integer sonType;
|
|
|
private String sonTypeOther;
|
|
|
/**
|
|
|
* 金额
|
|
|
*/
|
|
|
- @Excel(name = "报销金额", scale = 2)
|
|
|
+ @Excel(name = "报销金额", scale = 2,width = 8)
|
|
|
private BigDecimal amount;
|
|
|
/**
|
|
|
* 实付金额
|
|
|
*/
|
|
|
- @Excel(name = "实报金额", scale = 2)
|
|
|
+ @Excel(name = "实报金额", scale = 2,width = 8)
|
|
|
private BigDecimal realAmount;
|
|
|
/**
|
|
|
* 报销查询编号
|
|
|
*/
|
|
|
- @Excel(name = "报销编号")
|
|
|
+ @Excel(name = "报销编号",width = 20)
|
|
|
private String checkNo;
|
|
|
@Excel(name = "报销至订单")
|
|
|
private String targetName;
|
|
|
@@ -54,17 +60,17 @@ public class OutExpenseAccountDetailsList {
|
|
|
/**
|
|
|
* 状态 0=草稿,1=审核中,2=完成,3=驳回 ,4=撤销
|
|
|
*/
|
|
|
- @Excel(name = "状态",readConverterExp = "0=草稿,1=审核中,2=完成,3=驳回,4=删除")
|
|
|
+ @Excel(name = "状态",readConverterExp = "0=草稿,1=审核中,2=完成,3=驳回,4=删除",width = 8)
|
|
|
private Integer status;
|
|
|
/**
|
|
|
* 申请公司
|
|
|
*/
|
|
|
- @Excel(name = "申请公司")
|
|
|
+ @Excel(name = "申请公司",width = 20)
|
|
|
private String applyDepName;
|
|
|
/**
|
|
|
* 支付公司
|
|
|
*/
|
|
|
- @Excel(name = "支付公司")
|
|
|
+ @Excel(name = "支付公司",width = 20)
|
|
|
private String payDepName;
|
|
|
/**
|
|
|
* 流程状态 0=巴员发起,1=上级审核,2=财务审核,3=总经理审核,4=董事长审核
|
|
|
@@ -87,12 +93,8 @@ public class OutExpenseAccountDetailsList {
|
|
|
|
|
|
private Date releaseStart;
|
|
|
private Date releaseEnd;
|
|
|
- @Excel(name = "报销时间")
|
|
|
- private String releaseTimeStr;
|
|
|
- @Excel(name = "工时")
|
|
|
- private Double duration ;
|
|
|
- @Excel(name = "天数")
|
|
|
- private Integer days;
|
|
|
+
|
|
|
+
|
|
|
|
|
|
public String getReleaseTimeStr() {
|
|
|
return releaseTimeStr;
|