diff --git a/hangtag-module-oms/hangtag-module-oms-biz/src/main/java/cn/hangtag/module/oms/controller/admin/productinfo/ProductInfoController.java b/hangtag-module-oms/hangtag-module-oms-biz/src/main/java/cn/hangtag/module/oms/controller/admin/productinfo/ProductInfoController.java index 3646dbd..267d220 100644 --- a/hangtag-module-oms/hangtag-module-oms-biz/src/main/java/cn/hangtag/module/oms/controller/admin/productinfo/ProductInfoController.java +++ b/hangtag-module-oms/hangtag-module-oms-biz/src/main/java/cn/hangtag/module/oms/controller/admin/productinfo/ProductInfoController.java @@ -73,7 +73,7 @@ public class ProductInfoController { @GetMapping("/page") @Operation(summary = "获得产品资料 分页") - @PreAuthorize("@ss.hasPermission('oms:product-info:query')") + //@PreAuthorize("@ss.hasPermission('oms:product-info:query')") public CommonResult> getProductInfoPage(@Valid ProductInfoPageReqVO pageReqVO) { PageResult pageResult = productInfoService.getProductInfoPage(pageReqVO); return success(BeanUtils.toBean(pageResult, ProductInfoRespVO.class));