wujianwei
2025-12-30 9200bfebd2c3a4deb16cf331f81b68c3a0bb07a1
tms/src/main/java/com/ruoyi/tms/controller/TmsQuotePlanController.java
@@ -1,6 +1,8 @@
package com.ruoyi.tms.controller;
import java.util.List;
import com.ruoyi.tms.domain.TmsQuoteItem;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
@@ -73,6 +75,12 @@
        return AjaxResult.success(tmsQuotePlanService.selectTmsQuotePlanById(id));
    }
    @GetMapping(value = "/selectPaymentTmsQuotePlan")
    public AjaxResult selectPaymentTmsQuotePlan(TmsQuoteItem tmsQuotePlan)
    {
        return AjaxResult.success(tmsQuotePlanService.selectPaymentTmsQuotePlan(tmsQuotePlan));
    }
    /**
     * 新增报价方案管理
     */