MidjourneyUser.java 1012 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 relax次数
  40. */
  41. private Integer mjRelaxNum;
  42. /**
  43. * 当前模式 1:fast 2:relax
  44. */
  45. private Integer mode;
  46. /**
  47. * 车票类型 2试用
  48. */
  49. @DbIgnore
  50. @TableField(exist = false)
  51. private Integer aqType;
  52. }