cn.authing.sdk.java.dto.GetRowBatchDto 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 GetRowBatchDto {
/**
* 行 id 列表
*/
@JsonProperty("rowIds")
private List rowIds;
/**
* 功能 id
*/
@JsonProperty("modelId")
private String modelId;
public List getRowIds() {
return rowIds;
}
public void setRowIds(List rowIds) {
this.rowIds = rowIds;
}
public String getModelId() {
return modelId;
}
public void setModelId(String modelId) {
this.modelId = modelId;
}
}