
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 weixin4j Show documentation
Show all versions of weixin4j Show documentation
微信和钉钉开发SDK,主要提供微信、企业微信、钉钉的JAVA封装,降低集成难度,让API变简单
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