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;
}
   


}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章