Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
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
youjj
cloud-platform
Commits
c9648182
Commit
c9648182
authored
Jun 26, 2019
by
libin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
参数
parent
c99bba0c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
TourFeign.java
...src/main/java/com/xxfc/platform/tour/feign/TourFeign.java
+7
-7
No files found.
xx-tour/xx-tour-api/src/main/java/com/xxfc/platform/tour/feign/TourFeign.java
View file @
c9648182
...
@@ -49,17 +49,17 @@ public interface TourFeign {
...
@@ -49,17 +49,17 @@ public interface TourFeign {
* @return
* @return
*/
*/
@RequestMapping
(
value
=
"/spe/stock"
,
method
=
RequestMethod
.
GET
)
@RequestMapping
(
value
=
"/spe/stock"
,
method
=
RequestMethod
.
GET
)
public
ObjectRestResponse
<
TourSpePriceVo
>
stock
(
@RequestParam
Integer
speId
,
@RequestParam
Integer
number
,
@RequestParam
Integer
type
);
public
ObjectRestResponse
<
TourSpePriceVo
>
stock
(
@RequestParam
(
"speId"
)
Integer
speId
,
@RequestParam
(
"number"
)
Integer
number
,
@RequestParam
(
"type"
)
Integer
type
);
@RequestMapping
(
value
=
"/tourGood/app/unauth/usable/{id}"
,
method
=
RequestMethod
.
GET
)
@RequestMapping
(
value
=
"/tourGood/app/unauth/usable/{id}"
,
method
=
RequestMethod
.
GET
)
public
ObjectRestResponse
<
TourGood
>
usableGet
(
@PathVariable
int
id
);
public
ObjectRestResponse
<
TourGood
>
usableGet
(
@PathVariable
(
value
=
"id"
)
int
id
);
@GetMapping
(
"/tourUser/app/unauth/getTourUsers"
)
@GetMapping
(
"/tourUser/app/unauth/getTourUsers"
)
public
ObjectRestResponse
<
List
<
TourUser
>>
getTourUsers
(
@RequestParam
String
ids
);
public
ObjectRestResponse
<
List
<
TourUser
>>
getTourUsers
(
@RequestParam
(
"ids"
)
String
ids
);
@GetMapping
(
"/tourGood/verfication/entityList"
)
@GetMapping
(
"/tourGood/verfication/entityList"
)
public
ObjectRestResponse
<
List
<
TourGoodVerification
>>
entityList
(
@RequestParam
Map
<
String
,
Object
>
entity
);
public
ObjectRestResponse
<
List
<
TourGoodVerification
>>
entityList
(
@RequestParam
(
"entity"
)
Map
<
String
,
Object
>
entity
);
/**
/**
* 更新发车状态
* 更新发车状态
...
@@ -75,8 +75,8 @@ public interface TourFeign {
...
@@ -75,8 +75,8 @@ public interface TourFeign {
* @param properties
* @param properties
* @return
* @return
*/
*/
@PutMapping
(
"/tourGood/verfication/personnums"
)
@PutMapping
(
"/tourGood/verfication/personnums"
)
ObjectRestResponse
<
Void
>
updateTourGoodPersonNum
(
@RequestParam
(
"verficationId"
)
Integer
verficationId
,
@RequestParam
(
"properties"
)
String
properties
,
@RequestParam
(
"number"
)
Integer
number
);
ObjectRestResponse
<
Void
>
updateTourGoodPersonNum
(
@RequestParam
(
"verficationId"
)
Integer
verficationId
,
@RequestParam
(
"properties"
)
String
properties
,
@RequestParam
(
"number"
)
Integer
number
);
/**
/**
* 查询订单列表
* 查询订单列表
...
@@ -84,7 +84,7 @@ public interface TourFeign {
...
@@ -84,7 +84,7 @@ public interface TourFeign {
* @return
* @return
*/
*/
@GetMapping
(
"/tourGood/verfication/orders"
)
@GetMapping
(
"/tourGood/verfication/orders"
)
PageDataVO
<
TourGoodOrderVo
>
findTourGoodOrders
(
@RequestParam
Map
<
String
,
Object
>
tourGoodOrderFindVo
);
PageDataVO
<
TourGoodOrderVo
>
findTourGoodOrders
(
@RequestParam
(
"tourGoodOrderFindVo"
)
Map
<
String
,
Object
>
tourGoodOrderFindVo
);
@ApiOperation
(
"首页旅游列表"
)
@ApiOperation
(
"首页旅游列表"
)
@GetMapping
(
value
=
"/tourGood/app/shopList"
)
@GetMapping
(
value
=
"/tourGood/app/shopList"
)
...
...
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