AdminUserCount.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. package com.goafanti.common.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * admin_user_count
  6. * @author
  7. */
  8. public class AdminUserCount implements Serializable {
  9. private Integer id;
  10. /**
  11. * 管理员编号
  12. */
  13. private String aid;
  14. /**
  15. * 私有数
  16. */
  17. private Integer privateCount;
  18. /**
  19. * 签单数
  20. */
  21. private Integer signCount;
  22. /**
  23. * 渠道数
  24. */
  25. private Integer channelCount;
  26. /**
  27. * 公出数
  28. */
  29. private Integer publicReleaseCount;
  30. /**
  31. * 跟进数
  32. */
  33. private Integer followCount;
  34. /**
  35. * 订单数
  36. */
  37. private Integer orderCount;
  38. /**
  39. * 日期
  40. */
  41. private Date dateTime;
  42. /**
  43. * 创建时间
  44. */
  45. private Date createTime;
  46. private static final long serialVersionUID = 1L;
  47. public Integer getId() {
  48. return id;
  49. }
  50. public void setId(Integer id) {
  51. this.id = id;
  52. }
  53. public String getAid() {
  54. return aid;
  55. }
  56. public void setAid(String aid) {
  57. this.aid = aid;
  58. }
  59. public Integer getPrivateCount() {
  60. return privateCount;
  61. }
  62. public void setPrivateCount(Integer privateCount) {
  63. this.privateCount = privateCount;
  64. }
  65. public Integer getSignCount() {
  66. return signCount;
  67. }
  68. public void setSignCount(Integer signCount) {
  69. this.signCount = signCount;
  70. }
  71. public Integer getChannelCount() {
  72. return channelCount;
  73. }
  74. public void setChannelCount(Integer channelCount) {
  75. this.channelCount = channelCount;
  76. }
  77. public Integer getPublicReleaseCount() {
  78. return publicReleaseCount;
  79. }
  80. public void setPublicReleaseCount(Integer publicReleaseCount) {
  81. this.publicReleaseCount = publicReleaseCount;
  82. }
  83. public Integer getFollowCount() {
  84. return followCount;
  85. }
  86. public void setFollowCount(Integer followCount) {
  87. this.followCount = followCount;
  88. }
  89. public Integer getOrderCount() {
  90. return orderCount;
  91. }
  92. public void setOrderCount(Integer orderCount) {
  93. this.orderCount = orderCount;
  94. }
  95. public Date getDateTime() {
  96. return dateTime;
  97. }
  98. public void setDateTime(Date dateTime) {
  99. this.dateTime = dateTime;
  100. }
  101. public Date getCreateTime() {
  102. return createTime;
  103. }
  104. public void setCreateTime(Date createTime) {
  105. this.createTime = createTime;
  106. }
  107. }