user.go 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. package models
  2. import (
  3. "context"
  4. "time"
  5. "github.com/beego/beego/v2/client/orm"
  6. )
  7. type User struct {
  8. UserId int `orm:"pk" description:"用户id"`
  9. RealName string `description:"姓名"`
  10. Phone string `description:"手机号"`
  11. AreaCode string `description:"区号"`
  12. Email string `description:"邮箱"`
  13. SellerId int `description:"销售id(SysUserId)"`
  14. Company string `description:"所属公司"`
  15. ValidStartTime time.Time `description:"有效期开始时间"`
  16. ValidEndTime time.Time `description:"有效期结束时间"`
  17. Status int `description:"用户类型: 0表示禁用,1表示潜在客户,2表示正式客户"`
  18. CreateTime time.Time `description:"系统中首次新增用户的时间"`
  19. ModifyTime time.Time `description:"系统中用户信息变更的时间"`
  20. RegisterTime time.Time `description:"用户首次登录小程序的时间"`
  21. IsSubscribed bool `description:"是否关注公众号: 0表示没有关注,1表示关注"`
  22. IsRegistered bool `description:"是否注册: 0表示没有注册,1表示注册"`
  23. }
  24. type UserView struct {
  25. UserId int `orm:"pk" description:"用户id"`
  26. RealName string `description:"姓名"`
  27. Phone string `description:"手机号"`
  28. AreaCode string `description:"区号"`
  29. Email string `description:"邮箱"`
  30. SellerId int `description:"销售id(SysUserId)"`
  31. SellerName string `description:"销售姓名"`
  32. Company string `description:"所属公司"`
  33. ValidStartTime time.Time `description:"有效期开始时间"`
  34. ValidEndTime time.Time `description:"有效期结束时间"`
  35. Status int `description:"用户类型: 0表示禁用,1表示潜在客户,2表示正式客户"`
  36. ReadCnt int `description:"用户阅读量"`
  37. CreateTime time.Time `description:"系统中首次新增用户的时间"`
  38. ModifyTime time.Time `description:"系统中用户信息变更的时间"`
  39. RegisterTime time.Time `description:"用户首次登录小程序的时间"`
  40. IsSubscribed bool `description:"是否关注公众号: 0表示没有关注,1表示关注"`
  41. IsRegistered bool `description:"是否注册: 0表示没有注册,1表示注册"`
  42. }
  43. func (u *User) Save() (err error) {
  44. o := orm.NewOrm()
  45. _, err = o.InsertOrUpdate(u)
  46. return
  47. }
  48. func (u *User) Update(cols []string) (err error) {
  49. o := orm.NewOrm()
  50. _, err = o.Update(u, cols...)
  51. return
  52. }
  53. func UpdateUserStatus(condition string, pars []interface{}) (err error) {
  54. o := orm.NewOrm()
  55. sql := ` UPDATE user SET status=0 WHERE 1=1 `
  56. if condition != "" {
  57. sql += condition
  58. }
  59. _, err = o.Raw(sql, pars).Exec()
  60. return
  61. }
  62. func SaveUser(user *User, chartPermissionIds []int) (err error) {
  63. o := orm.NewOrm()
  64. err = o.DoTx(func(ctx context.Context, txOrm orm.TxOrmer) error {
  65. insertId, er := txOrm.InsertOrUpdate(user)
  66. if er != nil {
  67. return er
  68. }
  69. if user.UserId != 0 {
  70. insertId = int64(user.UserId)
  71. } else {
  72. user.UserId = int(insertId)
  73. }
  74. // 先删除再增加
  75. sql := `DELETE FROM user_chart_permission_mapping WHERE user_id=?`
  76. _, er = txOrm.Raw(sql, insertId).Exec()
  77. if er != nil {
  78. return er
  79. }
  80. for _, id := range chartPermissionIds {
  81. userChartPermissionMapping := new(UserChartPermissionMapping)
  82. userChartPermissionMapping.UserId = int(insertId)
  83. userChartPermissionMapping.ChartPermissionId = id
  84. _, er = txOrm.Insert(userChartPermissionMapping)
  85. if er != nil {
  86. return er
  87. }
  88. }
  89. return nil
  90. })
  91. return
  92. }
  93. func GetUserByPhone(phone, areaCode string) (item *User, err error) {
  94. o := orm.NewOrm()
  95. sql := `SELECT * FROM user WHERE phone=? AND area_code=?`
  96. err = o.Raw(sql, phone, areaCode).QueryRow(&item)
  97. return
  98. }
  99. func GetUserByEmail(email string) (item *User, err error) {
  100. o := orm.NewOrm()
  101. sql := `SELECT * FROM user WHERE email=? `
  102. err = o.Raw(sql, email).QueryRow(&item)
  103. return
  104. }
  105. func GetUserById(userId int) (item *User, err error) {
  106. o := orm.NewOrm()
  107. sql := `SELECT * FROM user WHERE user_id=? `
  108. err = o.Raw(sql, userId).QueryRow(&item)
  109. return
  110. }
  111. func GetUserList(condition string, pars []interface{}, startSize, pageSize int) (items []*UserView, err error) {
  112. sql := `SELECT u.*, su.sys_real_name AS seller_name FROM user AS u
  113. LEFT JOIN sys_user AS su
  114. ON u.seller_id = su.sys_user_id
  115. WHERE 1=1 AND (u.phone IS NOT NULL OR u.email IS NOT NULL) `
  116. if condition != "" {
  117. sql += condition
  118. }
  119. sql += ` ORDER BY modify_time DESC LIMIT ?,? `
  120. o := orm.NewOrm()
  121. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  122. return
  123. }
  124. func GetUserCount(condition string, pars []interface{}) (count int, err error) {
  125. sql := `SELECT COUNT(*) AS count FROM user WHERE 1=1 AND (phone IS NOT NULL OR email IS NOT NULL) `
  126. if condition != "" {
  127. sql += condition
  128. }
  129. o := orm.NewOrm()
  130. err = o.Raw(sql, pars...).QueryRow(&count)
  131. return
  132. }
  133. func DeleteUserById(userId int) (err error) {
  134. o := orm.NewOrm()
  135. err = o.DoTx(func(ctx context.Context, txOrm orm.TxOrmer) error {
  136. sql := `DELETE FROM user WHERE user_id=?`
  137. _, e := txOrm.Raw(sql, userId).Exec()
  138. if e != nil {
  139. return e
  140. }
  141. sql = `DELETE FROM user_chart_permission_mapping WHERE user_id=?`
  142. _, e = txOrm.Raw(sql, userId).Exec()
  143. if e != nil {
  144. return e
  145. }
  146. return nil
  147. })
  148. return
  149. }