LumaUser.java 946 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 lombok.Data;
  9. import java.util.Date;
  10. @Data
  11. public class LumaUser extends BaseEntity{
  12. /**
  13. * 名称
  14. */
  15. private String name;
  16. /**
  17. * 头像
  18. */
  19. private String img;
  20. /**
  21. * 用户凭证
  22. */
  23. private String userToken;
  24. /**
  25. * 过期时间
  26. */
  27. private Date expireTime;
  28. /**
  29. * 车票id
  30. */
  31. private Long relationId;
  32. /**
  33. * 可用次数
  34. */
  35. private Integer num;
  36. /**
  37. * luma该规格次数
  38. */
  39. @DbIgnore
  40. @TableField(exist = false)
  41. private Integer lumaNum;
  42. /**
  43. * 车票类型 2试用
  44. */
  45. @DbIgnore
  46. @TableField(exist = false)
  47. private Integer aqType;
  48. /**
  49. * 是否是VIP
  50. */
  51. private Boolean isVip;
  52. }