report_cache.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. package cache
  2. import (
  3. "fmt"
  4. "hongze/hongze_api/models"
  5. "hongze/hongze_api/services/go_redis"
  6. "hongze/hongze_api/utils"
  7. )
  8. // UserViewRedisData 阅读数据
  9. type UserViewRedisData struct {
  10. Mobile string `json:"mobile"`
  11. Email string `json:"email"`
  12. RealName string `json:"real_name"`
  13. CompanyName string `json:"company_name"`
  14. ViewTime string `json:"view_time" description:"阅读时间,格式:2022-02-17 13:06:13"`
  15. ProductId int `json:"product_id" description:"报告所属产品,ficc:1,权益:2"`
  16. CompanyId int `json:"company_id" description:"客户id"`
  17. }
  18. // PushViewRecordNewRedisData 阅读数据加入到redis
  19. func PushViewRecordNewRedisData(reportViewRecord *models.ReportViewRecord, companyId int) bool {
  20. data := &UserViewRedisData{
  21. Mobile: reportViewRecord.Mobile,
  22. Email: reportViewRecord.Email,
  23. RealName: reportViewRecord.RealName,
  24. CompanyName: reportViewRecord.CompanyName,
  25. ViewTime: reportViewRecord.CreateTime.Format(utils.FormatDateTime),
  26. ProductId: 1,
  27. CompanyId: companyId,
  28. }
  29. err := go_redis.LPush(utils.CACHE_KEY_USER_VIEW, data)
  30. if err != nil {
  31. fmt.Println("PushViewRecordNewRedisData LPush Err:" + err.Error())
  32. }
  33. return true
  34. }