cn.authing.sdk.java.dto.GetUserPermissionListDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authing-java-sdk Show documentation
Show all versions of authing-java-sdk Show documentation
java backend sdk for authing
package cn.authing.sdk.java.dto;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class GetUserPermissionListDto {
/**
* 用户 ID 列表
*/
@JsonProperty("userIds")
private List userIds;
/**
* 权限空间 Code 列表
*/
@JsonProperty("namespaceCodes")
private List namespaceCodes;
public List getUserIds() {
return userIds;
}
public void setUserIds(List userIds) {
this.userIds = userIds;
}
public List getNamespaceCodes() {
return namespaceCodes;
}
public void setNamespaceCodes(List namespaceCodes) {
this.namespaceCodes = namespaceCodes;
}
}