plat_followup.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334
  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. TargetId int `orm:"target_id" json:"targetId"` // 跟进对象ID
  15. TargetType string `orm:"target_type" json:"targetType"` // 跟进对象类型(10客户,20项目,30合同,40回款)
  16. TargetName string `orm:"target_name" json:"targetName"` // 跟进对象
  17. CustId int `orm:"cust_id" json:"custId"` // 关联客户
  18. CustName string `orm:"cust_name" json:"custName"` // 客户名称
  19. ContactsId int `orm:"contacts_id" json:"contactsId"` // 关联联系人
  20. ContactsName string `orm:"contacts_name" json:"contactsName"` // 联系人姓名
  21. Reminders string `orm:"reminders" json:"reminders"` // 提醒对象
  22. NextTime *gtime.Time `orm:"next_time" json:"nextTime"` // 下次联系时间
  23. Remark string `orm:"remark" json:"remark"` // 备注
  24. CreatedBy int `orm:"created_by" json:"createdBy"` // 创建者
  25. CreatedName string `orm:"created_name" json:"createdName"` // 创建人
  26. CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
  27. UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新者
  28. UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
  29. UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
  30. DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
  31. }