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
beb971df
Commit
beb971df
authored
Mar 04, 2020
by
huluobin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
标签改成map
parent
1d641d58
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
3 deletions
+13
-3
deploy.sh
deploy.sh
+2
-0
MvcInterceptorConfig.java
...om/gogirl/infrastructure/config/MvcInterceptorConfig.java
+9
-1
XcxController.java
src/main/java/com/gogirl/interfaces/xcx/XcxController.java
+2
-2
No files found.
deploy.sh
View file @
beb971df
# shellcheck disable=SC2164
cd
/gogirl/gogirl-miniapp-backend
git pull
mvn clean package
-Dmaven
.test.skip
=
true
-Dmaven
.compile.fork
=
true
# shellcheck disable=SC2009
...
...
src/main/java/com/gogirl/infrastructure/config/MvcInterceptorConfig.java
View file @
beb971df
...
...
@@ -53,7 +53,15 @@ public class MvcInterceptorConfig extends WebMvcConfigurationSupport {
//退款
.
excludePathPatterns
(
"/customer/mallOrderPay/refund/*"
)
.
excludePathPatterns
(
"/customer/xcx/upload"
);
.
excludePathPatterns
(
"/customer/xcx/upload"
)
.
excludePathPatterns
(
"/xcx/login"
)
.
excludePathPatterns
(
"/csrf"
)
.
excludePathPatterns
(
"/xcx/login_t"
)
.
excludePathPatterns
(
"/phone/bindPhone_t"
)
.
excludePathPatterns
(
"/phone/getBindCode"
)
.
excludePathPatterns
(
"/xcx/upload"
);
;
registry
.
addInterceptor
(
logHandlerInterceptor
);
...
...
src/main/java/com/gogirl/interfaces/xcx/XcxController.java
View file @
beb971df
...
...
@@ -345,7 +345,7 @@ public class XcxController {
}
@ApiOperation
(
value
=
"美甲师根据code获取token"
)
@GetMapping
(
value
=
"/technician/login_t"
)
@GetMapping
(
value
=
"/technician/
xcx/
login_t"
)
public
JsonResult
<
String
>
login_t
(
@RequestParam
String
code
)
{
log
.
info
(
"调用login,授权用户信息到程序 code:{} 获取用户信息 "
,
code
);
...
...
@@ -389,7 +389,7 @@ public class XcxController {
}
@ApiOperation
(
value
=
"美甲师根据token获取美甲师信息"
)
@
RequestMapping
(
method
=
{
RequestMethod
.
GET
},
value
=
"/technician/xcx/getUserInfo_t"
)
@
GetMapping
(
"/technician/xcx/getUserInfo_t"
)
@GogirlShop
public
JsonResult
<
List
<
StoreTechnician
>>
getUserInfo_t
(
String
token
)
{
...
...
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