|
@@ -61,7 +61,7 @@ public class VisitController extends BaseController {
|
|
|
@ApiOperation(value = "修改问题状态")
|
|
|
@PostMapping(value = "/updateProbStatus")
|
|
|
@PreAuthorize("@pcs.hasPermissions('visit/updateProbStatus')")
|
|
|
- public HttpResponseResult<String> updateProbStatus(Integer id,Integer probStatus) {
|
|
|
+ public HttpResponseResult<String> updateProbStatus(@RequestParam("id")Integer id,@RequestParam("probStatus")Integer probStatus) {
|
|
|
return succeed(studentVisitService.updateProbStatus(id,probStatus));
|
|
|
}
|
|
|
|