| | |
| | | import type { PageParam, PageResult } from '..\..\..\packages\effects\request\src'; |
| | | import type { PageParam, PageResult } from '@vben/request'; |
| | | |
| | | import type { CrmPermissionApi } from '#/api/crm/permission'; |
| | | |
| | |
| | | statusTypeName?: string; |
| | | statusId: number; |
| | | statusName?: string; |
| | | endStatus: number; |
| | | endRemark: string; |
| | | dealTime: Date; |
| | | totalProductPrice: number; |
| | |
| | | /** 商机更新状态请求 */ |
| | | export interface BusinessUpdateStatusReqVO { |
| | | id: number; |
| | | statusId: number | undefined; |
| | | endStatus: number | undefined; |
| | | statusId: number; |
| | | } |
| | | } |
| | | |