yujian
2020-06-03 80e39e3a40283521fc732c930aa51d9bece7c146
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
package com.yeshi.fanli.entity.bus.user.cloud;
 
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
/**
 * 用户云发单
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_user_cloud")
public class UserCloud {
 
    @Column(name = "uc_id")
    private Long id;
 
    @Column(name = "uc_uid")
    private Long uid;
 
    @Column(name = "uc_order_id")
    private Long orderId;
 
    @Column(name = "uc_group_num")
    private Integer groupNum; // 群数量
    
    @Column(name = "uc_start_time")
    private Date startTime; // 开始时间
 
    @Column(name = "uc_end_time")
    private Date endTime; // 结束时间
 
    @Column(name = "uc_wx_id")
    private String wxId; // 微信号
 
    @Column(name = "uc_wx_name")
    private String wxName; // 微信昵称
 
    @Column(name = "uc_wx_portrait")
    private String wxPortrait;// 微信头像
 
    @Column(name = "uc_robot_id")
    private Integer robotId; // 机器人id
 
    @Column(name = "uc_robot_type")
    private Integer robotType; // 机器人类型
 
    @Column(name = "uc_create_time")
    private Date createTime;
 
    @Column(name = "uc_update_time")
    private Date updateTime;
 
    private String nickName;// 昵称
    private String portrait;// 头像
    
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public Long getOrderId() {
        return orderId;
    }
 
    public void setOrderId(Long orderId) {
        this.orderId = orderId;
    }
 
    public Date getStartTime() {
        return startTime;
    }
 
    public void setStartTime(Date startTime) {
        this.startTime = startTime;
    }
 
    public Date getEndTime() {
        return endTime;
    }
 
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
 
    public String getWxId() {
        return wxId;
    }
 
    public void setWxId(String wxId) {
        this.wxId = wxId;
    }
 
    public String getWxName() {
        return wxName;
    }
 
    public void setWxName(String wxName) {
        this.wxName = wxName;
    }
 
    public String getWxPortrait() {
        return wxPortrait;
    }
 
    public void setWxPortrait(String wxPortrait) {
        this.wxPortrait = wxPortrait;
    }
 
    public Integer getRobotId() {
        return robotId;
    }
 
    public void setRobotId(Integer robotId) {
        this.robotId = robotId;
    }
 
    public Integer getRobotType() {
        return robotType;
    }
 
    public void setRobotType(Integer robotType) {
        this.robotType = robotType;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public Integer getGroupNum() {
        return groupNum;
    }
 
    public void setGroupNum(Integer groupNum) {
        this.groupNum = groupNum;
    }
 
    public String getNickName() {
        return nickName;
    }
 
    public void setNickName(String nickName) {
        this.nickName = nickName;
    }
 
    public String getPortrait() {
        return portrait;
    }
 
    public void setPortrait(String portrait) {
        this.portrait = portrait;
    }
 
}