cn.authing.sdk.java.dto.GetAllRowDto 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;
import cn.authing.sdk.java.dto.Condition;
public class GetAllRowDto {
/**
* 功能 id
*/
@JsonProperty("modelId")
private String modelId;
/**
* 多个搜索条件的关系:
* - and: 且
* - or: 或
*
*/
@JsonProperty("conjunction")
private String conjunction;
/**
* 搜索条件
*/
@JsonProperty("conditions")
private List conditions;
public String getModelId() {
return modelId;
}
public void setModelId(String modelId) {
this.modelId = modelId;
}
public String getConjunction() {
return conjunction;
}
public void setConjunction(String conjunction) {
this.conjunction = conjunction;
}
public List getConditions() {
return conditions;
}
public void setConditions(List conditions) {
this.conditions = conditions;
}
}