zhangqian
2023-11-01 530fed8ec225453572d57b15c200ab062c335457
model/request/followRecord.go
@@ -19,6 +19,7 @@
   NextFollowTime       string `json:"next_follow_time" gorm:"column:next_follow_time;type:datetime;comment:下次跟进时间"`
   Purpose              string `json:"purpose" gorm:"column:purpose;type:varchar(255);comment:跟进目的"`
   Content              string `json:"content" gorm:"column:content;type:varchar(255);comment:跟进内容"`
   CodeStandID          string `json:"codeStandID" gorm:"column:code_stand_id;type:varchar(255);comment:编码id"`
}
type UpdateFollowRecord struct {
@@ -28,7 +29,7 @@
type GetFollowRecordList struct {
   PageInfo
   SearchMap map[string]interface{} `json:"search_map"` // 搜索条件: map[string]interface{}{"name": "xxx"}; {"topic": "跟进主题", "member_name": "跟进人", "client_name": "客户名称", "client_status": "客户状态", "follow_time": "跟进时间", "next_follow_time": "下次跟进时间", "record": "跟进记录", "phone": "联系人电话", "contact_name": "联系人姓名"}
   SearchMap map[string]interface{} `json:"search_map"` // 搜索条件: map[string]interface{}{"name": "xxx"}; {"topic": "跟进主题", "member_name": "跟进人", "client_name": "客户名称", "client_status": "客户状态", "follow_time": "跟进时间", "next_follow_time": "下次跟进时间", "record": "跟进记录", "phone": "联系人电话", "contact_name": "联系人姓名", "sales_leads_id": "销售线索id", "sale_chance_id": "销售机会id"}
}
type DeleteFollowRecord struct {