Commit e7d50388 by guojx

日志调整

parent b38beb49
...@@ -23,7 +23,8 @@ public class LogRecordUserServiceImpl extends LogRecordUserService { ...@@ -23,7 +23,8 @@ public class LogRecordUserServiceImpl extends LogRecordUserService {
@Override @Override
public GicLogRecordUser getUser() { public GicLogRecordUser getUser() {
WebLoginDTO loginUser = AuthWebRequestUtil.getLoginUser(); WebLoginDTO loginUser = AuthWebRequestUtil.getLoginUser();
return new GicLogRecordUser(loginUser.getClerkId(), loginUser.getClerkName(), loginUser.getClerkFullName(), loginUser.getEnterpriseId()); return new GicLogRecordUser(loginUser.getClerkId(), loginUser.getClerkName(), loginUser.getClerkFullName(),
loginUser.getWxEnterpriseId(), loginUser.getEnterpriseId(), loginUser.getOperationUserName());
} }
} }
...@@ -31,7 +31,7 @@ public class WebLoginVO implements Serializable { ...@@ -31,7 +31,7 @@ public class WebLoginVO implements Serializable {
/** /**
* 运维登录人手机号 * 运维登录人手机号
*/ */
private String userMobile; private String clerkPhone;
public String getStaffId() { public String getStaffId() {
return staffId; return staffId;
...@@ -155,12 +155,12 @@ public class WebLoginVO implements Serializable { ...@@ -155,12 +155,12 @@ public class WebLoginVO implements Serializable {
return this; return this;
} }
public String getUserMobile() { public String getClerkPhone() {
return userMobile; return clerkPhone;
} }
public WebLoginVO setUserMobile(String userMobile) { public WebLoginVO setClerkPhone(String clerkPhone) {
this.userMobile = userMobile; this.clerkPhone = clerkPhone;
return this; return this;
} }
} }
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 to comment