
com.jeecg.dingtalk.api.user.vo.UserRole Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeewx-api Show documentation
Show all versions of jeewx-api Show documentation
JEEWX-API(微信极速SDK、同时支持微信公众号\企业微信\支付窗\小程序\微博).
The newest version!
package com.jeecg.dingtalk.api.user.vo;
/**
* 角色
*
* @author sunjianlei
*/
public class UserRole {
/**
* 角色ID
*/
private Number id;
/**
* 角色名称
*/
private String name;
/**
* 角色组名称
*/
private String group_name;
public Number getId() {
return id;
}
public UserRole setId(Number id) {
this.id = id;
return this;
}
public String getName() {
return name;
}
public UserRole setName(String name) {
this.name = name;
return this;
}
public String getGroup_name() {
return group_name;
}
public UserRole setGroup_name(String group_name) {
this.group_name = group_name;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy