| | |
| | | @Data |
| | | public class PersonRewardPunishmentRecordExcel { |
| | | |
| | | @ExcelProperty("员工编号") |
| | | @ExcelProperty(value = "员工编号",index = 0) |
| | | private String account; |
| | | |
| | | @ExcelProperty("员工姓名") |
| | | @ExcelProperty(value = "员工姓名",index = 1) |
| | | private String userName; |
| | | |
| | | @ExcelProperty("奖惩名称") |
| | | @ExcelProperty(value = "奖惩名称",index = 2) |
| | | private String rewardPunishName; |
| | | |
| | | @ExcelProperty("奖惩时间") |
| | | @ExcelProperty(value = "奖惩时间",index = 3) |
| | | private String rewardPunishTime; |
| | | |
| | | @ExcelProperty("奖惩计分") |
| | | @ExcelProperty(value = "奖惩计分",index = 4) |
| | | private String rewardPunishScore; |
| | | |
| | | @ExcelProperty("奖惩金额") |
| | | @ExcelProperty(value = "奖惩金额",index = 5) |
| | | private String rewardPunishSum; |
| | | |
| | | @ExcelProperty("创建人") |
| | | @ExcelProperty(value = "奖惩内容",index = 6) |
| | | private String rewardPunishContent; |
| | | |
| | | @ExcelProperty(value = "创建人",index = 7) |
| | | private String createUserName; |
| | | |
| | | @ExcelProperty("创建时间") |
| | | @ExcelProperty(value = "创建时间",index = 8) |
| | | private String createTime; |
| | | } |