update
This commit is contained in:
parent
86e11e1f65
commit
5d0280150c
|
@ -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);
|
||||||
}
|
// }
|
||||||
|
|
||||||
|
|
||||||
//公开环节自动跳过
|
//公开环节自动跳过
|
||||||
|
|
Loading…
Reference in New Issue