user_read_record.go 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. package models
  2. import (
  3. "strings"
  4. "time"
  5. "github.com/beego/beego/v2/client/orm"
  6. )
  7. type UserReadRecord struct {
  8. UserReadRecordId int `orm:"pk" description:"id"`
  9. UserId int `description:"用户id"`
  10. ReportId int `description:"报告id"`
  11. ReportTitle string `description:"报告标题"`
  12. // ChartPermissionId1 string `description:"一级品种id"`
  13. // ChartPermissionId2 string `description:"二级品种id"`
  14. ChartPermissionName string `description:"二级品种名称"`
  15. ClassifyId1 int `description:"一级级分类id"`
  16. ClassifyName1 string `description:"一级分类名称"`
  17. ClassifyId2 int `description:"二级分类id"`
  18. ClassifyName2 string `description:"二级分类名称"`
  19. Timestamp int `description:"阅读开始时间戳"`
  20. EndTimestamp int `description:"阅读结束时间戳"`
  21. CreateTime time.Time `description:"创建时间"`
  22. CreateDate string `description:"创建日期"`
  23. StayTime string `description:"停留时间"`
  24. StayTimestamp string `description:"停留时间戳"`
  25. ReportType int `description:"报告类型:1-普通研报;2-pdf研报"`
  26. }
  27. func (u *UserReadRecord) Insert() (insertId int64, err error) {
  28. o := orm.NewOrm()
  29. insertId, err = o.Insert(u)
  30. return
  31. }
  32. func (u *UserReadRecord) Update(cols []string) (err error) {
  33. o := orm.NewOrm()
  34. _, err = o.Update(u, cols...)
  35. return
  36. }
  37. func GetUserReadRecordListById(recordId int) (items *UserReadRecord, err error) {
  38. o := orm.NewOrm()
  39. sql := `SELECT * FROM user_read_record WHERE 1=1 AND user_read_record_id = ?`
  40. err = o.Raw(sql, recordId).QueryRow(&items)
  41. return
  42. }
  43. func GetUserReadRecordCountByReportPdfIdAndUserId(reportId, userId int) (count int, err error) {
  44. o := orm.NewOrm()
  45. sql := `SELECT COUNT(*) AS count FROM user_read_record WHERE 1=1 AND report_id=? AND user_id = ? AND report_type = 2`
  46. err = o.Raw(sql, reportId, userId).QueryRow(&count)
  47. return
  48. }
  49. func GetUserReadRecordListByRcordIds(recordIds []string) (items []*UserReadRecord, err error) {
  50. o := orm.NewOrm()
  51. sql := `SELECT * FROM user_read_record WHERE 1=1 `
  52. var stringIds string
  53. if len(recordIds) > 0 {
  54. sql += ` AND user_read_record_id in (?) `
  55. stringIds = strings.Join(recordIds, ",")
  56. }
  57. _, err = o.Raw(sql, stringIds).QueryRows(&items)
  58. return
  59. }
  60. func UpdateUserReadRecordById(recordId, endTimeStamp, stayTime int, stayTimeStr string) (err error) {
  61. o := orm.NewOrm()
  62. sql := `UPDATE user_read_record SET end_timestamp=?, stay_timestamp=?, stay_time=? WHERE 1=1 AND user_read_record_id = ? `
  63. _, err = o.Raw(sql, endTimeStamp, stayTime, stayTimeStr, recordId).Exec()
  64. return
  65. }
  66. func UpdateUserReadRecordByRecordIds(recordIds []string, endTimeStamp, stayTime int, stayTimeStr string) (err error) {
  67. o := orm.NewOrm()
  68. sql := `UPDATE user_read_record SET end_timestamp=?, stay_timestamp=?, stay_time=? WHERE 1=1 `
  69. var stringIds string
  70. if len(recordIds) > 0 {
  71. sql += ` AND user_read_record_id in (?) `
  72. stringIds = strings.Join(recordIds, ",")
  73. }
  74. _, err = o.Raw(sql, endTimeStamp, stayTime, stayTimeStr, stringIds).Exec()
  75. return
  76. }