plat_followup.go 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. ContactsId int `orm:"contacts_id" json:"contactsId"` // 关联联系人
  23. ContactsName string `orm:"contacts_name" json:"contactsName"` // 联系人姓名
  24. Reminders string `orm:"reminders" json:"reminders"` // 提醒对象
  25. NextTime *gtime.Time `orm:"next_time" json:"nextTime"` // 下次联系时间
  26. Remark string `orm:"remark" json:"remark"` // 备注
  27. CreatedBy int `orm:"created_by" json:"createdBy"` // 创建者
  28. CreatedName string `orm:"created_name" json:"createdName"` // 创建人
  29. CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
  30. UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新者
  31. UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
  32. UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
  33. DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
  34. }