kimi
2020-05-18 c8aee7b9bfd79cfd741d7e5692520f4f51a31a86
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
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{
 
    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;
    }
}