user.go 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. package models
  2. import (
  3. "time"
  4. "github.com/beego/beego/v2/client/orm"
  5. )
  6. type User struct {
  7. UserId int `orm:"pk" description:"用户id"`
  8. OpenId string `description:"openid"`
  9. UnionId string `description:"unionid"`
  10. NickName string `description:"用户昵称"`
  11. RealName string `description:"姓名"`
  12. Phone string `description:"手机号"`
  13. AreaCode string `description:"区号"`
  14. Email string `description:"邮箱"`
  15. SellerId int `description:"销售id(SysUserId)"`
  16. Company string `description:"所属公司"`
  17. ValidStartTime time.Time `description:"有效期开始时间"`
  18. ValidEndTime time.Time `description:"有效期结束时间"`
  19. Status int `description:"用户类型: 0表示禁用,1表示潜在客户,2表示正式客户"`
  20. CreateTime time.Time `description:"系统中首次新增用户的时间"`
  21. ModifyTime time.Time `description:"系统中用户信息变更的时间"`
  22. RegisterTime time.Time `description:"用户首次登录小程序的时间"`
  23. IsSubscribed bool `description:"是否关注公众号: 0表示没有关注,1表示关注"`
  24. IsRegistered bool `description:"是否注册: 0表示没有注册,1表示注册"`
  25. LastUpdateTime time.Time `description:"用户最近一次登录时间"`
  26. AccessToken string `description:"用户token"`
  27. Headimgurl string `description:"用户头像,最后一个数值代表正方形头像大小(有0、46、64、96、132数值可选,0代表640*640正方形头像),用户没有头像时该项为空"`
  28. }
  29. func (u *User) Insert() (insertId int64, err error) {
  30. o := orm.NewOrm()
  31. insertId, err = o.Insert(u)
  32. return
  33. }
  34. func (u *User) Update(cols []string) (err error) {
  35. o := orm.NewOrm()
  36. _, err = o.Update(u, cols...)
  37. return
  38. }
  39. type UserView struct {
  40. Headimgurl string `description:"用户头像,最后一个数值代表正方形头像大小(有0、46、64、96、132数值可选,0代表640*640正方形头像),用户没有头像时该项为空"`
  41. RealName string `description:"用户实际名称"`
  42. Phone string `description:"手机号码"`
  43. AreaCode string `description:"区号"`
  44. SellerName string `description:"销售名称"`
  45. SellerPhone string `description:"销售电话"`
  46. SellerAreaCode string `description:"销售电话区号"`
  47. Email string `description:"邮箱"`
  48. Componey string `description:"所属公司"`
  49. HasPermission string `description:"拥有权限"`
  50. ValidEndTime string `description:"服务截至时间"`
  51. IsRegistered bool `description:"是否注册:1:已注册,0:未注册"`
  52. Status int `description:"用户类型: 0表示禁用,1表示潜在客户,2表示正式客户"`
  53. }
  54. func GetUserByToken(token string) (item *User, err error) {
  55. sql := `SELECT * FROM user WHERE access_token=? `
  56. o := orm.NewOrm()
  57. err = o.Raw(sql, token).QueryRow(&item)
  58. return
  59. }
  60. // 根据openid获取用户关系
  61. func GetUserByOpenId(openId string) (item *User, err error) {
  62. sql := `SELECT * FROM user WHERE open_id=? `
  63. o := orm.NewOrm()
  64. err = o.Raw(sql, openId).QueryRow(&item)
  65. return
  66. }
  67. // 变更联系人是否已注册状态
  68. func ModifyUserRegisterStatus(userId int, status bool, registerTime, modifyTime time.Time) (err error) {
  69. o := orm.NewOrm()
  70. sql := `UPDATE user SET is_registered=?, register_time=?, modify_time=? WHERE user_id = ? `
  71. _, err = o.Raw(sql, status, registerTime, modifyTime, userId).Exec()
  72. return
  73. }
  74. func GetUserById(userId int) (item *User, err error) {
  75. o := orm.NewOrm()
  76. sql := `SELECT * FROM user WHERE user_id=? `
  77. err = o.Raw(sql, userId).QueryRow(&item)
  78. return
  79. }
  80. func GetUserList(condition string, pars []interface{}) (items []*User, err error) {
  81. o := orm.NewOrm()
  82. sql := `SELECT * FROM user WHERE 1=1 `
  83. if condition != "" {
  84. sql += condition
  85. }
  86. _, err = o.Raw(sql, pars...).QueryRows(&items)
  87. return
  88. }
  89. func GetUserByPhone(phone string) (item *User, err error) {
  90. o := orm.NewOrm()
  91. sql := `SELECT * FROM user WHERE phone=? `
  92. err = o.Raw(sql, phone).QueryRow(&item)
  93. return
  94. }
  95. func GetUserByEmail(email string) (item *User, err error) {
  96. sql := `SELECT * FROM user WHERE email=? `
  97. err = orm.NewOrm().Raw(sql, email).QueryRow(&item)
  98. return
  99. }