Commit a0f3e9ca authored by licc's avatar licc

修改方案查询接口

parent b96c8454
...@@ -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("入参为空!");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment