| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- package com.goafanti.common.model;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * admin_user_count
- * @author
- */
- public class AdminUserCount implements Serializable {
- private Integer id;
- /**
- * 管理员编号
- */
- private String aid;
- /**
- * 私有数
- */
- private Integer privateCount;
- /**
- * 签单数
- */
- private Integer signCount;
- /**
- * 渠道数
- */
- private Integer channelCount;
- /**
- * 公出数
- */
- private Integer publicReleaseCount;
- /**
- * 跟进数
- */
- private Integer followCount;
- /**
- * 订单数
- */
- private Integer orderCount;
- /**
- * 日期
- */
- private Date dateTime;
- /**
- * 创建时间
- */
- private Date createTime;
- private static final long serialVersionUID = 1L;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getAid() {
- return aid;
- }
- public void setAid(String aid) {
- this.aid = aid;
- }
- public Integer getPrivateCount() {
- return privateCount;
- }
- public void setPrivateCount(Integer privateCount) {
- this.privateCount = privateCount;
- }
- public Integer getSignCount() {
- return signCount;
- }
- public void setSignCount(Integer signCount) {
- this.signCount = signCount;
- }
- public Integer getChannelCount() {
- return channelCount;
- }
- public void setChannelCount(Integer channelCount) {
- this.channelCount = channelCount;
- }
- public Integer getPublicReleaseCount() {
- return publicReleaseCount;
- }
- public void setPublicReleaseCount(Integer publicReleaseCount) {
- this.publicReleaseCount = publicReleaseCount;
- }
- public Integer getFollowCount() {
- return followCount;
- }
- public void setFollowCount(Integer followCount) {
- this.followCount = followCount;
- }
- public Integer getOrderCount() {
- return orderCount;
- }
- public void setOrderCount(Integer orderCount) {
- this.orderCount = orderCount;
- }
- public Date getDateTime() {
- return dateTime;
- }
- public void setDateTime(Date dateTime) {
- this.dateTime = dateTime;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- }
|