| | |
| | | public class AttendanceExcel implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ColumnWidth(10) |
| | | @ExcelProperty("姓名") |
| | | private String name; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("编号") |
| | | private String number; |
| | | @ColumnWidth(25) |
| | | @ExcelProperty("企业名称") |
| | | private String deptName; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("部门") |
| | | private String department; |
| | | |
| | | /** |
| | | * 天气,忽略不显示 |
| | | */ |
| | | @ExcelIgnore |
| | | private String weather; |
| | | @ExcelProperty("姓名") |
| | | private String realName; |
| | | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("打卡时间") |
| | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("考勤类型") |
| | | private String attendanceType; |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("星期") |
| | | private String week; |
| | | |
| | | @ColumnWidth(40) |
| | | @ExcelProperty("地址") |
| | | private String address; |
| | | |
| | | } |