Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xyqb-user2
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
head_group
xyqb-user2
Commits
b4236d1b
Commit
b4236d1b
authored
Mar 23, 2018
by
技术部-任文超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更正为以免密登陆参数registerFrom为标识上报
parent
dd60591e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
8 deletions
+6
-8
AppController.java
...antgroup/xyqb/controller/external/user/AppController.java
+6
-8
No files found.
src/main/java/cn/quantgroup/xyqb/controller/external/user/AppController.java
View file @
b4236d1b
...
@@ -194,17 +194,15 @@ public class AppController implements IBaseController {
...
@@ -194,17 +194,15 @@ public class AppController implements IBaseController {
LOGGER
.
info
(
"第三方用户获取信息登录成功 loginSuper --> loginFrom:{}, phoneNo:{},appChannel:{},channelId:{}"
,
registerFrom
,
phoneNo
,
appChannel
,
channelId
);
LOGGER
.
info
(
"第三方用户获取信息登录成功 loginSuper --> loginFrom:{}, phoneNo:{},appChannel:{},channelId:{}"
,
registerFrom
,
phoneNo
,
appChannel
,
channelId
);
/*
/*
* 部分免密渠道登录统计
* 部分免密渠道登录统计
,用户中心不需识别,由统计平台来过滤
* 贷款导航(84660);壹账通H5(159384)
* 贷款导航(84660);壹账通H5(159384)
*/
*/
Long
_registerFrom
=
Optional
.
ofNullable
(
user
.
getRegisteredFrom
()).
orElse
(
registerFrom
);
user
.
setRegisteredFrom
(
registerFrom
);
if
(
Objects
.
equals
(
_registerFrom
,
84660L
)
||
Objects
.
equals
(
_registerFrom
,
159384L
)){
UserStatistics
statistics
=
new
UserStatistics
(
user
,
null
,
4
,
channelId
);
UserStatistics
statistics
=
new
UserStatistics
(
user
,
null
,
4
,
channelId
);
//增加登陆统计发送
//增加登陆统计发送
MqUtils
.
sendLoanVest
(
statistics
);
MqUtils
.
sendLoanVest
(
statistics
);
}
return
JsonResult
.
buildSuccessResult
(
""
,
loginInfo
);
return
JsonResult
.
buildSuccessResult
(
""
,
loginInfo
);
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment