| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- package com.cyksj.model.entity;
- import com.baomidou.mybatisplus.annotation.TableField;
- import lombok.Getter;
- import lombok.Setter;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * @author chan
- * @date 2022/9/27 6:17 PM
- */
- @Getter
- @Setter
- public class Account extends BaseEntity {
- private String title;
- private String account;
- private String password;
- private Boolean isMonth;
- private Long goodsId;
- private String bankCard;
- @TableField(exist = false)
- private Long skuId;
- private Date startTime;
- private Date expiryTime;
- private BigDecimal amount;
- /**
- * 国区id
- */
- private String cnAccount;
- /**
- * 美区id
- */
- private String usAccount;
- /**
- * 客服id
- */
- private Long customerServiceId;
- /**
- * chatGpt apiKey
- */
- private String apiKey;
- /**
- * chatGpt 邮箱密码
- */
- private String gptEmailPwd;
- /**
- * 辅助邮箱
- */
- private String email;
- private String remark;
- /**
- * midJourney 登录安全码
- */
- private String verifyCodes;
- /**
- * 密保
- */
- private String secret;
- /**
- * gpt API 密钥
- */
- private String apiSecret;
- /**
- * 账号是否被弃用
- */
- private Boolean isAbandon;
- /**
- * gpt accesToken
- */
- private String gptRefreshToken;
- /**
- * 备用账号类型sku_ids
- */
- private String preSkuIds;
- /**
- * 类型 1通用 2备用 3临时账号
- */
- private Integer type;
- /**
- * 账号是否禁用
- */
- private Boolean isDisable;
- /**
- * cookie nf
- */
- private String cookie;
- /**
- * 关联邮箱 收取邮件
- */
- private String relateEmail;
- /**
- * 同户验证链接
- */
- private String verifyLink;
- /**
- * 是否外部采购
- */
- private Boolean outsidePurchase;
- }
|