1
This commit is contained in:
parent
f1e6886fa1
commit
67ccc2d69f
@ -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));
|
||||
}
|
||||
}
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user