UserPersonalView.java 750 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. /**
  39. * 礼品卡可用数量
  40. */
  41. private Integer numOfGiftCard;
  42. private String phone;
  43. }