You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package models
|
|
|
|
// CustomerTrack 客户跟进记录
|
|
type CustomerTrack struct {
|
|
ID uint `json:"id" gorm:"primary_key"`
|
|
CustomerId uint `json:"customer_id"` // 客户编号
|
|
// Content string // 跟进内容记录
|
|
// 跟进时间
|
|
// 跟进方式 - 上门拜访、电话拜访、微信沟通、其他
|
|
// 跟进人
|
|
// 跟进内容 - 初次沟通、需求沟通、方案确认、报价、合同签署、销售回访
|
|
}
|
|
|