Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
V
volunteer_service
Project
Project
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
licc
volunteer_service
Commits
a0f3e9ca
Commit
a0f3e9ca
authored
Jan 24, 2021
by
licc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改方案查询接口
parent
b96c8454
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
SchemeController.java
.../wisenergy/web/admin/controller/app/SchemeController.java
+2
-2
No files found.
wisenergy-web-admin/src/main/java/cn/wisenergy/web/admin/controller/app/SchemeController.java
View file @
a0f3e9ca
...
@@ -37,10 +37,10 @@ public class SchemeController {
...
@@ -37,10 +37,10 @@ public class SchemeController {
@Autowired
@Autowired
private
VolunteerService
volunteerService
;
private
VolunteerService
volunteerService
;
@ApiOperation
(
value
=
"
获取志愿列表"
,
notes
=
"获取志愿列表
"
,
httpMethod
=
"GET"
)
@ApiOperation
(
value
=
"
方案查询"
,
notes
=
"方案查询
"
,
httpMethod
=
"GET"
)
@ApiImplicitParam
(
name
=
"queryVo"
,
value
=
"志愿查询参数"
,
dataType
=
"SchemeQueryVo"
)
@ApiImplicitParam
(
name
=
"queryVo"
,
value
=
"志愿查询参数"
,
dataType
=
"SchemeQueryVo"
)
@GetMapping
(
"/getList"
)
@GetMapping
(
"/getList"
)
public
R
<
VolunteerVo
>
getList
(
@RequestBody
SchemeQueryVo
queryVo
)
{
public
R
<
VolunteerVo
>
getList
(
SchemeQueryVo
queryVo
)
{
log
.
info
(
"volunteer-service[]SchemeController[]getList[]input.param.queryVo:"
+
queryVo
);
log
.
info
(
"volunteer-service[]SchemeController[]getList[]input.param.queryVo:"
+
queryVo
);
if
(
null
==
queryVo
)
{
if
(
null
==
queryVo
)
{
return
R
.
error
(
"入参为空!"
);
return
R
.
error
(
"入参为空!"
);
...
...
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