wx_user_rai_label.go 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package models
  2. import (
  3. "fmt"
  4. "github.com/beego/beego/v2/client/orm"
  5. "time"
  6. )
  7. type WxUserRaiLabelRedis struct {
  8. UserId int `description:"用户ID"`
  9. SourceId int `description:"资源ID"`
  10. Label string `description:"标签内容"`
  11. SourceType int `description:"来源1:搜索关键字标签、2:产业/个股标签(线下活动)、3:产业/个股标签(线下路演)、4:产业/个股标签(线上活动)、5:产业/个股标签(线上路演)、6:销售输入标签、7:产业/个股标签(报告)、8:报告类型标签"`
  12. CreateTime time.Time `description:"创建时间"`
  13. RegisterPlatform int `description:"来源 1小程序,2:网页"`
  14. }
  15. type WxUserRaiLabel struct {
  16. RaiLabelId int `orm:"column(rai_label_id);pk"`
  17. UserId int `description:"用户ID"`
  18. RealName string `description:"用户实际名称"`
  19. Mobile string `description:"手机号"`
  20. Email string `description:"邮箱"`
  21. CompanyId int `description:"公司id"`
  22. CompanyName string `description:"公司名称"`
  23. Label string `description:"标签内容"`
  24. SourceId int `description:"来源ID"`
  25. SourceType int `description:"来源1:搜索关键字标签、2:产业/个股标签(线下活动)、3:产业/个股标签(线下路演)、4:产业/个股标签(线上活动)、5:产业/个股标签(线上路演)、6:销售输入标签、7:产业/个股标签(报告)、8:报告类型标签"`
  26. SysUserId int `description:"创建人id"`
  27. SysUserRealName string `description:"创建人名称"`
  28. CreateTime time.Time `description:"创建时间"`
  29. ModifyTime time.Time `description:"更新时间"`
  30. RegisterPlatform int `description:"来源 1小程序,2:网页"`
  31. TableName string `description:"数据来源的表名"`
  32. }
  33. // 添加
  34. func AddWxUserRaiLabel(item *WxUserRaiLabel) (err error) {
  35. o, err := orm.NewOrm().Begin()
  36. if err != nil {
  37. return
  38. }
  39. defer func() {
  40. fmt.Println(err)
  41. if err == nil {
  42. o.Commit()
  43. } else {
  44. o.Rollback()
  45. }
  46. }()
  47. //删除原有数据
  48. sql := ` DELETE FROM wx_user_rai_label WHERE user_id = ? AND label = ? `
  49. _, err = o.Raw(sql, item.UserId, item.Label).Exec()
  50. if err != nil {
  51. return
  52. }
  53. _, err = o.Insert(item)
  54. return
  55. }