zss
2024-12-21 dfb1cbb378cb4577b6ce68ed91fb2525bf968a27
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
36
package com.yuanchu.mom.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
public class PersonRewardPunishmentRecordExcel {
    @ExcelProperty("员工编号")
    private String account;
    
    @ExcelProperty("姓名")
    private String userName;
 
    @ExcelProperty("奖惩级别")
    private String rewardPunishLevel;
 
    @ExcelProperty("奖惩名称")
    private String rewardPunishName;
 
    @ExcelProperty("奖惩时间")
    private String rewardPunishTime;
 
    @ExcelProperty("奖惩单位")
    private String rewardPunishWorkUnit;
 
    @ExcelProperty("奖惩内容")
    private String rewardPunishContent;
 
    @ExcelProperty("创建时间")
    private String createTime;
 
    @ExcelProperty("创建人")
    private String createUserName;
}