刘小明
2024-08-21 14b0417bca9050a11792248f5c5c7e7c86e4744f
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));
    }