MidjourneyUser.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package com.cyksj.model.entity;
  2. /**
  3. * @author zwhui
  4. * @date 2024/4/16 17:01
  5. */
  6. import com.baomidou.mybatisplus.annotation.TableField;
  7. import com.ejlchina.searcher.bean.DbIgnore;
  8. import com.ejlchina.searcher.bean.SearchBean;
  9. import lombok.Data;
  10. import java.util.Date;
  11. @Data
  12. @SearchBean(tables = "midjourney_user")
  13. public class MidjourneyUser extends BaseEntity{
  14. /**
  15. * 名称
  16. */
  17. private String name;
  18. /**
  19. * 头像
  20. */
  21. private String img;
  22. /**
  23. * 用户凭证
  24. */
  25. private String userToken;
  26. /**
  27. * 过期时间
  28. */
  29. private Date expireTime;
  30. /**
  31. * 车票id
  32. */
  33. private Long relationId;
  34. /**
  35. * mj fast次数
  36. */
  37. private Integer mjFastNum;
  38. /**
  39. * mj 加量包次数
  40. */
  41. private Integer mjUpgradeNum;
  42. /**
  43. * mj relax次数
  44. */
  45. private Integer mjRelaxNum;
  46. /**
  47. * 当前模式 1:fast 2:relax
  48. */
  49. private Integer mode;
  50. private Boolean isCar;
  51. /**
  52. * 车票类型 2试用
  53. */
  54. @DbIgnore
  55. @TableField(exist = false)
  56. private Integer aqType;
  57. /**
  58. * 是否是VIP
  59. */
  60. private Boolean isVip;
  61. }