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