package com.doumee.dao.admin.request; 
 | 
  
 | 
import com.doumee.core.annotation.excel.ExcelColumn; 
 | 
import io.swagger.annotations.ApiModel; 
 | 
import lombok.Data; 
 | 
  
 | 
/** 
 | 
 * 组织信息导入 
 | 
 * @author 江蹄蹄 
 | 
 * @date 2024/01/16 10:03 
 | 
 */ 
 | 
@Data 
 | 
@ApiModel("人员信息导入") 
 | 
public class UserImport { 
 | 
    @ExcelColumn(name="编码",value = "orgId",index = 1) 
 | 
    private String userId; 
 | 
    @ExcelColumn(name="名称",value = "name",index = 2) 
 | 
    private String name; 
 | 
    @ExcelColumn(name="登录账号",value = "accountNo",index = 3) 
 | 
    private String accountNo; 
 | 
    @ExcelColumn(name="性别 0男 1女",value = "sex",index = 4) 
 | 
    private String sex; 
 | 
    @ExcelColumn(name="状态  0停用,1启用",value = "status",index =5) 
 | 
    private String status; 
 | 
    @ExcelColumn(name="邮箱",value = "email",index = 6) 
 | 
    private String email; 
 | 
    @ExcelColumn(name="手机号",value = "phone",index = 7) 
 | 
    private String phone; 
 | 
    @ExcelColumn(name="工号",value = "code",index = 8) 
 | 
    private String code; 
 | 
    @ExcelColumn(name="部门编码集合,多个英文逗号隔开",value = "orgIds",index = 9) 
 | 
    private String orgIds; 
 | 
    @ExcelColumn(name="用户类型编码集合,多个英文逗号隔开",value = "typeCodes",index = 10) 
 | 
    private String typeCodes; 
 | 
    @ExcelColumn(name="角色名称集合,多个英文逗号隔开",value = "roleNames",index = 11) 
 | 
    private String roleNames; 
 | 
    @ExcelColumn(name="角色code集合,多个英文逗号隔开",value = "roleCodes",index = 12) 
 | 
    private String roleCodes; 
 | 
    @ExcelColumn(name="角色编码集合,多个英文逗号隔开",value = "roleIds",index = 13) 
 | 
    private String roleIds; 
 | 
} 
 |