package com.lunhan.xxx.common.model;
|
|
public class ExcelDiscernCell {
|
private int cellIndex;
|
private String name;
|
private String value;
|
|
public int getCellIndex() {
|
return cellIndex;
|
}
|
|
public void setCellIndex(int cellIndex) {
|
this.cellIndex = cellIndex;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
}
|