Account.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. package com.cyksj.model.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. import java.math.BigDecimal;
  6. import java.util.Date;
  7. /**
  8. * @author chan
  9. * @date 2022/9/27 6:17 PM
  10. */
  11. @Getter
  12. @Setter
  13. public class Account extends BaseEntity {
  14. private String title;
  15. private String account;
  16. private String password;
  17. private Boolean isMonth;
  18. private Long goodsId;
  19. private String bankCard;
  20. @TableField(exist = false)
  21. private Long skuId;
  22. private Date startTime;
  23. private Date expiryTime;
  24. private BigDecimal amount;
  25. /**
  26. * 国区id
  27. */
  28. private String cnAccount;
  29. /**
  30. * 美区id
  31. */
  32. private String usAccount;
  33. /**
  34. * 客服id
  35. */
  36. private Long customerServiceId;
  37. /**
  38. * chatGpt apiKey
  39. */
  40. private String apiKey;
  41. /**
  42. * chatGpt 邮箱密码
  43. */
  44. private String gptEmailPwd;
  45. /**
  46. * 辅助邮箱
  47. */
  48. private String email;
  49. private String remark;
  50. /**
  51. * midJourney 登录安全码
  52. */
  53. private String verifyCodes;
  54. /**
  55. * 密保
  56. */
  57. private String secret;
  58. /**
  59. * gpt API 密钥
  60. */
  61. private String apiSecret;
  62. /**
  63. * 账号是否被弃用
  64. */
  65. private Boolean isAbandon;
  66. /**
  67. * gpt accesToken
  68. */
  69. private String gptRefreshToken;
  70. /**
  71. * 备用账号类型sku_ids
  72. */
  73. private String preSkuIds;
  74. /**
  75. * 类型 1通用 2备用 3临时账号
  76. */
  77. private Integer type;
  78. /**
  79. * 账号是否禁用
  80. */
  81. private Boolean isDisable;
  82. /**
  83. * cookie nf
  84. */
  85. private String cookie;
  86. /**
  87. * 关联邮箱 收取邮件
  88. */
  89. private String relateEmail;
  90. /**
  91. * 同户验证链接
  92. */
  93. private String verifyLink;
  94. /**
  95. * 是否外部采购
  96. */
  97. private Boolean outsidePurchase;
  98. }