update
This commit is contained in:
parent
86e11e1f65
commit
5d0280150c
|
@ -125,7 +125,7 @@ public class ApiAppointController extends ApiBaseController {
|
|||
@PostMapping("state/vote")
|
||||
@ResponseBody
|
||||
public void stateVoteSave(@Validated AppointVoteStateRequest appointVoteRequest) {
|
||||
Ret ret = appointService.statusSave(appointStatusRequest, getApiUser());
|
||||
Ret ret = appointService.statusSave(appointVoteRequest, getApiUser());
|
||||
render(ret);
|
||||
}
|
||||
|
||||
|
@ -146,12 +146,12 @@ public class ApiAppointController extends ApiBaseController {
|
|||
render(ret);
|
||||
}
|
||||
|
||||
@ApiOperation("是否通过")
|
||||
@PostMapping("vote/statusSave")
|
||||
public void statusSave(@Validated @RequestBody AppointStatusRequest appointStatusRequest) {
|
||||
Ret ret = appointService.statusSave(appointStatusRequest, getApiUser());
|
||||
render(ret);
|
||||
}
|
||||
// @ApiOperation("是否通过")
|
||||
// @PostMapping("vote/statusSave")
|
||||
// public void statusSave(@Validated @RequestBody AppointStatusRequest appointStatusRequest) {
|
||||
// Ret ret = appointService.statusSave(appointStatusRequest, getApiUser());
|
||||
// render(ret);
|
||||
// }
|
||||
|
||||
|
||||
//公开环节自动跳过
|
||||
|
|
Loading…
Reference in New Issue