1234567891011121314151617181920212223 |
- // =================================================================================
- // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
- // =================================================================================
- package do
- import (
- "github.com/gogf/gf/v2/frame/g"
- "github.com/gogf/gf/v2/os/gtime"
- )
- // NewUserSendRule is the golang structure of table new_user_send_rule for DAO operations like Where/Data.
- type NewUserSendRule struct {
- g.Meta `orm:"table:new_user_send_rule, do:true"`
- Id interface{} //
- Name interface{} // 规则名称
- RegisterTagIds interface{} // 注册标签id,多个时使用逗号分割
- CallState interface{} // 外呼状态 多个时使用逗号分割 ,0-表示未拨打 ,标签内使用-连接 如:“0,notDeal,notDeal#ivr” 表示,未拨打的、全部记录为未接听的、全部记录为未接听或ivr
- BehaviorTagIds interface{} // 行为标签id,多个时逗号分割
- CreateTime *gtime.Time //
- UpdateTime *gtime.Time //
- Trailstatus interface{} // 销售进程,jianyu_subjectdb_test.dwd_f_crm_clue_info 00-无意向,09-拒绝沟通
- }
|