UserPersonalView.java 681 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.cyksj.model.views;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. import java.math.BigDecimal;
  5. /*
  6. *项目名: netflix
  7. *文件名: UserPersonalView
  8. *创建者: JavaZou
  9. *创建时间:2022/12/29 15:46
  10. */
  11. @Getter
  12. @Setter
  13. public class UserPersonalView {
  14. /**
  15. * 可用优惠券数量
  16. */
  17. private Integer numOfCoupons;
  18. /**
  19. * 车票数量
  20. */
  21. private Integer numOfTickets;
  22. /**
  23. * 我的积分
  24. */
  25. private BigDecimal activePoints;
  26. /**
  27. * 我的余额
  28. */
  29. private BigDecimal balance;
  30. /**
  31. * 推广积分
  32. */
  33. private BigDecimal popularizePoints;
  34. /**
  35. * 是否有待支付订单 true有
  36. */
  37. private Boolean isNoPayment;
  38. private String phone;
  39. }