user_message.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package user
  2. import (
  3. logger "eta/eta_mini_ht_api/common/component/log"
  4. "eta/eta_mini_ht_api/models"
  5. "gorm.io/gorm"
  6. "time"
  7. )
  8. type MessageType string
  9. const (
  10. UnReadStatus StatusType = "UNREAD"
  11. ReadStatus StatusType = "READ"
  12. MaxBatchNum = 1000
  13. )
  14. // UserMessage 表示 user_message 表的模型
  15. type UserMessage struct {
  16. Id int `gorm:"primaryKey;autoIncrement;column:id"`
  17. From int `gorm:"column:from"`
  18. To int `gorm:"column:to"`
  19. SourceId int `gorm:"column:source_id"`
  20. Message string `gorm:"column:message"`
  21. Type SourceType `gorm:"column:type;type:enum('REPORT','VIDEO','AUDIO')"`
  22. Status StatusType `gorm:"column:status;type:enum('UNREAD','READ')"`
  23. CreatedTime time.Time `gorm:"column:created_time;type:timestamps;comment:创建时间"`
  24. UpdatedTime time.Time `gorm:"column:updated_time"`
  25. }
  26. func (u *UserMessage) BeforeCreate(_ *gorm.DB) (err error) {
  27. u.CreatedTime = time.Now()
  28. return
  29. }
  30. func CreateMessage(message UserMessage) (err error) {
  31. db := models.Main()
  32. return db.Create(&message).Error
  33. }
  34. func BatchInsertMessage(messages []UserMessage) (err error) {
  35. db := models.Main()
  36. //手动事务
  37. tx := db.Begin()
  38. err = db.CreateInBatches(messages, MaxBatchNum).Error
  39. if err != nil {
  40. logger.Error("批量插入消息失败:%v", err)
  41. tx.Rollback()
  42. return
  43. }
  44. tx.Commit()
  45. return nil
  46. }