activity_voice_history.go 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "time"
  5. )
  6. type CygxActivityVoiceHistory struct {
  7. Id int `orm:"column(id);pk"`
  8. ActivityId int `description:"活动ID"`
  9. UserId int `description:"用户ID"`
  10. CreateTime time.Time `description:"创建时间"`
  11. Mobile string `description:"手机号"`
  12. Email string `description:"邮箱"`
  13. CompanyId int `description:"公司id"`
  14. CompanyName string `description:"公司名称"`
  15. RealName string `description:"用户实际名称"`
  16. SellerName string `description:"所属销售"`
  17. PlaySeconds string `description:"播放时间 单位s"`
  18. ModifyTime time.Time `description:"视频修改时间"`
  19. RegisterPlatform int // 来源 1小程序,2:网页
  20. }
  21. // 添加
  22. func AddCygxActivityVoiceHistory(item *CygxActivityVoiceHistory) (err error) {
  23. o := orm.NewOrm()
  24. _, err = o.Insert(item)
  25. return
  26. }
  27. func GetLastCygxActivityVoiceHistory(activityId, userId int) (item *CygxActivityVoiceHistory, err error) {
  28. o := orm.NewOrm()
  29. sql := ` SELECT * FROM cygx_activity_voice_history WHERE activity_id=? AND user_id=? AND register_platform = 1 ORDER BY create_time DESC limit 1 `
  30. err = o.Raw(sql, activityId, userId).QueryRow(&item)
  31. return
  32. }
  33. func UpdateLastCygxActivityVoiceHistory(playSeconds string, lastId int) (err error) {
  34. o := orm.NewOrm()
  35. sql := ` UPDATE cygx_activity_voice_history SET play_seconds = play_seconds +? WHERE id=? `
  36. _, err = o.Raw(sql, playSeconds, lastId).Exec()
  37. return
  38. }
  39. // 获取列表信息根据手机号分组
  40. func GetActivityVoiceHistoryByMobileList(condition string) (items []*CygxActivityVoiceHistory, err error) {
  41. o := orm.NewOrm()
  42. sql := `SELECT * FROM cygx_activity_voice_history WHERE 1 =1 ` + condition + ` GROUP BY user_id `
  43. _, err = o.Raw(sql).QueryRows(&items)
  44. return
  45. }
  46. // 修改用户浏览活动音频的相关信息
  47. func UpdateCygxActivityVoiceHistory(wxUser *WxUserItem) (err error) {
  48. o := orm.NewOrm()
  49. var sql string
  50. if wxUser.Mobile != "" {
  51. sql = `UPDATE cygx_activity_voice_history SET email=?,company_id=?,company_name=?,user_id=?,real_name=? WHERE mobile=? `
  52. _, err = o.Raw(sql, wxUser.Email, wxUser.CompanyId, wxUser.CompanyName, wxUser.UserId, wxUser.RealName, wxUser.Mobile).Exec()
  53. } else if wxUser.Email != "" {
  54. sql = `UPDATE cygx_activity_voice_history SET mobile=?,company_id=?,company_name=?,user_id=?,real_name=? WHERE email=? `
  55. _, err = o.Raw(sql, wxUser.Mobile, wxUser.CompanyId, wxUser.CompanyName, wxUser.UserId, wxUser.RealName, wxUser.Email).Exec()
  56. }
  57. return
  58. }
  59. // 获取列表信息根据手机号分组
  60. func GetActivityVoiceHistoryByMobileListCRM_16_5Init(condition string) (items []*CygxActivityVoiceHistory, err error) {
  61. o := orm.NewOrm()
  62. sql := `SELECT mobile,activity_id ,MAX(create_time) as create_time FROM cygx_activity_voice_history WHERE 1 =1 ` + condition + ` GROUP BY mobile ,activity_id `
  63. _, err = o.Raw(sql).QueryRows(&items)
  64. return
  65. }
  66. type CygxActivityVoiceHistoryResp struct {
  67. ActivityVoiceId int `orm:"column(activity_voice_id);pk" description:"活动音频ID"`
  68. VoiceName string `description:"音频名称"`
  69. UserId int `description:"用户ID"`
  70. Mobile string `description:"手机号"`
  71. Email string `description:"邮箱"`
  72. CompanyId int `description:"公司id"`
  73. CompanyName string `description:"公司名称"`
  74. RealName string `description:"用户实际名称"`
  75. CreateTime string `description:"创建时间"`
  76. ActivityId int `description:"活动ID"`
  77. RegisterPlatform int `description:"来源 1小程序,2:网页"`
  78. RecordId int `description:"日志ID"`
  79. }
  80. // 列表
  81. func GetCygxActivityVoiceHistoryListNoLimit(condition string, pars []interface{}) (items []*CygxActivityVoiceHistoryResp, err error) {
  82. o := orm.NewOrm()
  83. sql := `SELECT
  84. a.voice_name,
  85. a.activity_voice_id,
  86. a.activity_id,
  87. b.user_id,
  88. b.id as record_id,
  89. b.real_name,
  90. b.mobile,
  91. b.email,
  92. b.company_id,
  93. b.company_name,
  94. b.create_time
  95. FROM
  96. cygx_activity_voice AS a
  97. INNER JOIN cygx_activity_voice_history AS b ON a.activity_voice_id = b.activity_voice_id WHERE 1= 1 `
  98. if condition != "" {
  99. sql += condition
  100. }
  101. _, err = o.Raw(sql, pars).QueryRows(&items)
  102. return
  103. }