记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
董敬伟
liquidnet-bus-v1
Commits
1aaf78e3
Commit
1aaf78e3
authored
Feb 24, 2022
by
jiangxiulong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改字段类型;静默登陆增加unid、openid
parent
922dd1b8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
db_applet_push_20211122.sql
.../liquidnet-service-sweet/docu/db_applet_push_20211122.sql
+2
-1
SweetWechatLoginServiceImpl.java
...rvice/sweet/service/impl/SweetWechatLoginServiceImpl.java
+4
-1
No files found.
liquidnet-bus-service/liquidnet-service-sweet/docu/db_applet_push_20211122.sql
View file @
1aaf78e3
...
...
@@ -20,3 +20,4 @@ CREATE TABLE `sweet_applet_sub_msg`
ROW_FORMAT
=
DYNAMIC
COMMENT
'小程序订阅消息记录表'
;
alter
table
sweet_applet_sub_msg
add
union_id
varchar
(
255
)
NOT
NULL
DEFAULT
''
COMMENT
'union_id'
after
open_id
;
ALTER
TABLE
sweet_applet_sub_msg
MODIFY
activity_type
smallint
NOT
NULL
DEFAULT
0
COMMENT
'活动类型'
;
\ No newline at end of file
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/service/impl/SweetWechatLoginServiceImpl.java
View file @
1aaf78e3
...
...
@@ -180,7 +180,10 @@ public class SweetWechatLoginServiceImpl {
String
purePhone
=
sweetAppletUsersVo
.
getPurePhoneNumber
();
String
otp
=
DESUtils
.
DES
().
encrypt
(
purePhone
+
LocalDateTime
.
now
().
toEpochSecond
(
ZoneOffset
.
UTC
));
ResponseDto
<
AdamLoginInfoVo
>
adamUserInfoVoResponseDto
=
feignAdamBaseClient
.
loginBySilentMobile
(
purePhone
,
otp
);
return
adamUserInfoVoResponseDto
;
AdamLoginInfoVo
adamLoginInfoVo
=
adamUserInfoVoResponseDto
.
getData
();
adamLoginInfoVo
.
setWechatOpenid
(
sweetAppletUsersVo
.
getOpenId
());
adamLoginInfoVo
.
setWechatUnionid
(
sweetAppletUsersVo
.
getUnionId
());
return
ResponseDto
.
success
(
adamLoginInfoVo
);
}
catch
(
Exception
e
)
{
log
.
error
(
"userInfoMaError Exception:{}"
,
e
);
return
ResponseDto
.
failure
(
"获取用户信息失败~"
);
...
...
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