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

cn.authing.sdk.java.dto.DataResourceActionListDto 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 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;
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy