This commit is contained in:
PQZ 2025-03-17 15:25:28 +08:00
parent f1e6886fa1
commit 67ccc2d69f
11 changed files with 11 additions and 11 deletions

View File

@ -102,6 +102,6 @@ public class MemberAddressController extends BaseController
public AjaxResult remove(@PathVariable String[] ids)
{
List<String> list = new ArrayList<>(Arrays.asList(ids));
return toAjax(memberAddressService.removeBatchByIds(list));
return toAjax(memberAddressService.removeByIds(list));
}
}

View File

@ -102,6 +102,6 @@ public class MemberApplyController extends BaseController
public AjaxResult remove(@PathVariable String[] ids)
{
List<String> list = new ArrayList<>(Arrays.asList(ids));
return toAjax(memberApplyService.removeBatchByIds(list));
return toAjax(memberApplyService.removeByIds(list));
}
}

View File

@ -102,6 +102,6 @@ public class MemberBlacklistController extends BaseController
public AjaxResult remove(@PathVariable String[] ids)
{
List<String> list = new ArrayList<>(Arrays.asList(ids));
return toAjax(memberBlacklistService.removeBatchByIds(list));
return toAjax(memberBlacklistService.removeByIds(list));
}
}

View File

@ -102,6 +102,6 @@ public class MemberBusiCardController extends BaseController
public AjaxResult remove(@PathVariable String[] ids)
{
List<String> list = new ArrayList<>(Arrays.asList(ids));
return toAjax(memberBusiCardService.removeBatchByIds(list));
return toAjax(memberBusiCardService.removeByIds(list));
}
}

View File

@ -102,6 +102,6 @@ public class MemberCardController extends BaseController
public AjaxResult remove(@PathVariable String[] ids)
{
List<String> list = new ArrayList<>(Arrays.asList(ids));
return toAjax(memberCardService.removeBatchByIds(list));
return toAjax(memberCardService.removeByIds(list));
}
}

View File

@ -102,6 +102,6 @@ public class MemberCouponController extends BaseController
public AjaxResult remove(@PathVariable String[] ids)
{
List<String> list = new ArrayList<>(Arrays.asList(ids));
return toAjax(memberCouponService.removeBatchByIds(list));
return toAjax(memberCouponService.removeByIds(list));
}
}

View File

@ -102,6 +102,6 @@ public class MemberFootprintController extends BaseController
public AjaxResult remove(@PathVariable String[] ids)
{
List<String> list = new ArrayList<>(Arrays.asList(ids));
return toAjax(memberFootprintService.removeBatchByIds(list));
return toAjax(memberFootprintService.removeByIds(list));
}
}

View File

@ -102,6 +102,6 @@ public class MemberOrderController extends BaseController
public AjaxResult remove(@PathVariable String[] ids)
{
List<String> list = new ArrayList<>(Arrays.asList(ids));
return toAjax(memberOrderService.removeBatchByIds(list));
return toAjax(memberOrderService.removeByIds(list));
}
}

View File

@ -102,6 +102,6 @@ public class MemberPointsController extends BaseController
public AjaxResult remove(@PathVariable String[] ids)
{
List<String> list = new ArrayList<>(Arrays.asList(ids));
return toAjax(memberPointsService.removeBatchByIds(list));
return toAjax(memberPointsService.removeByIds(list));
}
}

View File

@ -102,6 +102,6 @@ public class MemberRightsController extends BaseController
public AjaxResult remove(@PathVariable String[] ids)
{
List<String> list = new ArrayList<>(Arrays.asList(ids));
return toAjax(memberRightsService.removeBatchByIds(list));
return toAjax(memberRightsService.removeByIds(list));
}
}

View File

@ -102,6 +102,6 @@ public class MemberUserController extends BaseController
public AjaxResult remove(@PathVariable String[] ids)
{
List<String> list = new ArrayList<>(Arrays.asList(ids));
return toAjax(memberUserService.removeBatchByIds(list));
return toAjax(memberUserService.removeByIds(list));
}
}