Explorar el Código

搜索条件新增

change hace 4 años
padre
commit
5cf3d50282

+ 2 - 2
zhongzheng-admin/src/main/java/com/zhongzheng/controller/grade/ClassStudentController.java

@@ -158,7 +158,7 @@ public class ClassStudentController extends BaseController {
      */
     @ApiOperation("查询用户修改记录列表")
     @PreAuthorize("@ss.hasPermi('system:update:list')")
-    @GetMapping("/list")
+    @GetMapping("/userUpdateList")
     public TableDataInfo<UserUpdateVo> list(UserUpdateQueryBo bo) {
         startPage();
         List<UserUpdateVo> list = iUserUpdateService.queryList(bo);
@@ -171,7 +171,7 @@ public class ClassStudentController extends BaseController {
     @ApiOperation("修改用户修改记录")
     @PreAuthorize("@ss.hasPermi('system:update:edit')")
     @Log(title = "用户修改记录", businessType = BusinessType.UPDATE)
-    @PutMapping()
+    @PostMapping("userUpdate")
     public AjaxResult<Void> edit(@RequestBody UserUpdateEditBo bo) {
         return toAjax(iUserUpdateService.updateByEditBo(bo) ? 1 : 0);
     }