review:【INFRA 基础设施】代码生成的 review

This commit is contained in:
YunaiV
2025-05-20 21:12:24 +08:00
parent c8ee7adeca
commit 73e4f831f2
4 changed files with 4 additions and 1 deletions

View File

@@ -67,6 +67,7 @@ public class Demo03StudentErpController {
@Operation(summary = "批量删除学生")
@PreAuthorize("@ss.hasPermission('infra:demo03-student:delete')")
public CommonResult<Boolean> deleteDemo03StudentList(@RequestParam("ids") List<Long> ids) {
// TODO @puhui999deleteDemo03StudentList
demo03StudentErpService.deleteDemo03StudentListByIds(ids);
return success(true);
}