zouyu
2026-05-06 f2c5864b2973e15959590eea78742a82085cd10d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;
}