pipIrr-platform/pipIrr-web/pipIrr-web-base/src/main/java/com/dy/pipIrrBase/block/BlockCtrl.java
@@ -54,6 +54,7 @@
            )
    })
    @PostMapping(path = "some")
    @SsoAop("-1")
    public BaseResponse<QueryResultVo<List<BaBlock>>> some(QueryVo vo){
        try {
            QueryResultVo<List<BaBlock>> res = this.sv.selectSome(vo) ;
@@ -78,6 +79,7 @@
            )
    })
    @GetMapping(path = "one")
    @SsoAop("-1")
    public BaseResponse<BaBlock> one(@Parameter(description = "实体id", required = true) Long id){
        return BaseResponseUtils.buildSuccess(this.sv.selectById(id));
    }