mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-07-15 19:35:07 +08:00
📖 CRM:跟进记录的 code review
This commit is contained in:
@ -61,7 +61,7 @@ export const exportBusiness = async (params) => {
|
||||
return await request.download({ url: `/crm/business/export-excel`, params })
|
||||
}
|
||||
|
||||
//联系人关联商机列表
|
||||
// 联系人关联商机列表
|
||||
export const getBusinessPageByContact = async (params) => {
|
||||
return await request.get({ url: `/crm/business/page-by-contact`, params })
|
||||
}
|
||||
|
@ -2,22 +2,14 @@ import request from '@/config/axios'
|
||||
|
||||
// 跟进记录 VO
|
||||
export interface FollowUpRecordVO {
|
||||
// 编号
|
||||
id: number
|
||||
// 数据类型
|
||||
bizType: number
|
||||
// 数据编号
|
||||
bizId: number
|
||||
// 跟进类型
|
||||
type: number
|
||||
// 跟进内容
|
||||
content: string
|
||||
// 下次联系时间
|
||||
nextTime: Date
|
||||
// 关联的商机编号数组
|
||||
businessIds: number[]
|
||||
// 关联的联系人编号数组
|
||||
contactIds: number[]
|
||||
id: number // 编号
|
||||
bizType: number // 数据类型
|
||||
bizId: number // 数据编号
|
||||
type: number // 跟进类型
|
||||
content: string // 跟进内容
|
||||
nextTime: Date // 下次联系时间
|
||||
businessIds: number[] // 关联的商机编号数组
|
||||
contactIds: number[] // 关联的联系人编号数组
|
||||
}
|
||||
|
||||
// 跟进记录 API
|
||||
|
Reference in New Issue
Block a user