cn.authing.sdk.java.dto.RemoveRowDto 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 RemoveRowDto {
/**
* 行 id
*/
@JsonProperty("rowIdList")
private List rowIdList;
/**
* 功能 id
*/
@JsonProperty("modelId")
private String modelId;
/**
* 如果当前行有子节点,是否递归删除,默认为 false。当为 false 时,如果有子节点,会提示错误。
*/
@JsonProperty("recursive")
private Boolean recursive;
public List getRowIdList() {
return rowIdList;
}
public void setRowIdList(List rowIdList) {
this.rowIdList = rowIdList;
}
public String getModelId() {
return modelId;
}
public void setModelId(String modelId) {
this.modelId = modelId;
}
public Boolean getRecursive() {
return recursive;
}
public void setRecursive(Boolean recursive) {
this.recursive = recursive;
}
}