package com.ruoyi.system.importExcel; import cn.afterturn.easypoi.excel.annotation.Excel; import io.swagger.annotations.ApiModel; import lombok.Data; import java.io.Serializable; @Data @ApiModel(value = "员工导入excel") public class TSysUserImportExcel implements Serializable { @Excel(name = "编号",width = 20) private String code; @Excel(name = "员工名称",width = 20) private String nickName; @Excel(name = "联系电话",width = 20) private String phonenumber; @Excel(name = "邮箱",width = 20) private String email; @Excel(name = "所属部门(输入1为项目部 输入2为公司/部门))",width = 20) private Integer deptType; @Excel(name = "部门名称",width = 20) private String deptName; @Excel(name = "模板名称",width = 20) private String templateName; @Excel(name = "角色名称",width = 20) private String roleName; @Excel(name = "登陆账号",width = 20) private String userName; }