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

cn.authing.sdk.java.dto.CheckUserSameLevelPermissionRespDto 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 CheckUserSameLevelPermissionRespDto {
    /**
     * 数据资源权限操作
     */
    @JsonProperty("action")
    private String action;
    /**
     * 树资源节点code
     */
    @JsonProperty("resourceNodeCode")
    private String resourceNodeCode;
    /**
     * 是否拥有 action 权限
     */
    @JsonProperty("enabled")
    private Boolean enabled;

    public String getAction() {
        return action;
    }
    public void setAction(String action) {
        this.action = action;
    }

    public String getResourceNodeCode() {
        return resourceNodeCode;
    }
    public void setResourceNodeCode(String resourceNodeCode) {
        this.resourceNodeCode = resourceNodeCode;
    }

    public Boolean getEnabled() {
        return enabled;
    }
    public void setEnabled(Boolean enabled) {
        this.enabled = enabled;
    }



}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy