new_user_send_rule.go 2.4 KB

123456789101112131415161718192021
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // NewUserSendRule is the golang structure for table new_user_send_rule.
  9. type NewUserSendRule struct {
  10. Id int `json:"id" orm:"id" description:""` //
  11. Name string `json:"name" orm:"name" description:"规则名称"` // 规则名称
  12. RegisterTagIds string `json:"registerTagIds" orm:"register_tag_ids" description:"注册标签id,多个时使用逗号分割"` // 注册标签id,多个时使用逗号分割
  13. CallState string `json:"callState" orm:"call_state" description:"外呼状态 多个时使用逗号分割 ,0-表示未拨打 ,标签内使用-连接 如:“0,notDeal,notDeal#ivr” 表示,未拨打的、全部记录为未接听的、全部记录为未接听或ivr"` // 外呼状态 多个时使用逗号分割 ,0-表示未拨打 ,标签内使用-连接 如:“0,notDeal,notDeal#ivr” 表示,未拨打的、全部记录为未接听的、全部记录为未接听或ivr
  14. BehaviorTagIds string `json:"behaviorTagIds" orm:"behavior_tag_ids" description:"行为标签id,多个时逗号分割"` // 行为标签id,多个时逗号分割
  15. CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:""` //
  16. UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:""` //
  17. Trailstatus string `json:"trailstatus" orm:"trailstatus" description:"销售进程,jianyu_subjectdb_test.dwd_f_crm_clue_info 00-无意向,09-拒绝沟通"` // 销售进程,jianyu_subjectdb_test.dwd_f_crm_clue_info 00-无意向,09-拒绝沟通
  18. }