fix: 去除批量删除接口的 ByIds,这种按照约定,是不带的,针对 Id 的情况
This commit is contained in:
@@ -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(',')}`,
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user