This commit is contained in:
lijiaqi 2022-09-07 16:37:02 +08:00
parent 86e11e1f65
commit 5d0280150c
1 changed files with 7 additions and 7 deletions

View File

@ -125,7 +125,7 @@ public class ApiAppointController extends ApiBaseController {
@PostMapping("state/vote") @PostMapping("state/vote")
@ResponseBody @ResponseBody
public void stateVoteSave(@Validated AppointVoteStateRequest appointVoteRequest) { public void stateVoteSave(@Validated AppointVoteStateRequest appointVoteRequest) {
Ret ret = appointService.statusSave(appointStatusRequest, getApiUser()); Ret ret = appointService.statusSave(appointVoteRequest, getApiUser());
render(ret); render(ret);
} }
@ -146,12 +146,12 @@ public class ApiAppointController extends ApiBaseController {
render(ret); render(ret);
} }
@ApiOperation("是否通过") // @ApiOperation("是否通过")
@PostMapping("vote/statusSave") // @PostMapping("vote/statusSave")
public void statusSave(@Validated @RequestBody AppointStatusRequest appointStatusRequest) { // public void statusSave(@Validated @RequestBody AppointStatusRequest appointStatusRequest) {
Ret ret = appointService.statusSave(appointStatusRequest, getApiUser()); // Ret ret = appointService.statusSave(appointStatusRequest, getApiUser());
render(ret); // render(ret);
} // }
//公开环节自动跳过 //公开环节自动跳过