Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
向汉
/
uc-engine
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
7ac0d91a
...
7ac0d91aafa950c81c32c2743f1865c646a128a3
authored
2022-03-03 15:34:56 +0800
by
xianghan
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
1.在修复关注后进行绑定的地方添加日志
1 parent
815a2c7e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
member-service-impl/src/main/java/com/topdraw/business/process/rest/UserOperationController.java
member-service-impl/src/main/java/com/topdraw/business/process/rest/UserOperationController.java
View file @
7ac0d91
...
...
@@ -401,6 +401,8 @@ public class UserOperationController {
// redis中的大小屏信息
String
content
=
(
String
)
this
.
redisUtils
.
get
(
RedisKeyUtil
.
genSeSuSubscribeKey
(
unionid
));
JSONObject
iptvUserInfo
=
JSONObject
.
parseObject
(
content
);
// redis中的大小屏信息
log
.
info
(
"saveUserInfo ==> redis content iptvUserInfo ==> [{}]"
,
iptvUserInfo
);
// 大屏账户
String
platformAccount
=
iptvUserInfo
.
getString
(
"platformAccount"
);
...
...
@@ -423,7 +425,8 @@ public class UserOperationController {
e
.
printStackTrace
();
}
// 大小屏绑定
// 大小屏绑定,如果已经绑定了别的大屏,则不进行处理,返回已绑定的大屏信息
// 已绑定的大屏信息
UserTvDTO
userTvDTO
=
this
.
userOperationService
.
bind
(
memberDTO
,
platformAccount
);
if
(
userTvDTO
!=
null
)
{
platformAccount1
=
userTvDTO
.
getPlatformAccount
();
...
...
@@ -435,7 +438,10 @@ public class UserOperationController {
resultList
.
add
(
result
);
resultList
.
add
(
platformAccount1
);
// return ["subscribe","platform_account"]
ResultInfo
<
Object
>
success
=
ResultInfo
.
success
(
resultList
);
log
.
info
(
"saveUserInfo ==> ResultInfo ==> [{}]"
,
success
);
return
success
;
}
...
...
Please
register
or
sign in
to post a comment