cn.authing.sdk.java.dto.RowDto 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.CellDto;
public class RowDto {
/**
* 行 id
*/
@JsonProperty("rowId")
private String rowId;
/**
* 单元格列表
*/
@JsonProperty("cellList")
private List cellList;
public String getRowId() {
return rowId;
}
public void setRowId(String rowId) {
this.rowId = rowId;
}
public List getCellList() {
return cellList;
}
public void setCellList(List cellList) {
this.cellList = cellList;
}
}