article_apply_appointment_expert.go 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "time"
  5. )
  6. type CygxArticleApplyAppointmentExpert struct {
  7. Id int `gorm:"column:id;primary_key;AUTO_INCREMENT" json:"id"`
  8. ArticleId int `gorm:"column:article_id" json:"article_id"` // cygx_article表article_id
  9. UserId int `gorm:"column:user_id" json:"user_id"` // 用户ID
  10. Mobile string `gorm:"column:mobile" json:"mobile"` // 手机号
  11. Email string `gorm:"column:email" json:"email"` // 邮箱
  12. CompanyId int `gorm:"column:company_id;default:0" json:"company_id"` // 公司ID
  13. CompanyName string `gorm:"column:company_name" json:"company_name"` // 公司名称
  14. RealName string `gorm:"column:real_name" json:"real_name"` // 用户实际名称
  15. SellerName string `gorm:"column:seller_name" json:"seller_name"` // 所属销售
  16. CreateTime time.Time `gorm:"column:create_time" json:"create_time"` // 创建时间
  17. ModifyTime time.Time `gorm:"column:modify_time" json:"modify_time"` // 修改时间
  18. RegisterPlatform int `gorm:"column:register_platform;default:1;NOT NULL" json:"register_platform"` // 来源 1小程序,2:网页
  19. }
  20. // 添加历史信息
  21. func AddCygxArticleApplyAppointmentExpert(item *CygxArticleApplyAppointmentExpert) (lastId int64, err error) {
  22. o := orm.NewOrm()
  23. lastId, err = o.Insert(item)
  24. return
  25. }
  26. // 获取数量
  27. func GetCygxArticleApplyAppointmentExpertCount(condition string, pars []interface{}) (count int, err error) {
  28. sqlCount := ` SELECT COUNT(1) AS count FROM cygx_article_apply_appointment_expert WHERE 1= 1 `
  29. if condition != "" {
  30. sqlCount += condition
  31. }
  32. o := orm.NewOrm()
  33. err = o.Raw(sqlCount, pars).QueryRow(&count)
  34. return
  35. }