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
434240a7
Commit
434240a7
authored
Apr 18, 2022
by
李健华
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'hotfix/userRegisterFrom-20220418' into 'master'
修改因用户登陆产的修改用户注册渠道问题 See merge request
!63
parents
6b8060c2
c3c0f2ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
SessionServiceImpl.java
...ntgroup/xyqb/service/session/impl/SessionServiceImpl.java
+5
-2
No files found.
src/main/java/cn/quantgroup/xyqb/service/session/impl/SessionServiceImpl.java
View file @
434240a7
...
@@ -16,6 +16,7 @@ import cn.quantgroup.xyqb.util.TenantUtil;
...
@@ -16,6 +16,7 @@ import cn.quantgroup.xyqb.util.TenantUtil;
import
com.alibaba.fastjson.JSON
;
import
com.alibaba.fastjson.JSON
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.commons.lang3.StringUtils
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.cache.annotation.CacheEvict
;
import
org.springframework.cache.annotation.CacheEvict
;
import
org.springframework.cache.annotation.Caching
;
import
org.springframework.cache.annotation.Caching
;
...
@@ -152,8 +153,10 @@ public class SessionServiceImpl implements ISessionService {
...
@@ -152,8 +153,10 @@ public class SessionServiceImpl implements ISessionService {
* 部分免密渠道登录统计,用户中心不需识别,由统计平台来过滤
* 部分免密渠道登录统计,用户中心不需识别,由统计平台来过滤
* 贷款导航(84660);壹账通H5(159384)
* 贷款导航(84660);壹账通H5(159384)
*/
*/
user
.
setRegisteredFrom
(
properties
.
getCreatedFrom
());
User
userRereset
=
new
User
();
UserStatistics
statistics
=
new
UserStatistics
(
user
,
null
,
properties
.
getAction
(),
properties
.
getChannelId
());
BeanUtils
.
copyProperties
(
user
,
userRereset
);
userRereset
.
setRegisteredFrom
(
properties
.
getCreatedFrom
());
UserStatistics
statistics
=
new
UserStatistics
(
userRereset
,
null
,
properties
.
getAction
(),
properties
.
getChannelId
());
// 推送老的登陆统计信息
// 推送老的登陆统计信息
MqUtils
.
sendLoanVest
(
statistics
);
MqUtils
.
sendLoanVest
(
statistics
);
return
sessionStruct
;
return
sessionStruct
;
...
...
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