001package top.cenze.utils.pojo; 002 003import com.fasterxml.jackson.annotation.JsonInclude; 004import lombok.Data; 005 006/** 007 * @desc: excel自定义映射 008 * @author: chengze 009 * @createByDate: 2023/10/11 8:51 010 */ 011@Data 012@JsonInclude(JsonInclude.Include.NON_NULL) 013public class ExcelMappingCustom { 014 015 // @ApiModelProperty(value = "行索引值(有效起始值0)") 016 private Integer row; 017 018 // @ApiModelProperty(value = "列索引值(有效起始值0)") 019 private Integer col; 020 021 // @ApiModelProperty(value = "映射内容") 022 private String content; 023}