This commit is contained in:
张良(004796)
2024-01-03 14:49:39 +08:00
parent 769a47966f
commit fdc6dfc477
21 changed files with 21 additions and 21 deletions

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}

View File

@@ -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)));
}
}