|
@@ -229,6 +229,17 @@ public class ClassGradeController extends BaseController {
|
|
|
return toAjax(iUserPeriodService.updateByEditBo(bo) ? 1 : 0);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 修改学员记录
|
|
|
+ */
|
|
|
+ @ApiOperation("修改学员记录")
|
|
|
+ @PreAuthorize("@ss.hasPermi('system:user:edit')")
|
|
|
+ @Log(title = "学员记录", businessType = BusinessType.UPDATE)
|
|
|
+ @PutMapping()
|
|
|
+ public AjaxResult<Void> edit(@RequestBody ClassGradeUserEditBo bo) {
|
|
|
+ return toAjax(iClassGradeUserService.updateByEditBo(bo) ? 1 : 0);
|
|
|
+ }
|
|
|
+
|
|
|
/* *//**
|
|
|
* 删除班级
|
|
|
*//*
|