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

@@ -47,8 +47,7 @@ export function deleteDemo01Contact(id: number) {
}
/** 批量删除示例联系人 */
// TODO @puhui999ByIds这种按照约定是不带的针对 Id 的情况哈。
export function deleteDemo01ContactListByIds(ids: number[]) {
export function deleteDemo01ContactList(ids: number[]) {
return requestClient.delete(
`/infra/demo01-contact/delete-list?ids=${ids.join(',')}`,
);