kimi
2020-04-02 4ef5ed0e06363716579850cb924f3658a3a2f079
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
package com.highdatas.mdm.entity;
 
/**
 * @author kimi
 * @description
 * @date 2020-04-02 10:47
 */
 
 
public class TUserGroup {
 
    private String groupId;
    private String groupName;
    private String groupDesc;
 
    public String getGroupId() {
        return groupId;
 
    }
 
    public TUserGroup setGroupId(String groupId) {
        this.groupId = groupId;
        return this;
    }
 
    public String getGroupName() {
        return groupName;
    }
 
    public TUserGroup setGroupName(String groupName) {
        this.groupName = groupName;
        return this;
 
    }
 
    public String getGroupDesc() {
        return groupDesc;
    }
 
    public TUserGroup setGroupDesc(String groupDesc) {
        this.groupDesc = groupDesc;
        return this;
    }
}