| 12345678910111213141516171819202122232425262728293031323334353637 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // PlatFollowup is the golang structure for table plat_followup.
- type PlatFollowup struct {
- Id int `orm:"id,primary" json:"id"` // 主键
- FollowType string `orm:"follow_type" json:"followType"` // 跟进类型(10电话20邮件30拜访)
- FollowDate *gtime.Time `orm:"follow_date" json:"followDate"` // 跟进时间
- FollowContent string `orm:"follow_content" json:"followContent"` // 跟进内容
- FurtherPlan string `orm:"further_plan" json:"furtherPlan"` // 下一步跟进计划和目标
- Effect string `orm:"effect" json:"effect"` // 达成效果
- Issue string `orm:"issue" json:"issue"` // 问题或困难
- TargetId int `orm:"target_id" json:"targetId"` // 跟进对象ID
- TargetType string `orm:"target_type" json:"targetType"` // 跟进对象类型(10客户,20项目,30合同,40回款)
- TargetName string `orm:"target_name" json:"targetName"` // 跟进对象
- CustId int `orm:"cust_id" json:"custId"` // 关联客户
- CustName string `orm:"cust_name" json:"custName"` // 客户名称
- ContactsId int `orm:"contacts_id" json:"contactsId"` // 关联联系人
- ContactsName string `orm:"contacts_name" json:"contactsName"` // 联系人姓名
- Reminders string `orm:"reminders" json:"reminders"` // 提醒对象
- NextTime *gtime.Time `orm:"next_time" json:"nextTime"` // 下次联系时间
- Remark string `orm:"remark" json:"remark"` // 备注
- CreatedBy int `orm:"created_by" json:"createdBy"` // 创建者
- CreatedName string `orm:"created_name" json:"createdName"` // 创建人
- CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
- UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新者
- UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
- UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
- DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
- }
|