|
|
@@ -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);
|
|
|
}
|