package com.ycl.dto.user;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.AllArgsConstructor;
|
import lombok.Builder;
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
|
@Data
|
@AllArgsConstructor
|
@NoArgsConstructor
|
@Builder
|
public class UmsAdminParamDto {
|
|
@ExcelProperty(value = "用户名", index = 0)
|
private String username;
|
|
@ExcelProperty(value = "密码", index = 1)
|
private String password;
|
|
@ExcelProperty(value = "真实姓名", index = 2)
|
private String nickName;
|
|
@ExcelProperty(value = "性别,输入:男,女", index = 3)
|
private String sex;
|
|
@ExcelProperty(value = "党员,输入:是,否",index = 4)
|
private String isDy;
|
|
@ExcelProperty(value = "手机号码", index = 5)
|
private String mobile;
|
|
@ExcelProperty(value = "邮箱", index = 6)
|
private String email;
|
|
@ExcelProperty(value = "角色", index = 7)
|
private String role;
|
|
@ExcelProperty(value = "用户类型", index = 8)
|
private String userType;
|
|
@ExcelProperty(value = "所属部门", index = 9)
|
private String department;
|
|
@ExcelProperty(value = "当前职务", index = 10)
|
private String jobTitle;
|
}
|