package com.ruoyi.personnel.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
@Data
|
public class PersonRewardPunishmentRecordExcel {
|
|
@ExcelProperty("员工编号")
|
private String account;
|
|
@ExcelProperty("员工姓名")
|
private String userName;
|
|
@ExcelProperty("奖惩名称")
|
private String rewardPunishName;
|
|
@ExcelProperty("奖惩时间")
|
private String rewardPunishTime;
|
|
@ExcelProperty("奖惩计分")
|
private String rewardPunishScore;
|
|
@ExcelProperty("奖惩金额")
|
private String rewardPunishSum;
|
|
@ExcelProperty("创建人")
|
private String createUserName;
|
|
@ExcelProperty("创建时间")
|
private String createTime;
|
}
|