pms-parent/pms-web-platform/src/main/java/com/dy/pmsPlatform/product/ProductCtrl.java
@@ -135,11 +135,11 @@ * 可根据orderId查询产品 * @return */ @GetMapping(path="selectByOrderId") @GetMapping(path="getProduct") @SsoPowerAop(power = "10300000") @Log("可根据orderId查询产品") public BaseResponse<List<PltProduct>> selectByOrderId(Long orderId){ return BaseResponseUtils.buildSuccess(proSv.selectByOrderId(orderId)); public BaseResponse<List<PltProduct>> getProduct(Long orderId){ return BaseResponseUtils.buildSuccess(proSv.getProduct(orderId)); }