All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.rrsunhome.excelsql.parser.CellDefinition Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy