001package top.cenze.utils.pojo;
002
003import com.fasterxml.jackson.annotation.JsonInclude;
004import io.swagger.annotations.ApiModel;
005import io.swagger.annotations.ApiModelProperty;
006import lombok.Data;
007
008/**
009 * @desc: excel字段信息
010 * @author: chengze
011 * @createByDate: 2023/11/21 11:25
012 */
013@ApiModel(value = "excel字段信息")
014@Data
015@JsonInclude(JsonInclude.Include.NON_NULL)
016public class ExcelFieldInfo {
017    @ApiModelProperty(value = "字段名")
018    private String fieldName;
019
020    @ApiModelProperty(value = "单元格")
021    private String cell;
022
023    @ApiModelProperty(value = "行索引")
024    private Integer rowIdx;
025
026    @ApiModelProperty(value = "列索引")
027    private Integer colIdx;
028}