ChatGptUserView.java 797 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.cyksj.model.views;
  2. import lombok.Builder;
  3. import lombok.Data;
  4. import java.util.Date;
  5. /**
  6. * @author chan
  7. * @date 2024/4/10 11:21
  8. */
  9. @Data
  10. @Builder
  11. public class ChatGptUserView {
  12. /**
  13. * 规格名称
  14. */
  15. private String skuName;
  16. /**
  17. * 过期时间
  18. */
  19. private Date expireTime;
  20. /**
  21. * 限制时间
  22. */
  23. private Long limitTime;
  24. /**
  25. * 限制次数
  26. */
  27. private Integer limitNum;
  28. /**
  29. * 使用次数
  30. */
  31. private Long use;
  32. /**
  33. * 是否可升级套餐
  34. */
  35. private Boolean upgrade;
  36. /**
  37. * 原订单id
  38. */
  39. private Long orderId;
  40. private Long goodsId;
  41. /**
  42. * 规格
  43. */
  44. private Long skuId;
  45. /**
  46. * 月份
  47. */
  48. private Integer months;
  49. }