QDIIRowBean.java
420 Bytes
package com.huaheng.tab.bean;
import java.util.List;
/**
* Created by youjie on 2020/9/22
*/
public class QDIIRowBean {
private int id;
private QDIIBean cell;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public QDIIBean getCell() {
return cell;
}
public void setCell(QDIIBean cell) {
this.cell = cell;
}
}