com.github.rrsunhome.excelsql.parser.CellDefinition Maven / Gradle / Ivy
package com.github.rrsunhome.excelsql.parser;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
/**
* @author : wangqijia
* create at: 2021/10/26 下午4:53
*/
@Setter
@Getter
@ToString
public class CellDefinition {
private int cellIndex;
private String cellValue;
public CellDefinition(int cellIndex, String cellValue) {
this.cellIndex = cellIndex;
this.cellValue = cellValue;
}
}