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
2725a7c3
Commit
2725a7c3
authored
Jul 07, 2020
by
huluobin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
b66cf8ac
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
12 deletions
+6
-12
ScheduleManageServiceImpl.java
...plication/order/serve/impl/ScheduleManageServiceImpl.java
+2
-1
MvcInterceptorConfig.java
...rl/infrastructure/config/config/MvcInterceptorConfig.java
+2
-10
ScheduleManageMapper.java
...frastructure/mapper/order/serve/ScheduleManageMapper.java
+2
-1
No files found.
src/main/java/com/gogirl/application/order/serve/impl/ScheduleManageServiceImpl.java
View file @
2725a7c3
...
@@ -876,7 +876,8 @@ public class ScheduleManageServiceImpl extends ServiceImpl<ScheduleManageMapper,
...
@@ -876,7 +876,8 @@ public class ScheduleManageServiceImpl extends ServiceImpl<ScheduleManageMapper,
/*1、查询闲时折扣*/
/*1、查询闲时折扣*/
IPage
<
LeisureScheduleServeResp
>
page
=
new
Page
<>(
query
.
getPageNum
(),
query
.
getPageSize
());
IPage
<
LeisureScheduleServeResp
>
page
=
new
Page
<>(
query
.
getPageNum
(),
query
.
getPageSize
());
page
=
scheduleManageMapper
.
queryPageLeisureScheduleServe
(
page
,
query
.
getLatitude
(),
query
.
getLongitude
());
List
<
Integer
>
labelIdList
=
new
ArrayList
<>();
page
=
scheduleManageMapper
.
queryPageLeisureScheduleServe
(
page
,
query
.
getLatitude
(),
query
.
getLongitude
(),
labelIdList
);
/*算距离*/
/*算距离*/
...
...
src/main/java/com/gogirl/infrastructure/config/config/MvcInterceptorConfig.java
View file @
2725a7c3
...
@@ -117,7 +117,7 @@ public class MvcInterceptorConfig extends WebMvcConfigurationSupport {
...
@@ -117,7 +117,7 @@ public class MvcInterceptorConfig extends WebMvcConfigurationSupport {
.
excludePathPatterns
(
"/customer/produce/queryProduceDetail"
)
.
excludePathPatterns
(
"/customer/produce/queryProduceDetail"
)
.
excludePathPatterns
(
"/customer/shop/queryShopForPage"
)
.
excludePathPatterns
(
"/customer/shop/queryShopForPage"
)
.
excludePathPatterns
(
"/customer/mallCart/listMallShoppingCart"
)
.
excludePathPatterns
(
"/customer/mallCart/listMallShoppingCart"
)
.
excludePathPatterns
(
"/customer/queryPageLeisureScheduleServe"
)
//
.excludePathPatterns("/customer/queryPageLeisureScheduleServe")
.
excludePathPatterns
(
"/customer/getMyCoupon"
)
.
excludePathPatterns
(
"/customer/getMyCoupon"
)
.
excludePathPatterns
(
"/customer/timescard/getMyTimesCardList"
)
.
excludePathPatterns
(
"/customer/timescard/getMyTimesCardList"
)
.
excludePathPatterns
(
"/customer/selectAllDiscount"
)
.
excludePathPatterns
(
"/customer/selectAllDiscount"
)
...
@@ -126,15 +126,7 @@ public class MvcInterceptorConfig extends WebMvcConfigurationSupport {
...
@@ -126,15 +126,7 @@ public class MvcInterceptorConfig extends WebMvcConfigurationSupport {
super
.
addInterceptors
(
registry
);
super
.
addInterceptors
(
registry
);
}
}
//
// https://t.begogirls.com/customer/produce/queryProduceDetail2?id=265&token=1240914668441079809
// https://t.begogirls.com/customer/shop/queryShopForPage?pageNum=1&pageSize=10&longitude=113.36199&latitude=23.12463&token=1240914668441079809
// https://t.begogirls.com/customer/mallCart/listMallShoppingCart
// https://t.begogirls.com/customer/queryPageLeisureScheduleServe
// https://t.begogirls.com/customer/getMyCoupon?state=1&token=1240914668441079809
// https://t.begogirls.com/customer/timescard/getMyTimesCardList?token=1240914668441079809
// https://t.begogirls.com/customer/selectAllDiscount?token=1240914668441079809
// https://t.begogirls.com/customer/xcx/getUserInfo?token=1240914668441079809
@Override
@Override
public
void
addResourceHandlers
(
ResourceHandlerRegistry
registry
)
{
public
void
addResourceHandlers
(
ResourceHandlerRegistry
registry
)
{
...
...
src/main/java/com/gogirl/infrastructure/mapper/order/serve/ScheduleManageMapper.java
View file @
2725a7c3
...
@@ -49,6 +49,7 @@ public interface ScheduleManageMapper extends BaseMapper<ScheduleManage> {
...
@@ -49,6 +49,7 @@ public interface ScheduleManageMapper extends BaseMapper<ScheduleManage> {
*/
*/
IPage
<
LeisureScheduleServeResp
>
queryPageLeisureScheduleServe
(
IPage
<
LeisureScheduleServeResp
>
page
,
IPage
<
LeisureScheduleServeResp
>
queryPageLeisureScheduleServe
(
IPage
<
LeisureScheduleServeResp
>
page
,
@Param
(
"latitude"
)
Double
latitude
,
@Param
(
"latitude"
)
Double
latitude
,
@Param
(
"longitude"
)
Double
longitude
);
@Param
(
"longitude"
)
Double
longitude
,
@Param
(
"labelIdList"
)
List
<
Integer
>
customerId
);
}
}
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