ExcelPrepareAccountData.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package com.cyksj.model.excel;
  2. import com.alibaba.excel.annotation.ExcelProperty;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. @Getter
  6. @Setter
  7. public class ExcelPrepareAccountData {
  8. @ExcelProperty("账号")
  9. private String account;
  10. /**
  11. * 密码
  12. */
  13. @ExcelProperty("密码")
  14. private String password;
  15. /**
  16. * 邮箱密码
  17. */
  18. @ExcelProperty("邮箱密码")
  19. private String gptEmailPwd;
  20. /**
  21. * 银行卡号
  22. */
  23. @ExcelProperty("银行卡号")
  24. private String bankCard;
  25. /**
  26. * 到期日期
  27. */
  28. @ExcelProperty("到期日期")
  29. private String expiryTime;
  30. /**
  31. * 辅助邮箱
  32. */
  33. @ExcelProperty("辅助邮箱")
  34. private String secondEmail;
  35. /**
  36. * 辅助邮箱
  37. */
  38. @ExcelProperty("关联邮箱")
  39. private String relateEmail;
  40. /**
  41. * 是否外部采购
  42. */
  43. @ExcelProperty("外部采购")
  44. private String outsidePurchaseStr;
  45. @ExcelProperty("同户更新装置")
  46. private String verifyLink;
  47. /**
  48. * 邮箱授权码
  49. */
  50. @ExcelProperty("邮箱授权码")
  51. private String emailAuthCode;
  52. @ExcelProperty("备注")
  53. private String remark;
  54. }