| | |
| | | import request, {download, requestType} from "@/utils/request"; |
| | | import {BaseEntityInterface} from "@/utils/globalInterface"; |
| | | |
| | | export interface TmsQuoteItemI extends BaseEntityInterface { |
| | | id?: number, |
| | | quotePlanId?: number, |
| | | freeName?: string, |
| | | unit?: string, |
| | | price?: string, |
| | | currency?: string, |
| | | createTime?: string, |
| | | updateTime?: string |
| | | } |
| | | |
| | | |
| | | export interface TmsQuotePlanI extends BaseEntityInterface { |
| | | id?: number, |
| | | systemCode?: string, |
| | |
| | | updateTime?: string, |
| | | remark?: string, |
| | | planType?: string, |
| | | providerType?: number, |
| | | providerId?: number, |
| | | providerName?: string, |
| | | items?: TmsQuoteItemI[], |
| | | } |
| | | |
| | | |