zepengdev
2025-08-29 5e3829ee63f5bf4909d7c4b57ea048b2fd87a99b
oying-system/src/main/java/com/oying/modules/pc/store/rest/StoreQualificationMerchantController.java
@@ -92,4 +92,14 @@
        storeQualificationService.deleteAll(ids);
        return ResponseEntity.noContent().build();
    }
    @PostMapping(value = "/delete")
    @Log("删除店铺资质")
    @ApiOperation("删除店铺资质")
    //@PreAuthorize("@el.check('merchant:storeQualification:batchDel') " +
    //        "and @storeMerchantOwnershipService.check(#storeId)")
    public ResponseEntity<?> batchDelete(@ApiParam(value = "传ID数组[]") @RequestBody List<Long> ids) {
        storeQualificationService.deleteAll(ids);
        return ResponseEntity.noContent().build();
    }
}