| | |
| | | statusTypeName?: string; |
| | | statusId: number; |
| | | statusName?: string; |
| | | endStatus: number; |
| | | endRemark: string; |
| | | dealTime: Date; |
| | | totalProductPrice: number; |
| | |
| | | /** 商机产品信息 */ |
| | | export interface BusinessProduct { |
| | | id: number; |
| | | productId: number; |
| | | productName: string; |
| | | productNo: string; |
| | | productUnit: number; |
| | | productPrice: number; |
| | | itemId: number; |
| | | itemName: string; |
| | | itemCode: string; |
| | | barCode: string; |
| | | itemSpecification: string; |
| | | itemUnitId: number; |
| | | itemUnitName: string; |
| | | itemPrice: number; |
| | | businessPrice: number; |
| | | count: number; |
| | | totalPrice: number; |
| | |
| | | /** 商机更新状态请求 */ |
| | | export interface BusinessUpdateStatusReqVO { |
| | | id: number; |
| | | statusId: number | undefined; |
| | | endStatus: number | undefined; |
| | | statusId: number; |
| | | } |
| | | } |
| | | |