plat_followup.go 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
  3. // ==========================================================================
  4. package internal
  5. import (
  6. "github.com/gogf/gf/os/gtime"
  7. )
  8. // PlatFollowup is the golang structure for table plat_followup.
  9. type PlatFollowup struct {
  10. Id int `orm:"id,primary" json:"id"` // 主键
  11. FollowType string `orm:"follow_type" json:"followType"` // 跟进类型(10电话20邮件30拜访)
  12. FollowDate *gtime.Time `orm:"follow_date" json:"followDate"` // 跟进时间
  13. FollowContent string `orm:"follow_content" json:"followContent"` // 跟进内容
  14. FurtherPlan string `orm:"further_plan" json:"furtherPlan"` // 下一步跟进计划和目标
  15. Effect string `orm:"effect" json:"effect"` // 达成效果
  16. Issue string `orm:"issue" json:"issue"` // 问题或困难
  17. TargetId int `orm:"target_id" json:"targetId"` // 跟进对象ID
  18. TargetType string `orm:"target_type" json:"targetType"` // 跟进对象类型(10客户,20项目,30合同,40回款)
  19. TargetName string `orm:"target_name" json:"targetName"` // 跟进对象
  20. CustId int `orm:"cust_id" json:"custId"` // 关联客户
  21. CustName string `orm:"cust_name" json:"custName"` // 客户名称
  22. ContactType string `orm:"contact_type" json:"contactType"` // 联系人类型(10客户 20 渠道)
  23. ContactsId int `orm:"contacts_id" json:"contactsId"` // 关联联系人
  24. ContactsName string `orm:"contacts_name" json:"contactsName"` // 联系人姓名
  25. Reminders string `orm:"reminders" json:"reminders"` // 提醒对象
  26. DistId int `orm:"dist_id" json:"distId"` // 经销商id
  27. DistName string `orm:"dist_name" json:"distName"` // 经销商名称
  28. VisitorName string `orm:"visitor_name" json:"visitorName"` // 协访人员
  29. NextTime *gtime.Time `orm:"next_time" json:"nextTime"` // 下次联系时间
  30. Remark string `orm:"remark" json:"remark"` // 备注
  31. CreatedBy int `orm:"created_by" json:"createdBy"` // 创建者
  32. CreatedName string `orm:"created_name" json:"createdName"` // 创建人
  33. CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
  34. UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新者
  35. UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
  36. UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
  37. DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
  38. }