admin
2022-03-28 2f5935ed11672046c37f733d855214f6147b4b58
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
package com.yeshi.fanli.entity.bus.user.cloud;
 
import java.util.Date;
 
import org.yeshi.utils.generater.mybatis.Column;
import org.yeshi.utils.generater.mybatis.Table;
 
/**
 * 用户云发单-群
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_user_cloud_group")
public class UserCloudGroup {
 
    public final static int TYPE_CIRCLE = 1; // 朋友圈
    public final static int TYPE_GROUP = 2; // 微信群
 
    @Column(name = "ucg_id")
    private Long id;
 
    @Column(name = "ucg_uid")
    private Long uid;
 
    @Column(name = "ucg_type")
    private Integer type;
 
    @Column(name = "ucg_state")
    private Boolean state; // 状态
 
    @Column(name = "ucg_group_id")
    private String groupId; // 群id
 
    @Column(name = "ucg_group_name")
    private String groupName; // 群名称
 
    @Column(name = "ucg_create_time")
    private Date createTime;
 
    @Column(name = "ucg_update_time")
    private Date updateTime;
 
    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 Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public Boolean getState() {
        return state;
    }
 
    public void setState(Boolean state) {
        this.state = state;
    }
 
    public String getGroupName() {
        return groupName;
    }
 
    public void setGroupName(String groupName) {
        this.groupName = groupName;
    }
 
    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 String getGroupId() {
        return groupId;
    }
 
    public void setGroupId(String groupId) {
        this.groupId = groupId;
    }
    
}