cn.authing.sdk.java.dto.ActionAuth 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 ActionAuth {
/**
* 数据策略授权用户 ID 列表
*/
@JsonProperty("userIds")
private List userIds;
/**
* 数据资源权限操作
*/
@JsonProperty("action")
private String action;
public List getUserIds() {
return userIds;
}
public void setUserIds(List userIds) {
this.userIds = userIds;
}
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
}