cn.authing.sdk.java.dto.UserPermissionResourceDto 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;
import cn.authing.sdk.java.dto.DataResourceActionListDto;
public class UserPermissionResourceDto {
/**
* 数据策略下所授权的数据资源 Code
*/
@JsonProperty("resourceCode")
private String resourceCode;
/**
* 数据资源权限操作列表
*/
@JsonProperty("actionList")
private List actionList;
public String getResourceCode() {
return resourceCode;
}
public void setResourceCode(String resourceCode) {
this.resourceCode = resourceCode;
}
public List getActionList() {
return actionList;
}
public void setActionList(List actionList) {
this.actionList = actionList;
}
}