青羊经侦大队-数据平台
安瑾然
2022-07-12 fe55254e84cce4f92062f48fc4d1840dfdfdc02a
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
package com.example.jz.modle.entity;
 
import java.util.Date;
 
import com.baomidou.mybatisplus.extension.activerecord.Model;
 
import java.io.Serializable;
 
/**
 * 群表
 * (Group)表实体类
 *
 * @author makejava
 * @since 2022-07-11 16:35:57
 */
@SuppressWarnings("serial")
public class Group extends Model<Group> {
    //群 id
    private Integer groupId;
    //群名称
    private String groupName;
    //群创建时间
    private Date createTime;
    //群修改时间
    private Date updateTime;
    //群公告id
    private Integer groupAnnouncementId;
 
 
    public Integer getGroupId() {
        return groupId;
    }
 
    public void setGroupId(Integer groupId) {
        this.groupId = groupId;
    }
 
    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 Integer getGroupAnnouncementId() {
        return groupAnnouncementId;
    }
 
    public void setGroupAnnouncementId(Integer groupAnnouncementId) {
        this.groupAnnouncementId = groupAnnouncementId;
    }
 
    /**
     * 获取主键值
     *
     * @return 主键值
     */
    @Override
    protected Serializable pkVal() {
        return this.groupId;
    }
}