|
|
@@ -16,22 +16,33 @@ public class HlgPaymentDetailExportOut implements Serializable {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
@Excel(name = "姓名", width = 15)
|
|
|
- private String userName; //姓名
|
|
|
+ private String userName;
|
|
|
|
|
|
@Excel(name = "身份证号", width = 20)
|
|
|
- public String idcardNumber;//身份证号
|
|
|
+ public String idcardNumber;
|
|
|
|
|
|
@Excel(name = "手机号", width = 15)
|
|
|
private String phone;
|
|
|
|
|
|
+ /**
|
|
|
+ * 他行开户行(他行时必填)
|
|
|
+ */
|
|
|
+ @Excel(name = "银行名称", width = 15)
|
|
|
+ private java.lang.String eacbnk;
|
|
|
+ /**
|
|
|
+ * 他行开户地址(他行时必填)
|
|
|
+ */
|
|
|
+ @Excel(name = "开户地", width = 15)
|
|
|
+ private java.lang.String rcveaa;
|
|
|
+
|
|
|
@Excel(name = "银行卡号", width = 20)
|
|
|
- private String cardNumber;//银行卡号
|
|
|
+ private String cardNumber;
|
|
|
|
|
|
|
|
|
@Excel(name = "付款金额", width = 15)
|
|
|
- private Double payment; //金额
|
|
|
+ private Double payment;
|
|
|
|
|
|
- private Integer id;//序号
|
|
|
+ private Integer id;
|
|
|
|
|
|
|
|
|
}
|