CellRecord
package com.cj.ExcelSql;
public class CellRecord {
public String id;
public String superid;
public int col;
public int childIndex=1;
public String value;
public CellRecord() {
super();
}
public CellRecord(String id, String superid, int col) {
super();
this.id = id;
this.superid = superid;
this.col = col;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getSuperid() {
return superid;
}
public void setSuperid(String superid) {
this.superid = superid;
}
public int getCol() {
return col;
}
public void setCol(int col) {
this.col = col;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public int getChildIndex() {
return childIndex;
}
public void setChildIndex(int childIndex) {
this.childIndex = childIndex;
}
}
public class CellRecord {
public String id;
public String superid;
public int col;
public int childIndex=1;
public String value;
public CellRecord() {
super();
}
public CellRecord(String id, String superid, int col) {
super();
this.id = id;
this.superid = superid;
this.col = col;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getSuperid() {
return superid;
}
public void setSuperid(String superid) {
this.superid = superid;
}
public int getCol() {
return col;
}
public void setCol(int col) {
this.col = col;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public int getChildIndex() {
return childIndex;
}
public void setChildIndex(int childIndex) {
this.childIndex = childIndex;
}
}