| | |
| | | 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; |
| | |
| | | return AjaxResult.success(tmsQuotePlanService.selectTmsQuotePlanById(id)); |
| | | } |
| | | |
| | | @GetMapping(value = "/selectPaymentTmsQuotePlan") |
| | | public AjaxResult selectPaymentTmsQuotePlan(TmsQuoteItem tmsQuotePlan) |
| | | { |
| | | return AjaxResult.success(tmsQuotePlanService.selectPaymentTmsQuotePlan(tmsQuotePlan)); |
| | | } |
| | | |
| | | /** |
| | | * 新增报价方案管理 |
| | | */ |