|
@@ -29,7 +29,7 @@ public class SysUsers implements Serializable {
|
|
|
/**
|
|
|
* 用户账号
|
|
|
*/
|
|
|
- @Excel(name = "登录名称")
|
|
|
+ @Excel(name = "账号")
|
|
|
private String userName;
|
|
|
|
|
|
/**
|
|
@@ -41,13 +41,13 @@ public class SysUsers implements Serializable {
|
|
|
/**
|
|
|
* 用户邮箱
|
|
|
*/
|
|
|
- @Excel(name = "用户邮箱")
|
|
|
+ @Excel(name = "联系邮箱")
|
|
|
private String email;
|
|
|
|
|
|
/**
|
|
|
* 手机号码
|
|
|
*/
|
|
|
- @Excel(name = "手机号码")
|
|
|
+ @Excel(name = "联系电话")
|
|
|
private String phoneNum;
|
|
|
|
|
|
/**
|
|
@@ -58,7 +58,7 @@ public class SysUsers implements Serializable {
|
|
|
/**
|
|
|
* 帐号状态(1正常 2停用)
|
|
|
*/
|
|
|
- @Excel(name = "帐号状态", readConverterExp = "1=正常,2=停用")
|
|
|
+ @Excel(name = "状态", readConverterExp = "1=正常,2=停用")
|
|
|
private Integer status;
|
|
|
|
|
|
/** 部门名称 */
|