RowBean.java
392 Bytes
package com.huaheng.tab.bean;
/**
* Created by youjie on 2020/9/15
*/
public class RowBean {
private int id;
private CellBean cell;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public CellBean getCell() {
return cell;
}
public void setCell(CellBean cell) {
this.cell = cell;
}
}