kimi
2020-05-27 c007f0ca1785db093d48f4846cda82fe8e955765
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
package com.highdatas.mdm.entity;
 
import com.highdatas.mdm.pojo.MasterAuthorType;
 
/**
 * @author kimi
 * @description
 * @date 2020-04-02 10:47
 */
 
 
public class TUserGroup implements Character{
    /*
     * 用户组id
     * */
    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;
    }
 
    @Override
    public String getId() {
        return groupId;
    }
 
    @Override
    public MasterAuthorType getType() {
        return MasterAuthorType.groupInfo;
    }
}