fix: 去除批量删除接口的 ByIds,这种按照约定,是不带的,针对 Id 的情况

This commit is contained in:
puhui999
2025-06-06 15:44:37 +08:00
parent 43841be0d9
commit 2c9032e595
16 changed files with 30 additions and 31 deletions

View File

@@ -64,7 +64,7 @@ export function deleteDemo03Student(id: number) {
}
/** 批量删除学生 */
export function deleteDemo03StudentListByIds(ids: number[]) {
export function deleteDemo03StudentList(ids: number[]) {
return requestClient.delete(
`/infra/demo03-student-inner/delete-list?ids=${ids.join(',')}`,
);