All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.authing.sdk.java.dto.TreeAuthBo Maven / Gradle / Ivy

There is a newer version: 3.1.10
Show newest version
package cn.authing.sdk.java.dto;

import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;


public class TreeAuthBo {
    /**
     * 树资源节点路径
     */
    @JsonProperty("nodePath")
    private String nodePath;
    /**
     * 树资源节点名称
     */
    @JsonProperty("nodeName")
    private String nodeName;
    /**
     * 树资源节点操作权限列表
     */
    @JsonProperty("nodeActions")
    private List nodeActions;
    /**
     * 树资源节点 Value
     */
    @JsonProperty("nodeValue")
    private String nodeValue;

    public String getNodePath() {
        return nodePath;
    }
    public void setNodePath(String nodePath) {
        this.nodePath = nodePath;
    }

    public String getNodeName() {
        return nodeName;
    }
    public void setNodeName(String nodeName) {
        this.nodeName = nodeName;
    }

    public List getNodeActions() {
        return nodeActions;
    }
    public void setNodeActions(List nodeActions) {
        this.nodeActions = nodeActions;
    }

    public String getNodeValue() {
        return nodeValue;
    }
    public void setNodeValue(String nodeValue) {
        this.nodeValue = nodeValue;
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy