Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 3e8b30d1
authored
Jun 10, 2023
by
wangli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改,非必填参数
1 parent
9a9798fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
project-order/src/main/java/com/alibaba/cloud/integration/order/controller/OrderServiceListController.java
project-order/src/main/java/com/alibaba/cloud/integration/order/controller/OrderServiceListController.java
View file @
3e8b30d
...
...
@@ -17,16 +17,16 @@ public class OrderServiceListController {
private
OrderServiceListService
orderServiceListService
;
@GetMapping
(
"/order/service/list"
)
public
Result
<?>
getOrderServiceList
(
@RequestParam
(
"startDate"
)
String
startDate
,
@RequestParam
(
"endDate"
)
String
endDate
,
@RequestParam
(
"page"
)
long
page
,
@RequestParam
(
"size"
)
long
size
,
@RequestParam
(
"sort"
)
String
sort
,
@RequestParam
(
"appointmentType"
)
String
appointmentType
,
@RequestParam
(
"appointmentStatus"
)
String
appointmentStatus
,
@RequestParam
(
"type"
)
String
type
,
@RequestParam
(
"brand"
)
String
brand
,
@RequestParam
(
"skill"
)
String
skill
)
{
public
Result
<?>
getOrderServiceList
(
@RequestParam
String
startDate
,
@RequestParam
String
endDate
,
@RequestParam
long
page
,
@RequestParam
long
size
,
@RequestParam
(
required
=
false
)
String
sort
,
@RequestParam
(
required
=
false
)
String
appointmentType
,
@RequestParam
(
required
=
false
)
String
appointmentStatus
,
@RequestParam
(
required
=
false
)
String
type
,
@RequestParam
(
required
=
false
)
String
brand
,
@RequestParam
(
required
=
false
)
String
skill
)
{
Result
<?>
res
=
null
;
try
{
res
=
orderServiceListService
.
getOrderServiceList
(
startDate
,
endDate
,
page
,
size
,
sort
,
appointmentType
,
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment