3
13693261870
2022-09-16 63ba114e70e380442fcbed4a5157ee52c9491216
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
package com.landtool.lanbase.modules.org.entity;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @author zimao.guo
 * @Description: TODO(群组表)
 * @date 2018-03-14 15:22:21
 */
public class OrgGroup implements Serializable {
    
    //群组主键ID
    private Long groupId;
    //群组名称
    private String groupName;
    //应用程序ID
    private Long appId;
    //群组描述
    private String description;
    //记录添加人ID
    private Long rCreateUser;
    //记录添加时间
    private Date rCreateDate;
    
    //所关联的群组总用户数
    private Long totalOfUsers;
    
    //所关联的角色总数
    private Long totalOfRoles;
    
    //应用程序名称
    private String appfullname;
 
    /**
     * 设置:群组主键ID
     */
    public void setGroupId(Long groupId) {
        this.groupId = groupId;
    }
    /**
     * 获取:群组主键ID
     */
    public Long getGroupId() {
        return groupId;
    }
    /**
     * 设置:群组名称
     */
    public void setGroupName(String groupName) {
        this.groupName = groupName;
    }
    /**
     * 获取:群组名称
     */
    public String getGroupName() {
        return groupName;
    }
    /**
     * 设置:应用程序ID
     */
    public void setAppId(Long appId) {
        this.appId = appId;
    }
    /**
     * 获取:应用程序ID
     */
    public Long getAppId() {
        return appId;
    }
    /**
     * 设置:群组描述
     */
    public void setDescription(String description) {
        this.description = description;
    }
    /**
     * 获取:群组描述
     */
    public String getDescription() {
        return description;
    }
    /**
     * 设置:记录添加人ID
     */
    public void setrCreateUser(Long rCreateUser) {
        this.rCreateUser = rCreateUser;
    }
    /**
     * 获取:记录添加人ID
     */
    public Long getrCreateUser() {
        return rCreateUser;
    }
    /**
     * 设置:记录添加时间
     */
    public void setrCreateDate(Date rCreateDate) {
        this.rCreateDate = rCreateDate;
    }
    /**
     * 获取:记录添加时间
     */
    public Date getrCreateDate() {
        return rCreateDate;
    }
    public Long getTotalOfUsers() {
        return totalOfUsers;
    }
    public void setTotalOfUsers(Long totalOfUsers) {
        this.totalOfUsers = totalOfUsers;
    }
    public String getAppfullname() {
        return appfullname;
    }
    public void setAppfullname(String appfullname) {
        this.appfullname = appfullname;
    }
    public Long getTotalOfRoles() {
        return totalOfRoles;
    }
    public void setTotalOfRoles(Long totalOfRoles) {
        this.totalOfRoles = totalOfRoles;
    }
}