|
|
@ -19,20 +19,23 @@ import org.dromara.easyes.annotation.rely.IdType; |
|
|
|
public class CIBStatementEntity { |
|
|
|
|
|
|
|
@IndexId(type = IdType.CUSTOMIZE) |
|
|
|
@ExcelIgnore |
|
|
|
private String id; |
|
|
|
|
|
|
|
/** |
|
|
|
* 客户名称 |
|
|
|
*/ |
|
|
|
@ExcelProperty("客户名称") |
|
|
|
@IndexField(fieldType = FieldType.KEYWORD) |
|
|
|
private String cardHolderName; |
|
|
|
|
|
|
|
// 卡号 |
|
|
|
@ExcelProperty("账户代号") |
|
|
|
@IndexField(fieldType = FieldType.KEYWORD) |
|
|
|
@ExcelProperty({"账号","账户代号"}) |
|
|
|
private String cardNumber; |
|
|
|
|
|
|
|
// 卡号 |
|
|
|
@ExcelProperty("账号") |
|
|
|
private String cardNumber2; |
|
|
|
|
|
|
|
// 交易日期 |
|
|
|
@ExcelProperty("交易日期") |
|
|
|
private String transDate; |
|
|
@ -43,7 +46,7 @@ public class CIBStatementEntity { |
|
|
|
/** |
|
|
|
* 1为+,0为- |
|
|
|
*/ |
|
|
|
@ExcelProperty("借贷标记") |
|
|
|
@ExcelProperty({"借贷标记","借贷标志"}) |
|
|
|
private String loanFlag; |
|
|
|
|
|
|
|
// 收入金额 |
|
|
@ -55,21 +58,22 @@ public class CIBStatementEntity { |
|
|
|
private String balance; |
|
|
|
|
|
|
|
// 对方账号 |
|
|
|
@ExcelProperty("对方账户代号") |
|
|
|
@ExcelProperty({"对方账户代号","对手账号"}) |
|
|
|
private String counterpartyAccount; |
|
|
|
|
|
|
|
@ExcelProperty("对方客户名称") |
|
|
|
@ExcelProperty({"对方客户名称","对手户名"}) |
|
|
|
private String counterpartyName; |
|
|
|
|
|
|
|
@ExcelProperty("对方行名") |
|
|
|
@ExcelProperty({"对方行名","对手开户行"}) |
|
|
|
private String counterpartyBankName; |
|
|
|
|
|
|
|
@ExcelProperty("摘要说明") |
|
|
|
@ExcelProperty({"摘要说明","摘要描述"}) |
|
|
|
private String summary; |
|
|
|
|
|
|
|
@ExcelProperty("用途") |
|
|
|
private String transRemark; |
|
|
|
|
|
|
|
@ExcelIgnore |
|
|
|
private String caseId; |
|
|
|
|
|
|
|
@ExcelIgnore |
|
|
|