|
|
@@ -10,18 +10,18 @@ import lombok.Data;
|
|
10
|
10
|
@Data
|
|
11
|
11
|
public class InfShoukuanrenlingExcelDTO {
|
|
12
|
12
|
|
|
13
|
|
- @ExcelProperty(index = 0) // G列 - 制单人
|
|
|
13
|
+ @ExcelProperty(index = 0) // A列 - 制单人
|
|
14
|
14
|
private String createBy;
|
|
15
|
|
- @ExcelProperty(index = 1) // A列 - 销售合同号
|
|
|
15
|
+ @ExcelProperty(index = 1) // B列 - 销售合同号
|
|
16
|
16
|
private String sono;
|
|
17
|
|
- @ExcelProperty(index = 2) // B列 - 发票号 --新增
|
|
|
17
|
+ @ExcelProperty(index = 2) // C列 - 发票号 --新增
|
|
18
|
18
|
private String invNo;
|
|
19
|
|
- @ExcelProperty(index = 3) // C列 - 水单编码
|
|
|
19
|
+ @ExcelProperty(index = 3) // D列 - 水单编码
|
|
20
|
20
|
private String stmtNo;
|
|
21
|
|
- @ExcelProperty(index = 4) // D列 - 客户编号+客户名称(合并列)
|
|
|
21
|
+ @ExcelProperty(index = 4) // E列 - 客户编号+客户名称(合并列)
|
|
22
|
22
|
private String ctNoCtName;
|
|
23
|
|
- @ExcelProperty(index = 5) // E列 - 认领金额
|
|
|
23
|
+ @ExcelProperty(index = 5) // F列 - 认领金额
|
|
24
|
24
|
private Double claimedAmt;
|
|
25
|
|
- @ExcelProperty(index = 6) // F列 - 币别
|
|
|
25
|
+ @ExcelProperty(index = 6) // G列 - 币别
|
|
26
|
26
|
private String curcy;
|
|
27
|
27
|
}
|