|
@@ -2,6 +2,7 @@ package com.fjhx.form.entity;
|
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
|
+import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
|
import lombok.Getter;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
import lombok.Setter;
|
|
|
|
|
|
@@ -12,52 +13,76 @@ import java.util.Date;
|
|
@Setter
|
|
@Setter
|
|
@ExcelIgnoreUnannotated
|
|
@ExcelIgnoreUnannotated
|
|
public class RemitDetailVo {
|
|
public class RemitDetailVo {
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("交易时间")
|
|
@ExcelProperty("交易时间")
|
|
private Date transactionTime;
|
|
private Date transactionTime;
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("银行卡")
|
|
@ExcelProperty("银行卡")
|
|
private String accountAliasName;
|
|
private String accountAliasName;
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("备注")
|
|
@ExcelProperty("备注")
|
|
private String remark;
|
|
private String remark;
|
|
- @ExcelProperty("对方科目-输入")
|
|
|
|
|
|
+ @ColumnWidth(20)
|
|
|
|
+ @ExcelProperty("对方科目")//输入
|
|
private String oppositeSubjectName1;
|
|
private String oppositeSubjectName1;
|
|
- @ExcelProperty("销售组费用类别-输入")
|
|
|
|
|
|
+ @ColumnWidth(30)
|
|
|
|
+ @ExcelProperty("销售组费用类别")//输入
|
|
private String saleGroupExpenseCategory;
|
|
private String saleGroupExpenseCategory;
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("收入")
|
|
@ExcelProperty("收入")
|
|
private BigDecimal incomeAmount;
|
|
private BigDecimal incomeAmount;
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("支出")
|
|
@ExcelProperty("支出")
|
|
private BigDecimal expenditureAmount;
|
|
private BigDecimal expenditureAmount;
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("余额")
|
|
@ExcelProperty("余额")
|
|
private BigDecimal balanceAmount;
|
|
private BigDecimal balanceAmount;
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("供应商")
|
|
@ExcelProperty("供应商")
|
|
private String supplierName;
|
|
private String supplierName;
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("客户简称")
|
|
@ExcelProperty("客户简称")
|
|
private String customerShortName;
|
|
private String customerShortName;
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("合同单号")
|
|
@ExcelProperty("合同单号")
|
|
private String contractCode;
|
|
private String contractCode;
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("科目名称")
|
|
@ExcelProperty("科目名称")
|
|
private String subjectName;
|
|
private String subjectName;
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("核算项目1")
|
|
@ExcelProperty("核算项目1")
|
|
private String calculateItemType1;
|
|
private String calculateItemType1;
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("核算项目2")
|
|
@ExcelProperty("核算项目2")
|
|
private String calculateItemType2;
|
|
private String calculateItemType2;
|
|
- @ExcelProperty("核算项目1名称-可修改")
|
|
|
|
|
|
+ @ColumnWidth(30)
|
|
|
|
+ @ExcelProperty("核算项目1名称")//可修改
|
|
private String calculateItemName1;
|
|
private String calculateItemName1;
|
|
- @ExcelProperty("核算项目2名称-可修改")
|
|
|
|
|
|
+ @ColumnWidth(30)
|
|
|
|
+ @ExcelProperty("核算项目2名称")//可修改
|
|
private String calculateItemName2;
|
|
private String calculateItemName2;
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("对方科目")
|
|
@ExcelProperty("对方科目")
|
|
private String oppositeSubjectCode;
|
|
private String oppositeSubjectCode;
|
|
|
|
+ @ColumnWidth(20)
|
|
@ExcelProperty("对方科目名称")
|
|
@ExcelProperty("对方科目名称")
|
|
private String oppositeSubjectName;
|
|
private String oppositeSubjectName;
|
|
|
|
+ @ColumnWidth(25)
|
|
@ExcelProperty("核算项目数据导入")
|
|
@ExcelProperty("核算项目数据导入")
|
|
private String calculateItemStr;
|
|
private String calculateItemStr;
|
|
|
|
+ @ColumnWidth(20)
|
|
@ExcelProperty("银行科目代码")
|
|
@ExcelProperty("银行科目代码")
|
|
private String bankSubjectCode;
|
|
private String bankSubjectCode;
|
|
|
|
+ @ColumnWidth(20)
|
|
@ExcelProperty("银行科目名称")
|
|
@ExcelProperty("银行科目名称")
|
|
private String bankSubjectName;
|
|
private String bankSubjectName;
|
|
|
|
+ @ColumnWidth(25)
|
|
@ExcelProperty("合并科目核算项目名称")
|
|
@ExcelProperty("合并科目核算项目名称")
|
|
private String subjectCalculateItemStr;
|
|
private String subjectCalculateItemStr;
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("记账凭证号")
|
|
@ExcelProperty("记账凭证号")
|
|
private String voucherNo;
|
|
private String voucherNo;
|
|
|
|
+ @ColumnWidth(15)
|
|
@ExcelProperty("订单性质")//1归属工厂、2归属业务
|
|
@ExcelProperty("订单性质")//1归属工厂、2归属业务
|
|
private String belongType;
|
|
private String belongType;
|
|
}
|
|
}
|