001package top.cenze.utils.pojo;
002
003import com.fasterxml.jackson.annotation.JsonInclude;
004import lombok.Data;
005
006import java.util.List;
007
008/**
009 * @desc: excel映射Loop数据集合
010 * @author: chengze
011 * @createByDate: 2023/10/11 8:51
012 */
013@Data
014@JsonInclude(JsonInclude.Include.NON_NULL)
015public class ExcelMappingLoop {
016//    @ApiModelProperty(value = "映射对象全类名(xx.xxx.Xxxx)")
017    private String varType;
018
019//    @ApiModelProperty(value = "最小行索引值(有效起始值0)")
020    private Integer minRow;
021
022//    @ApiModelProperty(value = "最大行索引值(有效起始值0)")
023    private Integer maxRow;
024
025//    @ApiModelProperty(value = "数据对象集合")
026    private List<ExcelMappingObject> lstData;
027}