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;
|
}
|
}
|