Commit d9fc936e by 李小龙

fix: 用户导入模板

parent 68eb3096
...@@ -8,26 +8,22 @@ import lombok.Data; ...@@ -8,26 +8,22 @@ import lombok.Data;
public class PlatUserImportDTO { public class PlatUserImportDTO {
private static final String headDesc = "导入说明:\n" + private static final String headDesc = "导入说明:\n" +
"\n" +
"1.带*号为必填项\n" + "1.带*号为必填项\n" +
"\n" +
"2.手机号和邮箱不可重复\n" + "2.手机号和邮箱不可重复\n" +
"\n" +
"3.角色必须为【角色管理】处维护的角色名称\n" + "3.角色必须为【角色管理】处维护的角色名称\n" +
"\n" + "4.导入人员默认登录密码为:abc888888";
"4.导入人员默认登录密码为:888888";
@ExcelProperty(value = "姓名*") @ExcelProperty(value = {headDesc,"姓名*"})
private String username; private String username;
@ExcelProperty(value = "手机号*") @ExcelProperty(value = {headDesc,"手机号*"})
private String mobile; private String mobile;
@ExcelProperty(value = "邮箱") @ExcelProperty(value = {headDesc,"邮箱"})
private String email; private String email;
@ExcelProperty(value = "*所属组织") @ExcelProperty(value = {headDesc,"*所属组织"})
private String orgName; private String orgName;
@ExcelProperty(value = "*角色") @ExcelProperty(value = {headDesc,"*角色"})
private String roleName; private String roleName;
@ExcelProperty(value = "备注") @ExcelProperty(value = {headDesc,"备注"})
private String remark; private String remark;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment