|
|
@@ -1,644 +1,181 @@
|
|
1
|
1
|
package com.example.backend.excel;
|
|
2
|
|
-
|
|
3
|
2
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
4
|
3
|
import lombok.Data;
|
|
5
|
4
|
|
|
6
|
|
-import java.math.BigDecimal;
|
|
7
|
|
-import java.time.LocalDateTime;
|
|
8
|
|
-
|
|
9
|
5
|
/**
|
|
10
|
|
- * 销售合同主表
|
|
|
6
|
+ * 销售合同主表 - 跳过标题列
|
|
11
|
7
|
*/
|
|
12
|
8
|
@Data
|
|
13
|
9
|
public class SalesContractExcelDTO {
|
|
14
|
10
|
|
|
15
|
|
- @ExcelProperty("主键ID")
|
|
16
|
|
- private Long id;
|
|
17
|
|
-
|
|
18
|
|
- @ExcelProperty("销售合同号")
|
|
19
|
|
- private String fno;
|
|
20
|
|
-
|
|
21
|
|
- @ExcelProperty("单据日期")
|
|
22
|
|
- private LocalDateTime fdate;
|
|
23
|
|
-
|
|
24
|
|
- @ExcelProperty("销售合同号1")
|
|
25
|
|
- private String sono;
|
|
26
|
|
-
|
|
27
|
|
- @ExcelProperty("客户合同号")
|
|
28
|
|
- private String ctOrderNo;
|
|
29
|
|
-
|
|
30
|
|
- @ExcelProperty("合同类型")
|
|
31
|
|
- private String bizType;
|
|
32
|
|
-
|
|
33
|
|
- @ExcelProperty("业务账套")
|
|
34
|
|
- private String acctSet;
|
|
35
|
|
-
|
|
36
|
|
- @ExcelProperty("条款类型")
|
|
37
|
|
- private String clauseType;
|
|
38
|
|
-
|
|
39
|
|
- @ExcelProperty("签约日期")
|
|
40
|
|
- private LocalDateTime signDate;
|
|
41
|
|
-
|
|
42
|
|
- @ExcelProperty("代理采购协议号")
|
|
43
|
|
- private String agentNo;
|
|
44
|
|
-
|
|
45
|
|
- @ExcelProperty("佣金合同号")
|
|
46
|
|
- private String commContrNo;
|
|
47
|
|
-
|
|
48
|
|
- @ExcelProperty("合同起始有效期")
|
|
49
|
|
- private LocalDateTime contrStart;
|
|
50
|
|
-
|
|
51
|
|
- @ExcelProperty("合同截止有效期")
|
|
52
|
|
- private LocalDateTime contrEnd;
|
|
53
|
|
-
|
|
54
|
|
- @ExcelProperty("销售交货日期")
|
|
55
|
|
- private LocalDateTime sDelivDt;
|
|
56
|
|
-
|
|
57
|
|
- @ExcelProperty("合同描述")
|
|
58
|
|
- private String contrDesc;
|
|
59
|
|
-
|
|
60
|
|
- @ExcelProperty("我方编号")
|
|
61
|
|
- private String fours;
|
|
62
|
|
-
|
|
63
|
|
- @ExcelProperty("我方名称")
|
|
64
|
|
- private String foursname;
|
|
65
|
|
-
|
|
66
|
|
- @ExcelProperty("我方开户银行")
|
|
67
|
|
- private String ourBankNm;
|
|
68
|
|
-
|
|
69
|
|
- @ExcelProperty("我方银行账号")
|
|
70
|
|
- private String ourBankAcct;
|
|
71
|
|
-
|
|
72
|
|
- @ExcelProperty("客户代码")
|
|
73
|
|
- private String ctNo;
|
|
74
|
|
-
|
|
75
|
|
- @ExcelProperty("客户名称")
|
|
76
|
|
- private String ctName;
|
|
77
|
|
-
|
|
78
|
|
- @ExcelProperty("客户开户银行")
|
|
79
|
|
- private String ctBankName;
|
|
80
|
|
-
|
|
81
|
|
- @ExcelProperty("客户银行账户")
|
|
82
|
|
- private String ctBankAcct;
|
|
83
|
|
-
|
|
84
|
|
- @ExcelProperty("客户联系人名称")
|
|
85
|
|
- private String ctContNm;
|
|
86
|
|
-
|
|
87
|
|
- @ExcelProperty("币别")
|
|
88
|
|
- private String curcy;
|
|
89
|
|
-
|
|
90
|
|
- @ExcelProperty("折人民币汇率")
|
|
91
|
|
- private BigDecimal rate;
|
|
92
|
|
-
|
|
93
|
|
- @ExcelProperty("原币总金额")
|
|
94
|
|
- private BigDecimal totalAmt;
|
|
95
|
|
-
|
|
96
|
|
- @ExcelProperty("人民币总金额")
|
|
97
|
|
- private BigDecimal totalCnyAmt;
|
|
98
|
|
-
|
|
99
|
|
- @ExcelProperty("美元总金额")
|
|
100
|
|
- private BigDecimal totalUsdAmt;
|
|
101
|
|
-
|
|
102
|
|
- @ExcelProperty("总数量")
|
|
103
|
|
- private BigDecimal totalQty;
|
|
104
|
|
-
|
|
105
|
|
- @ExcelProperty("放货仓库代码")
|
|
106
|
|
- private String stockno;
|
|
107
|
|
-
|
|
108
|
|
- @ExcelProperty("放货仓库名称")
|
|
109
|
|
- private String stockname;
|
|
110
|
|
-
|
|
111
|
|
- @ExcelProperty("预估毛利率")
|
|
112
|
|
- private BigDecimal estGrossMR;
|
|
113
|
|
-
|
|
114
|
|
- @ExcelProperty("预估毛利金额")
|
|
115
|
|
- private BigDecimal estGrossMA;
|
|
116
|
|
-
|
|
117
|
|
- @ExcelProperty("预估成本总金额")
|
|
118
|
|
- private BigDecimal estTotCost;
|
|
119
|
|
-
|
|
120
|
|
- @ExcelProperty("预估费用总金额")
|
|
121
|
|
- private BigDecimal estTotFee;
|
|
122
|
|
-
|
|
123
|
|
- @ExcelProperty("预估回款周期")
|
|
124
|
|
- private BigDecimal estPayCycle;
|
|
125
|
|
-
|
|
126
|
|
- @ExcelProperty("预估资金成本")
|
|
127
|
|
- private BigDecimal estFundCost;
|
|
128
|
|
-
|
|
129
|
|
- @ExcelProperty("价格条款")
|
|
130
|
|
- private String terms;
|
|
131
|
|
-
|
|
132
|
|
- @ExcelProperty("签约地点")
|
|
133
|
|
- private String signLoc;
|
|
134
|
|
-
|
|
135
|
|
- @ExcelProperty("交货地点")
|
|
136
|
|
- private String delivLoc;
|
|
137
|
|
-
|
|
138
|
|
- @ExcelProperty("装运港")
|
|
139
|
|
- private String lPort;
|
|
140
|
|
-
|
|
141
|
|
- @ExcelProperty("目的港")
|
|
142
|
|
- private String dPort;
|
|
143
|
|
-
|
|
144
|
|
- @ExcelProperty("贸易国别")
|
|
145
|
|
- private String trdCtry;
|
|
146
|
|
-
|
|
147
|
|
- @ExcelProperty("收款方式")
|
|
148
|
|
- private String rcptMtd;
|
|
149
|
|
-
|
|
150
|
|
- @ExcelProperty("运输方式")
|
|
151
|
|
- private String tranWay;
|
|
152
|
|
-
|
|
153
|
|
- @ExcelProperty("价格说明")
|
|
154
|
|
- private String priceDesc;
|
|
155
|
|
-
|
|
156
|
|
- @ExcelProperty("计价公式")
|
|
157
|
|
- private String priceForm;
|
|
158
|
|
-
|
|
159
|
|
- @ExcelProperty("数量溢装%")
|
|
160
|
|
- private BigDecimal qtyOver;
|
|
161
|
|
-
|
|
162
|
|
- @ExcelProperty("数量短装%")
|
|
163
|
|
- private BigDecimal qtyShort;
|
|
164
|
|
-
|
|
165
|
|
- @ExcelProperty("金额溢装%")
|
|
166
|
|
- private BigDecimal amtOver;
|
|
167
|
|
-
|
|
168
|
|
- @ExcelProperty("金额短装%")
|
|
169
|
|
- private BigDecimal amtShort;
|
|
170
|
|
-
|
|
171
|
|
- @ExcelProperty("预收款比例")
|
|
172
|
|
- private BigDecimal prepayRatio;
|
|
173
|
|
-
|
|
174
|
|
- @ExcelProperty("预收款金额")
|
|
175
|
|
- private BigDecimal prepayAmt;
|
|
176
|
|
-
|
|
177
|
|
- @ExcelProperty("产地")
|
|
178
|
|
- private String origin;
|
|
179
|
|
-
|
|
180
|
|
- @ExcelProperty("结算指标")
|
|
181
|
|
- private String settIndex;
|
|
182
|
|
-
|
|
183
|
|
- @ExcelProperty("客户履约保证金支付日期")
|
|
184
|
|
- private LocalDateTime ctPerfPayDt;
|
|
185
|
|
-
|
|
186
|
|
- @ExcelProperty("客户履约保证金比例")
|
|
187
|
|
- private BigDecimal ctPerfRatio;
|
|
188
|
|
-
|
|
189
|
|
- @ExcelProperty("合同完结付款日期")
|
|
190
|
|
- private LocalDateTime contrFinalPayDt;
|
|
191
|
|
-
|
|
192
|
|
- @ExcelProperty("合同违约金比例")
|
|
193
|
|
- private BigDecimal contrPenaltyRatio;
|
|
194
|
|
-
|
|
195
|
|
- @ExcelProperty("提货期限")
|
|
196
|
|
- private BigDecimal pickDueDays;
|
|
197
|
|
-
|
|
198
|
|
- @ExcelProperty("开票天数")
|
|
199
|
|
- private BigDecimal invDays;
|
|
200
|
|
-
|
|
201
|
|
- @ExcelProperty("责任中心")
|
|
202
|
|
- private String respCtrName;
|
|
203
|
|
-
|
|
204
|
|
- @ExcelProperty("考核占比")
|
|
205
|
|
- private BigDecimal assessRatio;
|
|
206
|
|
-
|
|
207
|
|
- @ExcelProperty("占比金额")
|
|
208
|
|
- private BigDecimal assessAmt;
|
|
209
|
|
-
|
|
210
|
|
- @ExcelProperty("代理费计费方式")
|
|
211
|
|
- private String billingMode;
|
|
212
|
|
-
|
|
213
|
|
- @ExcelProperty("代理费计费比例/单价")
|
|
214
|
|
- private BigDecimal billingRate;
|
|
215
|
|
-
|
|
216
|
|
- @ExcelProperty("代理费计费金额")
|
|
217
|
|
- private BigDecimal billingAmount;
|
|
218
|
|
-
|
|
219
|
|
- @ExcelProperty("是否租船")
|
|
220
|
|
- private String whetherChartering;
|
|
221
|
|
-
|
|
222
|
|
- @ExcelProperty("合同执行人代码")
|
|
223
|
|
- private String contrExecCd;
|
|
224
|
|
-
|
|
225
|
|
- @ExcelProperty("合同执行人名称")
|
|
226
|
|
- private String contrExecNm;
|
|
227
|
|
-
|
|
228
|
|
- @ExcelProperty("合同名称")
|
|
229
|
|
- private String contractName;
|
|
230
|
|
-
|
|
231
|
|
- @ExcelProperty("合同标的")
|
|
232
|
|
- private String contractSubjectMatter;
|
|
233
|
|
-
|
|
234
|
|
- @ExcelProperty("合同大类")
|
|
235
|
|
- private String bpoTypeS;
|
|
236
|
|
-
|
|
237
|
|
- @ExcelProperty("合同细类")
|
|
238
|
|
- private String bpoTypeT;
|
|
239
|
|
-
|
|
240
|
|
- @ExcelProperty("是否法务格式合同")
|
|
241
|
|
- private String ifLegalCheckFormat;
|
|
242
|
|
-
|
|
243
|
|
- @ExcelProperty("是否经过法审")
|
|
244
|
|
- private String ifLegalCheck;
|
|
245
|
|
-
|
|
246
|
|
- @ExcelProperty("是否多次结算")
|
|
247
|
|
- private String ifPayMultiple;
|
|
248
|
|
-
|
|
249
|
|
- @ExcelProperty("是否阳光采购")
|
|
250
|
|
- private String ifSunPurchase;
|
|
251
|
|
-
|
|
252
|
|
- @ExcelProperty("未阳光采购理由")
|
|
253
|
|
- private String sunPurInfo;
|
|
254
|
|
-
|
|
255
|
|
- @ExcelProperty("未阳光采购理由(自定义)")
|
|
256
|
|
- private String sunPurInfoCus;
|
|
257
|
|
-
|
|
258
|
|
- @ExcelProperty("是否招投标")
|
|
259
|
|
- private String ifBidding;
|
|
260
|
|
-
|
|
261
|
|
- @ExcelProperty("是否集团外贸")
|
|
262
|
|
- private String ifForeignTrade;
|
|
263
|
|
-
|
|
264
|
|
- @ExcelProperty("变更说明")
|
|
265
|
|
- private String changeDesc;
|
|
266
|
|
-
|
|
267
|
|
- @ExcelProperty("合同变更人")
|
|
268
|
|
- private String changePeople;
|
|
269
|
|
-
|
|
270
|
|
- @ExcelProperty("合同变更日期")
|
|
271
|
|
- private LocalDateTime changeDate;
|
|
272
|
|
-
|
|
273
|
|
- @ExcelProperty("变更协议号")
|
|
274
|
|
- private String changeAgreementNo;
|
|
275
|
|
-
|
|
276
|
|
- @ExcelProperty("变更前合同版本号")
|
|
277
|
|
- private String beforeChangeVer;
|
|
278
|
|
-
|
|
279
|
|
- @ExcelProperty("保证金比例")
|
|
280
|
|
- private BigDecimal ctmarginRatio;
|
|
281
|
|
-
|
|
282
|
|
- @ExcelProperty("保证金金额")
|
|
283
|
|
- private BigDecimal ctmarginAmount;
|
|
284
|
|
-
|
|
285
|
|
- @ExcelProperty("中文船名")
|
|
286
|
|
- private String chnShipName;
|
|
287
|
|
-
|
|
288
|
|
- @ExcelProperty("英文船名")
|
|
289
|
|
- private String engShipName;
|
|
290
|
|
-
|
|
291
|
|
- @ExcelProperty("流程实例id")
|
|
292
|
|
- private String processInstanceId;
|
|
293
|
|
-
|
|
294
|
|
- @ExcelProperty("单据状态")
|
|
295
|
|
- private String placed;
|
|
296
|
|
-
|
|
297
|
|
- @ExcelProperty("业务id")
|
|
298
|
|
- private Long fmodalid;
|
|
299
|
|
-
|
|
300
|
|
- @ExcelProperty("数据来源id")
|
|
301
|
|
- private Long sourceid;
|
|
302
|
|
-
|
|
303
|
|
- @ExcelProperty("数据来源表")
|
|
304
|
|
- private String sourcetable;
|
|
305
|
|
-
|
|
306
|
|
- @ExcelProperty("图片")
|
|
307
|
|
- private String imgIds;
|
|
308
|
|
-
|
|
309
|
|
- @ExcelProperty("调取次数")
|
|
310
|
|
- private Integer inc;
|
|
311
|
|
-
|
|
312
|
|
- @ExcelProperty("关联id")
|
|
313
|
|
- private Long rid;
|
|
314
|
|
-
|
|
315
|
|
- @ExcelProperty("归档状态")
|
|
316
|
|
- private String fsaved;
|
|
317
|
|
-
|
|
318
|
|
- @ExcelProperty("备注信息")
|
|
319
|
|
- private String remark;
|
|
320
|
|
-
|
|
321
|
|
- @ExcelProperty("模版名称")
|
|
322
|
|
- private String sysTemplateName;
|
|
323
|
|
-
|
|
324
|
|
- @ExcelProperty("是否删除")
|
|
325
|
|
- private Integer delFlag;
|
|
326
|
|
-
|
|
327
|
|
- @ExcelProperty("制单人部门代码")
|
|
328
|
|
- private String deptId;
|
|
329
|
|
-
|
|
330
|
|
- @ExcelProperty("制单人部门名称")
|
|
331
|
|
- private String deptName;
|
|
332
|
|
-
|
|
333
|
|
- @ExcelProperty("制单人代码")
|
|
334
|
|
- private String createBy;
|
|
335
|
|
-
|
|
336
|
|
- @ExcelProperty("创建时间")
|
|
337
|
|
- private LocalDateTime createTime;
|
|
338
|
|
-
|
|
339
|
|
- @ExcelProperty("制单人名称")
|
|
340
|
|
- private String createByName;
|
|
341
|
|
-
|
|
342
|
|
- @ExcelProperty("更新账号")
|
|
343
|
|
- private String updateBy;
|
|
344
|
|
-
|
|
345
|
|
- @ExcelProperty("更新时间")
|
|
346
|
|
- private LocalDateTime updateTime;
|
|
347
|
|
-
|
|
348
|
|
- @ExcelProperty("更新人")
|
|
349
|
|
- private String updateByName;
|
|
350
|
|
-
|
|
351
|
|
- @ExcelProperty("贸易方式")
|
|
352
|
|
- private String tradeway;
|
|
353
|
|
-
|
|
354
|
|
- @ExcelProperty("美元汇率")
|
|
355
|
|
- private BigDecimal rateUsd;
|
|
356
|
|
-
|
|
357
|
|
- @ExcelProperty("付款方式")
|
|
358
|
|
- private String payment;
|
|
359
|
|
-
|
|
360
|
|
- @ExcelProperty("预估资金利息")
|
|
361
|
|
- private BigDecimal estFundInt;
|
|
362
|
|
-
|
|
363
|
|
- @ExcelProperty("计费单价")
|
|
364
|
|
- private BigDecimal billPrice;
|
|
365
|
|
-
|
|
366
|
|
- @ExcelProperty("计费方式")
|
|
367
|
|
- private String billMode;
|
|
368
|
|
-
|
|
369
|
|
- @ExcelProperty("计费比例")
|
|
370
|
|
- private BigDecimal billRate;
|
|
371
|
|
-
|
|
372
|
|
- @ExcelProperty("计费金额")
|
|
373
|
|
- private BigDecimal billAmt;
|
|
374
|
|
-
|
|
375
|
|
- @ExcelProperty("变更次数")
|
|
376
|
|
- private Integer fchno;
|
|
377
|
|
-
|
|
378
|
|
- @ExcelProperty("IMP同步PLMS接口状态")
|
|
379
|
|
- private String impToPLMSStatus;
|
|
380
|
|
-
|
|
381
|
|
- @ExcelProperty("IMP同步PLMS接口数据状态")
|
|
382
|
|
- private String impToPLMSFlag;
|
|
383
|
|
-
|
|
384
|
|
- @ExcelProperty("首款质量依据")
|
|
385
|
|
- private String firstQmGt;
|
|
386
|
|
-
|
|
387
|
|
- @ExcelProperty("尾款质量依据")
|
|
388
|
|
- private String endQmGist;
|
|
389
|
|
-
|
|
390
|
|
- @ExcelProperty("结算方式")
|
|
391
|
|
- private String settlementMethod;
|
|
392
|
|
-
|
|
393
|
|
- @ExcelProperty("品种大类")
|
|
394
|
|
- private String materialClass;
|
|
395
|
|
-
|
|
396
|
|
- @ExcelProperty("签约日期")
|
|
397
|
|
- private LocalDateTime signDt;
|
|
398
|
|
-
|
|
399
|
|
- @ExcelProperty("合同生效日期")
|
|
400
|
|
- private LocalDateTime validDate;
|
|
401
|
|
-
|
|
402
|
|
- @ExcelProperty("合同执行人机构代码")
|
|
403
|
|
- private String contrExecCdInstitutionId;
|
|
404
|
|
-
|
|
405
|
|
- @ExcelProperty("合同执行人机构名称")
|
|
406
|
|
- private String contrExecCdInstitutionNm;
|
|
407
|
|
-
|
|
408
|
|
- @ExcelProperty("合同执行人部门代码")
|
|
409
|
|
- private String contrExecCdDeptId;
|
|
410
|
|
-
|
|
411
|
|
- @ExcelProperty("合同执行人部门名称")
|
|
412
|
|
- private String contrExecCdDeptNm;
|
|
413
|
|
-
|
|
414
|
|
- @ExcelProperty("IMP同步PLMS接口来源系统代码")
|
|
415
|
|
- private String sysid;
|
|
416
|
|
-
|
|
417
|
|
- @ExcelProperty("IMP同步PLMS接口账套代码")
|
|
418
|
|
- private String bookId;
|
|
419
|
|
-
|
|
420
|
|
- @ExcelProperty("IMP同步PLMS接口PLMS组织ID")
|
|
421
|
|
- private String orgId;
|
|
422
|
|
-
|
|
423
|
|
- @ExcelProperty("赊销预付标识")
|
|
424
|
|
- private String ifpayAdvanceSellCredit;
|
|
425
|
|
-
|
|
426
|
|
- @ExcelProperty("业务类型")
|
|
427
|
|
- private String serviceType;
|
|
428
|
|
-
|
|
429
|
|
- @ExcelProperty("审批摘要")
|
|
430
|
|
- private String reviewAbstract;
|
|
431
|
|
-
|
|
432
|
|
- @ExcelProperty("是否清底")
|
|
433
|
|
- private String ifClearBottom;
|
|
434
|
|
-
|
|
435
|
|
- @ExcelProperty("关闭状态")
|
|
436
|
|
- private String fclosed;
|
|
437
|
|
-
|
|
438
|
|
- @ExcelProperty("当前版本号")
|
|
439
|
|
- private Integer curChangeVer;
|
|
440
|
|
-
|
|
441
|
|
- @ExcelProperty("变更标识")
|
|
442
|
|
- private Integer curChangeFlag;
|
|
443
|
|
-
|
|
444
|
|
- @ExcelProperty("变更原因")
|
|
445
|
|
- private String curChangeReason;
|
|
446
|
|
-
|
|
447
|
|
- @ExcelProperty("变更时间")
|
|
448
|
|
- private LocalDateTime curChangeTime;
|
|
449
|
|
-
|
|
450
|
|
- @ExcelProperty("变更人")
|
|
451
|
|
- private String curChangeUser;
|
|
452
|
|
-
|
|
453
|
|
- @ExcelProperty("合同产品类型")
|
|
454
|
|
- private String bizProductType;
|
|
455
|
|
-
|
|
456
|
|
- @ExcelProperty("PLMS合同大类")
|
|
457
|
|
- private String contractType;
|
|
458
|
|
-
|
|
459
|
|
- @ExcelProperty("是否赊销")
|
|
460
|
|
- private String ifSellCredit;
|
|
461
|
|
-
|
|
462
|
|
- @ExcelProperty("预付白名单")
|
|
463
|
|
- private String ifpayAdvanceWhitelist;
|
|
464
|
|
-
|
|
465
|
|
- @ExcelProperty("装卸条款")
|
|
466
|
|
- private String loadUnloadTerms;
|
|
467
|
|
-
|
|
468
|
|
- @ExcelProperty("赊销白名单")
|
|
469
|
|
- private String ifSellCreditWhitelist;
|
|
470
|
|
-
|
|
471
|
|
- @ExcelProperty("装运港编号")
|
|
472
|
|
- private String lpno;
|
|
473
|
|
-
|
|
474
|
|
- @ExcelProperty("目的港编号")
|
|
475
|
|
- private String dpno;
|
|
|
11
|
+ @ExcelProperty(index = 1)
|
|
|
12
|
+ private String sono; // 销售合同号
|
|
476
|
13
|
|
|
477
|
|
- @ExcelProperty("长协合同号")
|
|
478
|
|
- private String longTermContract;
|
|
|
14
|
+ @ExcelProperty(index = 2)
|
|
|
15
|
+ private String createBy; // 制单人代码
|
|
479
|
16
|
|
|
480
|
|
- @ExcelProperty("是否长协")
|
|
481
|
|
- private String ifLongTerm;
|
|
|
17
|
+ @ExcelProperty(index = 3)
|
|
|
18
|
+ private String createByName; // 制单人名称
|
|
482
|
19
|
|
|
483
|
|
- @ExcelProperty("是否确认")
|
|
484
|
|
- private Integer isConfirm;
|
|
|
20
|
+ @ExcelProperty(index = 4)
|
|
|
21
|
+ private String serviceType; // 业务类型
|
|
485
|
22
|
|
|
486
|
|
- @ExcelProperty("交货方式")
|
|
487
|
|
- private String delivMtd;
|
|
|
23
|
+ @ExcelProperty(index = 5)
|
|
|
24
|
+ private String bizType; // 合同类型
|
|
488
|
25
|
|
|
489
|
|
- @ExcelProperty("保险种类")
|
|
490
|
|
- private String insuranceType;
|
|
|
26
|
+ @ExcelProperty(index = 6)
|
|
|
27
|
+ private String bizProductType; // 合同产品类型
|
|
491
|
28
|
|
|
492
|
|
- @ExcelProperty("保险费率%")
|
|
493
|
|
- private BigDecimal insuranceAmt;
|
|
|
29
|
+ @ExcelProperty(index = 7)
|
|
|
30
|
+ private String contrExecCd; // 合同执行人代码
|
|
494
|
31
|
|
|
495
|
|
- @ExcelProperty("是否借壳")
|
|
496
|
|
- private String ifShell;
|
|
|
32
|
+ @ExcelProperty(index = 8)
|
|
|
33
|
+ private String contrExecNm; // 合同执行人名称
|
|
497
|
34
|
|
|
498
|
|
- @ExcelProperty("借壳单位")
|
|
499
|
|
- private String shellCompany;
|
|
|
35
|
+ @ExcelProperty(index = 9)
|
|
|
36
|
+ private String ctName; // 客户名称
|
|
500
|
37
|
|
|
501
|
|
- @ExcelProperty("是否允许分批")
|
|
502
|
|
- private String ifBatch;
|
|
|
38
|
+ @ExcelProperty(index = 10)
|
|
|
39
|
+ private String ctNo; // 客户代码
|
|
503
|
40
|
|
|
504
|
|
- @ExcelProperty("是否允许转运")
|
|
505
|
|
- private String ifTransfer;
|
|
|
41
|
+ @ExcelProperty(index = 11)
|
|
|
42
|
+ private String ctContNm; // 客户联系人名称
|
|
506
|
43
|
|
|
507
|
|
- @ExcelProperty("钢材产品判断字段")
|
|
508
|
|
- private String ifgc;
|
|
|
44
|
+ @ExcelProperty(index = 12)
|
|
|
45
|
+ private String ctBankName; // 客户开户银行
|
|
509
|
46
|
|
|
510
|
|
- @ExcelProperty("执行美元汇率")
|
|
511
|
|
- private BigDecimal rateUs;
|
|
|
47
|
+ @ExcelProperty(index = 13)
|
|
|
48
|
+ private String ctBankAcct; // 客户银行账户
|
|
512
|
49
|
|
|
513
|
|
- @ExcelProperty("最迟装运日期")
|
|
514
|
|
- private LocalDateTime estLoadDt;
|
|
|
50
|
+ @ExcelProperty(index = 14)
|
|
|
51
|
+ private String ctOrderNo; // 客户合同号
|
|
515
|
52
|
|
|
516
|
|
- @ExcelProperty("最迟集港日期")
|
|
517
|
|
- private LocalDateTime estArrDt;
|
|
|
53
|
+ @ExcelProperty(index = 15)
|
|
|
54
|
+ private String curcy; // 币别
|
|
518
|
55
|
|
|
519
|
|
- @ExcelProperty("合同借壳评审人")
|
|
520
|
|
- private String reviewer;
|
|
|
56
|
+ @ExcelProperty(index = 16)
|
|
|
57
|
+ private String estArrDt; // 最迟集港日期
|
|
521
|
58
|
|
|
522
|
|
- @ExcelProperty("来源类型")
|
|
523
|
|
- private String sourceType;
|
|
|
59
|
+ @ExcelProperty(index = 17)
|
|
|
60
|
+ private String estLoadDt; // 最迟装运日期
|
|
524
|
61
|
|
|
525
|
|
- @ExcelProperty("来源类型")
|
|
526
|
|
- private String sourceno;
|
|
|
62
|
+ @ExcelProperty(index = 18)
|
|
|
63
|
+ private String outstandingDay; // 预计客商占款天数
|
|
527
|
64
|
|
|
528
|
|
- @ExcelProperty("平均单价")
|
|
529
|
|
- private BigDecimal avePrice;
|
|
|
65
|
+ @ExcelProperty(index = 19)
|
|
|
66
|
+ private String fours; // 我方编号 ← 新增
|
|
530
|
67
|
|
|
531
|
|
- @ExcelProperty("提交审批日期")
|
|
532
|
|
- private LocalDateTime submissionDate;
|
|
|
68
|
+ @ExcelProperty(index = 20)
|
|
|
69
|
+ private String foursname; // 我方名称
|
|
533
|
70
|
|
|
534
|
|
- @ExcelProperty("审批生效日期")
|
|
535
|
|
- private LocalDateTime appEffectiveDate;
|
|
|
71
|
+ @ExcelProperty(index = 21)
|
|
|
72
|
+ private String ourBankAcct; // 我方银行账号
|
|
536
|
73
|
|
|
537
|
|
- @ExcelProperty("保供合同一键三联类型")
|
|
538
|
|
- private String oneClickSourcetype;
|
|
|
74
|
+ @ExcelProperty(index = 22)
|
|
|
75
|
+ private String ourBankNm; // 我方开户银行
|
|
539
|
76
|
|
|
540
|
|
- @ExcelProperty("保供合同一键三联id")
|
|
541
|
|
- private Long oneClickSourceid;
|
|
|
77
|
+ @ExcelProperty(index = 23)
|
|
|
78
|
+ private String ifClearBottom; // 是否清底
|
|
542
|
79
|
|
|
543
|
|
- @ExcelProperty("海外公司名称")
|
|
544
|
|
- private String overSeasName;
|
|
|
80
|
+ @ExcelProperty(index = 24)
|
|
|
81
|
+ private String ifLongTerm; // 是否长协
|
|
545
|
82
|
|
|
546
|
|
- @ExcelProperty("海外公司代码")
|
|
547
|
|
- private String overSeasNo;
|
|
|
83
|
+ @ExcelProperty(index = 25)
|
|
|
84
|
+ private String longTermContract; // 长协合同号
|
|
548
|
85
|
|
|
549
|
|
- @ExcelProperty("装运国")
|
|
550
|
|
- private String lPortCtry;
|
|
|
86
|
+ @ExcelProperty(index = 26)
|
|
|
87
|
+ private String lPort; // 装运港
|
|
551
|
88
|
|
|
552
|
|
- @ExcelProperty("目的国")
|
|
553
|
|
- private String dPortCtry;
|
|
|
89
|
+ @ExcelProperty(index = 27)
|
|
|
90
|
+ private String lPortCtry; // 装运国 ← 新增
|
|
554
|
91
|
|
|
555
|
|
- @ExcelProperty("托管")
|
|
556
|
|
- private String rptg;
|
|
|
92
|
+ @ExcelProperty(index = 28)
|
|
|
93
|
+ private String dPort; // 目的港
|
|
557
|
94
|
|
|
558
|
|
- @ExcelProperty("合同不含税总金额")
|
|
559
|
|
- private BigDecimal totalNtAmt;
|
|
|
95
|
+ @ExcelProperty(index = 29)
|
|
|
96
|
+ private String dPortCtry; // 目的国 ← 新增
|
|
560
|
97
|
|
|
561
|
|
- @ExcelProperty("项目计划书单号")
|
|
562
|
|
- private String ppRefNo;
|
|
|
98
|
+ @ExcelProperty(index = 30)
|
|
|
99
|
+ private String qtyOver; // 数量溢装%
|
|
563
|
100
|
|
|
564
|
|
- @ExcelProperty("是否过磅数量结算")
|
|
565
|
|
- private String ifWeighedSalesQty;
|
|
|
101
|
+ @ExcelProperty(index = 31)
|
|
|
102
|
+ private String qtyShort; // 数量短装%
|
|
566
|
103
|
|
|
567
|
|
- @ExcelProperty("限价类别")
|
|
568
|
|
- private String limitType;
|
|
|
104
|
+ @ExcelProperty(index = 32)
|
|
|
105
|
+ private String amtOver; // 金额溢装%
|
|
569
|
106
|
|
|
570
|
|
- @ExcelProperty("电子合同标识")
|
|
571
|
|
- private String electronicsFlag;
|
|
|
107
|
+ @ExcelProperty(index = 33)
|
|
|
108
|
+ private String amtShort; // 金额短装%
|
|
572
|
109
|
|
|
573
|
|
- @ExcelProperty("合同文本类别")
|
|
574
|
|
- private String contractTextType;
|
|
|
110
|
+ @ExcelProperty(index = 34)
|
|
|
111
|
+ private String insuranceType; // 保险种类
|
|
575
|
112
|
|
|
576
|
|
- @ExcelProperty("合同状态")
|
|
577
|
|
- private String contractStatus;
|
|
|
113
|
+ @ExcelProperty(index = 35)
|
|
|
114
|
+ private String insuranceAmt; // 保险费率%
|
|
578
|
115
|
|
|
579
|
|
- @ExcelProperty("合同大类")
|
|
580
|
|
- private String contractType2;
|
|
|
116
|
+ @ExcelProperty(index = 36)
|
|
|
117
|
+ private String rate; // 折人民币汇率 ← 新增
|
|
581
|
118
|
|
|
582
|
|
- @ExcelProperty("单价类别")
|
|
583
|
|
- private String unitPriceType;
|
|
|
119
|
+ @ExcelProperty(index = 37)
|
|
|
120
|
+ private String rateUs; // 执行美元汇率 ← 新增
|
|
584
|
121
|
|
|
585
|
|
- @ExcelProperty("增值税率")
|
|
586
|
|
- private BigDecimal inTaxRate;
|
|
|
122
|
+ @ExcelProperty(index = 38)
|
|
|
123
|
+ private String signLoc; // 签约地点
|
|
587
|
124
|
|
|
588
|
|
- @ExcelProperty("是否含税标记")
|
|
589
|
|
- private String iftax;
|
|
|
125
|
+ @ExcelProperty(index = 39)
|
|
|
126
|
+ private String terms; // 价格条款
|
|
590
|
127
|
|
|
591
|
|
- @ExcelProperty("PLMS合同id")
|
|
592
|
|
- private String plmscontractId;
|
|
|
128
|
+ @ExcelProperty(index = 40)
|
|
|
129
|
+ private String loadUnloadTerms; // 装卸条款
|
|
593
|
130
|
|
|
594
|
|
- @ExcelProperty("PLMS合同编号")
|
|
595
|
|
- private String plmscontractCode;
|
|
|
131
|
+ @ExcelProperty(index = 41)
|
|
|
132
|
+ private String delivLoc; // 交货地点
|
|
596
|
133
|
|
|
597
|
|
- @ExcelProperty("是否指数合同")
|
|
598
|
|
- private String contractIndexFlag;
|
|
|
134
|
+ @ExcelProperty(index = 42)
|
|
|
135
|
+ private String delivMtd; // 交货方式
|
|
599
|
136
|
|
|
600
|
|
- @ExcelProperty("备用字段1")
|
|
601
|
|
- private String extCol1;
|
|
|
137
|
+ @ExcelProperty(index = 43)
|
|
|
138
|
+ private String tranWay; // 运输方式
|
|
602
|
139
|
|
|
603
|
|
- @ExcelProperty("计量单位代码")
|
|
604
|
|
- private String measureUnitCode;
|
|
|
140
|
+ @ExcelProperty(index = 44)
|
|
|
141
|
+ private String whetherChartering; // 是否租船
|
|
605
|
142
|
|
|
606
|
|
- @ExcelProperty("采购合同号")
|
|
607
|
|
- private String pono;
|
|
|
143
|
+ @ExcelProperty(index = 45)
|
|
|
144
|
+ private String chnShipName; // 中文船名
|
|
608
|
145
|
|
|
609
|
|
- @ExcelProperty("销售合同信用销售比例")
|
|
610
|
|
- private BigDecimal prepayTrustRatio;
|
|
|
146
|
+ @ExcelProperty(index = 46)
|
|
|
147
|
+ private String engShipName; // 英文船名
|
|
611
|
148
|
|
|
612
|
|
- @ExcelProperty("销售合同信用销售金额")
|
|
613
|
|
- private BigDecimal prepayTrustAmt;
|
|
|
149
|
+ @ExcelProperty(index = 47)
|
|
|
150
|
+ private String agentNo; // 代理采购协议号
|
|
614
|
151
|
|
|
615
|
|
- @ExcelProperty("代理销售协议号")
|
|
616
|
|
- private String agentNoSo;
|
|
|
152
|
+ @ExcelProperty(index = 48)
|
|
|
153
|
+ private String agentNoSo; // 代理销售协议号
|
|
617
|
154
|
|
|
618
|
|
- @ExcelProperty("印花税金额")
|
|
619
|
|
- private BigDecimal stampTaxAmt;
|
|
|
155
|
+ @ExcelProperty(index = 49)
|
|
|
156
|
+ private String commContrNo; // 佣金合同号
|
|
620
|
157
|
|
|
621
|
|
- @ExcelProperty("合同取消状态")
|
|
622
|
|
- private String fclosedType;
|
|
|
158
|
+ @ExcelProperty(index = 50)
|
|
|
159
|
+ private String sDelivDt; // 销售交货日期
|
|
623
|
160
|
|
|
624
|
|
- @ExcelProperty("产品名称")
|
|
625
|
|
- private String mpsdesc;
|
|
|
161
|
+ @ExcelProperty(index = 51)
|
|
|
162
|
+ private String ifWeighedSalesQty; // 是否过磅数量结算
|
|
626
|
163
|
|
|
627
|
|
- @ExcelProperty("预计客商占款天数")
|
|
628
|
|
- private Integer outstandingDay;
|
|
|
164
|
+ @ExcelProperty(index = 52)
|
|
|
165
|
+ private String settIndex; // 结算指标
|
|
629
|
166
|
|
|
630
|
|
- @ExcelProperty("未结金额")
|
|
631
|
|
- private BigDecimal outstandingamt;
|
|
|
167
|
+ @ExcelProperty(index = 53)
|
|
|
168
|
+ private String ifBatch; // 是否允许分批
|
|
632
|
169
|
|
|
633
|
|
- @ExcelProperty("我方英文名称")
|
|
634
|
|
- private String foursnamee;
|
|
|
170
|
+ @ExcelProperty(index = 54)
|
|
|
171
|
+ private String ifTransfer; // 是否允许转运
|
|
635
|
172
|
|
|
636
|
|
- @ExcelProperty("客户英文名称")
|
|
637
|
|
- private String ctnamee;
|
|
|
173
|
+ @ExcelProperty(index = 55)
|
|
|
174
|
+ private String contrDesc; // 合同描述
|
|
638
|
175
|
|
|
639
|
|
- @ExcelProperty("未税平均单价")
|
|
640
|
|
- private BigDecimal avgNtprice;
|
|
|
176
|
+ @ExcelProperty(index = 56)
|
|
|
177
|
+ private String remark; // 备注信息
|
|
641
|
178
|
|
|
642
|
|
- @ExcelProperty("英文品名")
|
|
643
|
|
- private String edesc;
|
|
|
179
|
+ @ExcelProperty(index = 57)
|
|
|
180
|
+ private String pono; // 采购合同号
|
|
644
|
181
|
}
|