Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gogirl-miniapp-backend
Overview
Overview
Details
Activity
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
huluobin
gogirl-miniapp-backend
Commits
bd702d87
Commit
bd702d87
authored
Mar 18, 2020
by
huluobin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
14f571bf
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
CustomerServiceImpl.java
...l/application/user/customer/impl/CustomerServiceImpl.java
+1
-1
GogirlTokenServiceImpl.java
...m/gogirl/application/xcx/impl/GogirlTokenServiceImpl.java
+2
-2
MvcInterceptorConfig.java
...om/gogirl/infrastructure/config/MvcInterceptorConfig.java
+1
-0
No files found.
src/main/java/com/gogirl/application/user/customer/impl/CustomerServiceImpl.java
View file @
bd702d87
...
...
@@ -265,8 +265,8 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper, Customer> i
phoneCustomer
.
setState
(
customer
.
getState
());
phoneCustomer
.
setUpdateTime
(
new
Date
());
customerMapper
.
updateById
(
phoneCustomer
);
customerMapper
.
deleteById
(
customer
);
customerMapper
.
updateById
(
phoneCustomer
);
List
<
ScheduleManage
>
scheduleManageList
=
scheduleManageMapper
.
selectList
(
new
LambdaQueryWrapper
<
ScheduleManage
>()
.
eq
(
ScheduleManage:
:
getTelephone
,
phone
));
...
...
src/main/java/com/gogirl/application/xcx/impl/GogirlTokenServiceImpl.java
View file @
bd702d87
...
...
@@ -78,7 +78,7 @@ public class GogirlTokenServiceImpl implements GogirlTokenService {
GogirlToken
gogirlToken
=
SessionUtils
.
getCustomerToken
();
Customer
customer
=
customerMapper
.
selectById
(
gogirlToken
.
getCustomerId
());
if
(
StringUtils
.
isEmpty
(
realName
))
{
if
(
StringUtils
.
is
Not
Empty
(
realName
))
{
customer
.
setRealName
(
realName
);
}
customer
.
setBirthday
(
birthday
);
...
...
@@ -86,7 +86,7 @@ public class GogirlTokenServiceImpl implements GogirlTokenService {
customer
.
setSex
(
sex
);
}
if
(
StringUtils
.
isEmpty
(
phone
))
{
if
(
StringUtils
.
is
Not
Empty
(
phone
))
{
customer
.
setPhone
(
phone
);
}
...
...
src/main/java/com/gogirl/infrastructure/config/MvcInterceptorConfig.java
View file @
bd702d87
...
...
@@ -30,6 +30,7 @@ public class MvcInterceptorConfig extends WebMvcConfigurationSupport {
//登陆
.
excludePathPatterns
(
"/customer/message/loginLog"
)
.
excludePathPatterns
(
"/customer/message/pageIn"
)
.
excludePathPatterns
(
"/customer/message/pageOut"
)
.
excludePathPatterns
(
"/customer/message/logoutLog"
)
.
excludePathPatterns
(
"/customer/xcx/login"
)
...
...
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