All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.authing.sdk.java.dto.RowDto Maven / Gradle / Ivy

There is a newer version: 3.1.10
Show newest version
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;
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy