package com.ruoyi.system.domain.dto;
|
|
import com.ruoyi.common.core.annotation.Excel;
|
import lombok.Data;
|
|
/**
|
* @ClassName MgtSysStaffImportDto
|
* @Description TODO
|
* @Author jqs
|
* @Date 2023/8/18 15:56
|
* @Version 1.0
|
*/
|
@Data
|
public class MgtSysStaffImportDto {
|
|
@Excel(name = "姓名")
|
private String staffName;
|
|
@Excel(name = "帐号")
|
private String userName;
|
|
@Excel(name = "别名")
|
private String nickName;
|
|
@Excel(name = "职务")
|
private String post;
|
|
@Excel(name = "部门")
|
private String department;
|
|
@Excel(name = "性别")
|
private String gender;
|
|
@Excel(name = "手机")
|
private String mobile;
|
|
@Excel(name = "座机")
|
private String phone;
|
|
@Excel(name = "个人邮箱")
|
private String email;
|
|
@Excel(name = "地址")
|
private String address;
|
|
@Excel(name = "视频号")
|
private String videoNumber;
|
|
@Excel(name = "禁用状态")
|
private String userStatus;
|
}
|