package com.yanzuoguang.excel; import io.swagger.annotations.ApiModelProperty; import java.util.ArrayList; import java.util.List; /** * 单元格 * * @author 颜佐光 */ public class ExcelDefineRow extends ExcelRowIndex { /** * 高度 */ @ApiModelProperty(notes = "高度") private short height; /** * 单元格 */ @ApiModelProperty(notes = "单元格") private List cells = new ArrayList<>(); public short getHeight() { return height; } public void setHeight(short height) { this.height = height; } public List getCells() { return cells; } public void setCells(List cells) { this.cells = cells; } }