liujiandao
2023-10-11 34ef7217a034599217a7fdd1e28e1ae6910e1b4b
model/request/followRecord.go
@@ -1,5 +1,7 @@
package request
import "aps_crm/proto/code"
type AddFollowRecord struct {
   FollowRecord FollowRecord `json:"follow_record" binding:"required"`
}
@@ -19,6 +21,8 @@
   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"`
   CodeRule             code.CodeStandard `json:"codeRule"`
}
type UpdateFollowRecord struct {