Commit de92194f by guojx

log

parent 31fc52a0
......@@ -319,7 +319,7 @@ public class LoginController extends WebBaseController {
private String doLogin(String wxEnterpriseId, String gicEnterpriseId, String loginPhoneNumber, String loginChannel,
HttpServletResponse response, String operationUserId, String userName) {
//运维单点登录信息:operationUserId userName : 运维realName
logger.info("doLogin={},{}",gicEnterpriseId,loginPhoneNumber);
logger.info("doLogin={},{},{},{}",gicEnterpriseId,loginPhoneNumber, operationUserId, userName);
WxApplicationDTO application = wxApplicationApiService.selectByWxEnterpriseIdAndApplicationType(wxEnterpriseId,2);
if (null == application) {
logger.info("登录企业应用 没授权!gicEnterpriseId:{}", gicEnterpriseId);
......@@ -567,7 +567,7 @@ public class LoginController extends WebBaseController {
@RequestMapping("/gic-login-check")
@IgnoreLogin
public ModelAndView gicLogin(String code, String hbEnt,String hbPage, String operationUserId, String userName) {
logger.info("gic登录clerkId={},hbEnt={}", code, hbEnt);
logger.info("gic登录clerkId={},hbEnt={},operationUserId={},userName={}", code, hbEnt, operationUserId, userName);
PowerClerkDTO clerkDTO = this.userService.haobanLoginBack(code);
if (clerkDTO == null) {
logger.info("从gic后台登录,传入clerkId={}无效", code);
......
......@@ -22,6 +22,12 @@ public class WebLoginVO implements Serializable {
private String gicHost ;
private String staffId ;
/**
* 运维登录相关信息。新版运维登录、运维登录GIC再登录好办
*/
private String operationUserId;
private String operationUserName;
public String getStaffId() {
return staffId;
}
......@@ -125,4 +131,22 @@ public class WebLoginVO implements Serializable {
public void setEnterpriseId(String enterpriseId) {
this.enterpriseId = enterpriseId;
}
public String getOperationUserId() {
return operationUserId;
}
public WebLoginVO setOperationUserId(String operationUserId) {
this.operationUserId = operationUserId;
return this;
}
public String getOperationUserName() {
return operationUserName;
}
public WebLoginVO setOperationUserName(String operationUserName) {
this.operationUserName = operationUserName;
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