123
This commit is contained in:
@@ -90,6 +90,6 @@ public class AccountBankcardController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Integer[] ids) {
|
||||
return toAjax(accountBankcardService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(accountBankcardService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,6 +90,6 @@ public class AccountBusinessController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(accountBusinessService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(accountBusinessService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,6 +90,6 @@ public class AccountDetailController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(caiAccountDetailService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(caiAccountDetailService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,6 +90,6 @@ public class AccountRechargeController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(accountRechargeService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(accountRechargeService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,6 +90,6 @@ public class AnchorApplyController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Integer[] ids) {
|
||||
return toAjax(anchorApplyService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(anchorApplyService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -91,6 +91,6 @@ public class AnchorController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Integer[] ids) {
|
||||
return toAjax(caiAnchorService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(caiAnchorService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,6 +90,6 @@ public class ConsumeLogController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(consumeLogService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(consumeLogService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -103,6 +103,6 @@ public class DynamicController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(dynamicService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(dynamicService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,6 +90,6 @@ public class GiftController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Integer[] ids) {
|
||||
return toAjax(giftService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(giftService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,6 +90,6 @@ public class GoodsController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(goodsService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(goodsService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -91,6 +91,6 @@ public class ReportCateController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Integer[] ids) {
|
||||
return toAjax(reportCateService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(reportCateService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -91,6 +91,6 @@ public class ReportController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(reportService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(reportService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,6 +90,6 @@ public class UnionUserController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(unionUserService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(unionUserService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,6 +90,6 @@ public class UserAlbumController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(userAlbumService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(userAlbumService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,6 +90,6 @@ public class UserCallController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(userCallService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(userCallService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -104,6 +104,6 @@ public class UserCameraAuditController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Integer[] ids) {
|
||||
return toAjax(userCameraAuditService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(userCameraAuditService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -97,6 +97,6 @@ public class UserCountController extends BaseController {
|
||||
@DeleteMapping("/{userIds}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Integer[] userIds) {
|
||||
return toAjax(userCountService.removeBatchByIds(Arrays.asList(userIds), true));
|
||||
return toAjax(userCountService.removeBatchByIds(Arrays.asList(userIds)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -99,6 +99,6 @@ public class UserInviteController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(userInviteService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(userInviteService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -91,6 +91,6 @@ public class UserMemberController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Integer[] ids) {
|
||||
return toAjax(userMemberService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(userMemberService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,6 +90,6 @@ public class UserVisitorController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(userVisitorService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(userVisitorService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,6 +90,6 @@ public class WithdrawExchangeController extends BaseController {
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(withdrawExchangeService.removeBatchByIds(Arrays.asList(ids), true));
|
||||
return toAjax(withdrawExchangeService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user