| | |
| | | package request |
| | | |
| | | import "aps_crm/proto/code" |
| | | |
| | | type AddFollowRecord struct { |
| | | FollowRecord FollowRecord `json:"follow_record" binding:"required"` |
| | | } |
| | |
| | | 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 { |