user_record.go 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "time"
  5. )
  6. type UserRecord struct {
  7. UserRecordId int `orm:"column(user_record_id);pk"`
  8. OpenId string `description:"用户openid,最大长度:32"`
  9. UnionId string `description:"用户unionid,最大长度:64"`
  10. Subscribe int `description:"是否关注"`
  11. NickName string `descritpion:"用户昵称,最大长度:32"`
  12. RealName string `descritpion:"用户实际名称,最大长度:32"`
  13. BindAccount string `descritpion:"绑定时的账号,最大长度:128"`
  14. Sex int `descritpion:"普通用户性别,1为男性,2为女性"`
  15. Province string `description:"普通用户个人资料填写的省份,最大长度:30"`
  16. City string `description:"普通用户个人资料填写的城市,最大长度:30"`
  17. Country string `description:"国家,如中国为CN,最大长度:30"`
  18. Headimgurl string `description:"用户第三方(微信)头像,最大长度:512"`
  19. CreateTime time.Time `description:"创建时间,关系添加时间、用户授权时间"`
  20. CreatePlatform int `description:"注册平台,1:日度点评公众号,2:管理后台,3:pc端网站,4:查研观向小程序;默认:1"`
  21. SessionKey string `description:"微信小程序会话密钥,最大长度:255"`
  22. UserId int `description:"用户id"`
  23. }
  24. // 根据openid获取用户关系
  25. // 12是买方研选 create_platform
  26. func GetUserRecordByUnionId(unionId string) (item *UserRecord, err error) {
  27. o := orm.NewOrmUsingDB("weekly_report")
  28. sql := `SELECT * FROM user_record WHERE union_id=? AND create_platform = 12 `
  29. err = o.Raw(sql, unionId).QueryRow(&item)
  30. return
  31. }
  32. // 根据用户id和平台id获取用户关系
  33. func GetUserRecordByUserOpenId(open_id string) (item *UserRecord, err error) {
  34. o := orm.NewOrmUsingDB("weekly_report")
  35. sql := `SELECT
  36. u.*
  37. FROM
  38. JOIN user_record AS u
  39. WHERE
  40. u.open_id = ?
  41. AND u.create_platform = 4
  42. AND u.bind_account != ''
  43. GROUP BY u.union_id`
  44. err = o.Raw(sql, open_id).QueryRow(&item)
  45. return
  46. }
  47. func GetUserRecordList(condition string, pars []interface{}) (items []*UserRecord, err error) {
  48. o := orm.NewOrmUsingDB("weekly_report")
  49. sql := ` SELECT *
  50. FROM user_record
  51. WHERE 1= 1 `
  52. if condition != "" {
  53. sql += condition
  54. }
  55. _, err = o.Raw(sql, pars).QueryRows(&items)
  56. return
  57. }
  58. // 根据openid获取用户关系
  59. func GetUserRecordByOpenId(openId string) (item *UserRecord, err error) {
  60. o := orm.NewOrmUsingDB("weekly_report")
  61. sql := `SELECT * FROM user_record WHERE open_id=? `
  62. err = o.Raw(sql, openId).QueryRow(&item)
  63. return
  64. }
  65. // 根据openid解除绑定用户关系
  66. func UnBindUserRecordByOpenid(openId string) (err error) {
  67. o := orm.NewOrmUsingDB("weekly_report")
  68. msql := ` UPDATE user_record SET user_id = 0,bind_account="" WHERE open_id = ? `
  69. _, err = o.Raw(msql, openId).Exec()
  70. return
  71. }