chenhj
7 天以前 a2d1636333fc785f84de829a096f0aa210560102
src/main/java/com/ruoyi/staff/dto/StaffLeaveDto.java
@@ -1,11 +1,8 @@
package com.ruoyi.staff.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.staff.pojo.StaffLeave;
import lombok.Data;
import java.util.Date;
@Data
public class StaffLeaveDto extends StaffLeave {
@@ -45,48 +42,61 @@
    /**
     * 岗位
     */
    @Excel(name = "岗位",sort = 7)
    @Excel(name = "部门",sort = 7)
    private String deptName;
    /**
     * 岗位
     */
    @Excel(name = "岗位",sort = 8)
    private String postName;
    /**
     * 第一学历
     */
    @Excel(name = "第一学历", sort = 8)
    @Excel(name = "第一学历", sort = 9)
    private String firstStudy;
    /**
     * 专业
     */
    @Excel(name = "专业", sort = 9)
    @Excel(name = "专业", sort = 10)
    private String profession;
    /**
     * 身份证号码
     */
    @Excel(name = "身份证号码", sort = 10)
    @Excel(name = "身份证号码", sort = 11)
    private String identityCard;
    /**
     * 年龄
     */
    @Excel(name = "年龄", sort = 11)
    @Excel(name = "年龄", sort = 12)
    private String age;
    /**
     * 联系电话
     */
    @Excel(name = "联系电话", sort = 12)
    @Excel(name = "联系电话", sort = 13)
    private String phone;
    /**
     * 紧急联系人
     */
    @Excel(name = "紧急联系人", sort = 13)
    @Excel(name = "紧急联系人", sort = 14)
    private String emergencyContact;
    /**
     * 紧急联系人电话
     */
    @Excel(name = "紧急联系人电话", sort = 14)
    @Excel(name = "紧急联系人电话", sort = 15)
    private String emergencyContactPhone;
    private int count;
    /**
     * 离职原因文本
     */
    private String reasonText;
}