账单明细接口优化

This commit is contained in:
hupeng
2020-04-13 17:07:37 +08:00
parent 4f22e2a9f8
commit 32bf13c531
2 changed files with 6 additions and 2 deletions

View File

@ -103,6 +103,7 @@ public class SystemStoreController {
@PreAuthorize("@el.check('yxSystemStore:del')")
@DeleteMapping
public ResponseEntity<Object> deleteAll(@RequestBody Integer[] ids) {
//if(StrUtil.isNotEmpty("22")) throw new BadRequestException("演示环境禁止操作");
yxSystemStoreService.deleteAll(ids);
return new ResponseEntity<>(HttpStatus.OK);
}