| | |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import com.mindskip.xzs.utility.excel.ExcelExport; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | |
| | | |
| | | @ExcelProperty("部门名称") |
| | | @ExcelExport("部门名称") |
| | | @ColumnWidth(40) |
| | | private String name; |
| | | |
| | | @ExcelProperty("参考人数") |
| | | @ExcelExport("参考人数") |
| | | @ColumnWidth(20) |
| | | private Integer factPeopleTotal; |
| | | |
| | | @ExcelProperty("参考人数百分比") |
| | | @ExcelExport("参考人数百分比") |
| | | @ColumnWidth(20) |
| | | private BigDecimal referencePercentage; |
| | | |
| | | @ExcelProperty("平均分") |
| | | @ExcelExport("平均分") |
| | | @ColumnWidth(20) |
| | | private BigDecimal averageScore; |
| | | |
| | | @ExcelProperty("总考试次数") |
| | | @ExcelExport("总考试次数") |
| | | @ColumnWidth(20) |
| | | private Integer examTotal; |
| | | |
| | | } |