MiniExcel icon indicating copy to clipboard operation
MiniExcel copied to clipboard

Support Column width, row height attribute

Open shps951023 opened this issue 4 years ago • 0 comments

@Data
@ContentRowHeight(10)
@HeadRowHeight(20)
@ColumnWidth(25)
public class WidthAndHeightData {
    @ExcelProperty("字符串标题")
    private String string;
    @ExcelProperty("日期标题")
    private Date date;
    /**
     * 宽度为50
     */
    @ColumnWidth(50)
    @ExcelProperty("数字标题")
    private Double doubleData;
}

shps951023 avatar Apr 13 '21 08:04 shps951023