| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.cyksj.model.excel;
- import com.alibaba.excel.annotation.ExcelProperty;
- import lombok.Getter;
- import lombok.Setter;
- @Getter
- @Setter
- public class ExcelPrepareAccountData {
- @ExcelProperty("账号")
- private String account;
- /**
- * 省份
- */
- @ExcelProperty("密码")
- private String password;
- /**
- * 银行卡号
- */
- @ExcelProperty("银行卡号")
- private String bankCard;
- /**
- * 到期日期
- */
- @ExcelProperty("到期日期")
- private String expiryTime;
- /**
- * 辅助邮箱
- */
- @ExcelProperty("辅助邮箱")
- private String secondEmail;
- /**
- * 辅助邮箱
- */
- @ExcelProperty("关联邮箱")
- private String relateEmail;
- @ExcelProperty("验证链接")
- private String verifyLink;
- }
|