| | |
| | | package com.mindskip.xzs.domain.vo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import com.mindskip.xzs.utility.excel.ExcelExport; |
| | | import lombok.Data; |
| | | |
| | |
| | | @Data |
| | | public class PaperExcelVO implements Serializable { |
| | | |
| | | @ExcelProperty("姓名") |
| | | @ExcelExport("姓名") |
| | | @ColumnWidth(50) |
| | | private String name; |
| | | |
| | | @ExcelIgnore |
| | | private Integer deptId; |
| | | |
| | | @ExcelProperty("部门") |
| | | @ExcelExport("部门") |
| | | @ColumnWidth(50) |
| | | private String departmentName; |
| | | |
| | | @ExcelIgnore |
| | | private String userId; |
| | | |
| | | @ExcelProperty("得分") |
| | | @ExcelExport("得分") |
| | | private String userScore; |
| | | |
| | | @ExcelProperty("总分") |
| | | @ExcelExport("总分") |
| | | private String paperScore; |
| | | } |