| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- 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 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;
- private String remark;
- /**
- * midJourney 登录安全码
- */
- private String verifyCodes;
- /**
- * 密保
- */
- private String secret;
- /**
- * gpt API 密钥
- */
- private String apiSecret;
- }
|