cn.authing.sdk.java.dto.DataResourceActionListDto 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 DataResourceActionListDto {
/**
* 节点路径
*/
@JsonProperty("nodePath")
private String nodePath;
/**
* 数据资源的节点权限列表
*/
@JsonProperty("nodeActions")
private List nodeActions;
public String getNodePath() {
return nodePath;
}
public void setNodePath(String nodePath) {
this.nodePath = nodePath;
}
public List getNodeActions() {
return nodeActions;
}
public void setNodeActions(List nodeActions) {
this.nodeActions = nodeActions;
}
}