|
@@ -16,7 +16,7 @@ public class UserExportDto implements Serializable {
|
|
|
|
|
|
@ApiModelProperty(name = "姓名")
|
|
@ApiModelProperty(name = "姓名")
|
|
@ExcelProperty(name = "姓名", width = 30, index = 1)
|
|
@ExcelProperty(name = "姓名", width = 30, index = 1)
|
|
- String name;
|
|
|
|
|
|
+ String realName;
|
|
|
|
|
|
@ApiModelProperty(name = "登录名")
|
|
@ApiModelProperty(name = "登录名")
|
|
@ExcelProperty(name = "登录名", width = 30, index = 2)
|
|
@ExcelProperty(name = "登录名", width = 30, index = 2)
|
|
@@ -42,12 +42,12 @@ public class UserExportDto implements Serializable {
|
|
@ExcelProperty(name = "执行人", width = 30, index = 8)
|
|
@ExcelProperty(name = "执行人", width = 30, index = 8)
|
|
String updateName;
|
|
String updateName;
|
|
|
|
|
|
- public String getName() {
|
|
|
|
- return name;
|
|
|
|
|
|
+ public String getRealName() {
|
|
|
|
+ return realName;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setName(String name) {
|
|
|
|
- this.name = name;
|
|
|
|
|
|
+ public void setRealName(String realName) {
|
|
|
|
+ this.realName = realName;
|
|
}
|
|
}
|
|
|
|
|
|
public String getLoginName() {
|
|
public String getLoginName() {
|