Account.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 Long goodsId;
  18. private String bankCard;
  19. @TableField(exist = false)
  20. private Long skuId;
  21. private Date startTime;
  22. private Date expiryTime;
  23. private BigDecimal amount;
  24. /**
  25. * 国区id
  26. */
  27. private String cnAccount;
  28. /**
  29. * 美区id
  30. */
  31. private String usAccount;
  32. /**
  33. * 客服id
  34. */
  35. private Long customerServiceId;
  36. /**
  37. * chatGpt apiKey
  38. */
  39. private String apiKey;
  40. private String remark;
  41. /**
  42. * midJourney 登录安全码
  43. */
  44. private String verifyCodes;
  45. /**
  46. * 密保
  47. */
  48. private String secret;
  49. /**
  50. * gpt API 密钥
  51. */
  52. private String apiSecret;
  53. }