template_user.go 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package user
  2. import (
  3. "eta/eta_mini_ht_api/models"
  4. "gorm.io/gorm"
  5. "time"
  6. )
  7. const (
  8. NotDeleted = 0
  9. Deleted = 1
  10. )
  11. type TemplateUser struct {
  12. Id int `gorm:"column:id;primaryKey;autoIncrement:'id'"`
  13. Username string `gorm:"column:username;type:varchar(20);comment:用户名"`
  14. Mobile string `gorm:"column:mobile;type:varchar(15);comment:手机号"`
  15. OpenId string `gorm:"column:open_id;type:varchar(50);comment:open_id"`
  16. GzhOpenId string `gorm:"column:gzh_open_id;type:varchar(255);comment:gzh_open_id"`
  17. UnionId string `gorm:"column:union_id;type:varchar(50);comment:union_id"`
  18. ReadCount int `gorm:"column:read_count;type:int(11);comment:阅读次数"`
  19. FollowingGzh int `gorm:"column:following_gzh;type:int(1);comment:是否关注公众号"`
  20. LastReadTime time.Time `gorm:"column:last_read_time;type:timestamps;comment:最后阅读时间"`
  21. IsDeleted int `gorm:"column:is_deleted;type:int(11);comment:是否删除"`
  22. CreatedTime time.Time `gorm:"column:created_time;type:timestamps;comment:创建时间"`
  23. UpdatedTime time.Time `gorm:"column:updated_time;type:timestamps;comment:更新时间"`
  24. }
  25. func (t *TemplateUser) BeforeCreate(tx *gorm.DB) (err error) {
  26. t.CreatedTime = time.Now()
  27. t.IsDeleted = NotDeleted
  28. return
  29. }
  30. func GetUserByMobile(mobile string) (user TemplateUser, err error) {
  31. return queryByColumn("mobile", mobile)
  32. }
  33. func GetUserByIdAndCountReadTimes(userId int) (err error) {
  34. return models.Main().Model(&TemplateUser{}).Where("id = ?", userId).Update("read_count", gorm.Expr("read_count + ?", 1)).Error
  35. }
  36. func GetUserByOpenId(openId string) (user TemplateUser, err error) {
  37. return queryByColumn("open_id", openId)
  38. }
  39. func GetUserByUnionId(unionId string) (user TemplateUser, err error) {
  40. return queryByColumn("union_id", unionId)
  41. }
  42. func queryByColumn(column string, value string) (user TemplateUser, err error) {
  43. err = models.Main().Unscoped().Where(column, value).First(&user).Error
  44. return
  45. }
  46. func RegisterTemplateUser(user *TemplateUser) (err error) {
  47. err = models.Main().Create(&user).Error
  48. return
  49. }
  50. func BindMobile(userId int, mobile string) (err error) {
  51. err = models.Main().Table("template_users").Where("id = ?", userId).Updates(map[string]interface{}{"mobile": mobile, "updated_time": time.Now()}).Error
  52. return
  53. }
  54. func BindXcxOpenId(userId int, xcxOpenId string) (err error) {
  55. err = models.Main().Table("template_users").Where("id = ?", userId).Updates(map[string]interface{}{"open_id": xcxOpenId, "updated_time": time.Now()}).Error
  56. return
  57. }
  58. func BindGzhOpenId(userId int, gzhOpenId string, followingGzh int) (err error) {
  59. err = models.Main().Table("template_users").Where("id = ?", userId).Updates(map[string]interface{}{"gzh_open_id": gzhOpenId, "following_gzh": followingGzh, "updated_time": time.Now()}).Error
  60. return
  61. }
  62. func GetUserByGzhOpenId(gzhOpenId string) (user TemplateUser, err error) {
  63. return queryByColumn("gzh_open_id", gzhOpenId)
  64. }