This commit is contained in:
YAS\29473
2025-11-24 08:25:59 +08:00
parent 661b4180bc
commit 92e3d4c8d5

View File

@@ -170,8 +170,8 @@ public class MemberBasicInfoController extends BaseController {
@PreAuthorize("@ss.hasPermi('member:info:remove')") @PreAuthorize("@ss.hasPermi('member:info:remove')")
@Log(title = "会员基础信息", businessType = BusinessType.DELETE) @Log(title = "会员基础信息", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}") @DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Integer[] ids) { public AjaxResult remove(@PathVariable("ids") List<Integer> ids) {
return toAjax(memberBasicInfoService.deleteMemberBasicInfoByIds(Lists.newArrayList(ids))); return toAjax(memberBasicInfoService.deleteMemberBasicInfoByIds(ids));
} }
/** /**