青羊经侦大队-数据平台
安瑾然
2022-07-12 405d0d6a560e9a4ce6dbf5457a677a010d0cfeb1
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
package com.example.jz.modle.entity;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 群表
(Group)实体类
 *
 * @author makejava
 * @since 2022-07-12 16:50:59
 */
public class Group implements Serializable {
    private static final long serialVersionUID = 208063400600909704L;
    /**
     * 群名称
     */
    private String groupName;
    /**
     * 群修改时间
     */
    private Date updateTime;
    /**
     * 群公告id
     */
    private Integer groupAnnouncementId;
    /**
     * 群 id
     */
    private Integer id;
    /**
     * 创建人id
     */
    private Integer userId;
    /**
     * 群创建时间
     */
    private Date ctime;
 
 
    public String getGroupName() {
        return groupName;
    }
 
    public void setGroupName(String groupName) {
        this.groupName = groupName;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public Integer getGroupAnnouncementId() {
        return groupAnnouncementId;
    }
 
    public void setGroupAnnouncementId(Integer groupAnnouncementId) {
        this.groupAnnouncementId = groupAnnouncementId;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getUserId() {
        return userId;
    }
 
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
 
    public Date getCtime() {
        return ctime;
    }
 
    public void setCtime(Date ctime) {
        this.ctime = ctime;
    }
 
}