ExpiredAccountDataView.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. package com.cyksj.model.views;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. import java.util.Date;
  5. /*
  6. *项目名: netflix
  7. *文件名: ExpiredAccountStatisticsData
  8. *创建者: JavaZou
  9. *创建时间:2022/10/24 14:35
  10. */
  11. @Getter
  12. @Setter
  13. public class ExpiredAccountDataView {
  14. /**
  15. * 关联组id
  16. */
  17. private Integer relationId;
  18. /**
  19. * 所属平台
  20. */
  21. private String platform;
  22. /**
  23. * 主账号
  24. */
  25. private String account;
  26. /**
  27. * 主账号密码
  28. */
  29. private String password;
  30. /**
  31. * 类型
  32. */
  33. private String specVal;
  34. /**
  35. * 用户id
  36. */
  37. private Integer userId;
  38. /**
  39. * 用户账号
  40. */
  41. private String userAccount;
  42. /**
  43. * 用户头像
  44. */
  45. private String img;
  46. /**
  47. * 用户昵称
  48. */
  49. private String nickname;
  50. /**
  51. * 购买时间
  52. */
  53. private Date payTime;
  54. /**
  55. * 车票开始时间
  56. */
  57. private Date startTime;
  58. /**
  59. * 过期时间
  60. */
  61. private Date expiryTime;
  62. /**
  63. * 微信列表是否有
  64. */
  65. private Boolean isWxFriend;
  66. /**
  67. * 用户续费意愿
  68. */
  69. private Boolean renewStatus;
  70. /**
  71. * 是否处理过
  72. */
  73. private Boolean isHandle;
  74. /**
  75. * 国区id
  76. */
  77. private String cnAccount;
  78. /**
  79. * 美区id
  80. */
  81. private String usAccount;
  82. /**
  83. * 处理状态
  84. */
  85. private Boolean status;
  86. /**
  87. * 是否加入了企业微信 true是
  88. */
  89. private Boolean isCorpWx;
  90. /**
  91. * 客服
  92. */
  93. private String customerService;
  94. }