user.go 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package models
  2. import (
  3. "eta/eta_mini_crm_ht/utils"
  4. "github.com/beego/beego/v2/client/orm"
  5. "time"
  6. )
  7. type User struct {
  8. Id int `orm:"pk" description:"用户id"`
  9. TemplateUserId int `description:"临时用户ID"`
  10. RealName string `description:"姓名"`
  11. IdNo string `description:"证件号"`
  12. IdKind int `description:"证件类型"`
  13. IdBeginDate time.Time `description:"证件开始日期"`
  14. IdEndDate time.Time `description:"证件结束日期"`
  15. AccountStatus AccountStatus `description:"账号状态"`
  16. CreatedTime time.Time `description:"创建时间"`
  17. UpdatedTime time.Time `description:"更新时间"`
  18. }
  19. func (u User) FillUserInfo(user *TemplateUser) UserView {
  20. return UserView{
  21. RealName: u.RealName,
  22. AccountStatus: u.AccountStatus,
  23. LastReadTime: user.LastReadTime.Format(time.DateTime),
  24. FollowingGzh: user.FollowingGzh,
  25. ReadCount: user.ReadCount,
  26. Mobile: user.Mobile,
  27. CreatedTime: u.CreatedTime.Format(time.DateTime),
  28. }
  29. }
  30. type UserView struct {
  31. RealName string `description:"姓名"`
  32. Mobile string `description:"手机号码"`
  33. FollowingGzh bool
  34. LastReadTime string
  35. ReadCount int
  36. AccountStatus AccountStatus `description:"账号状态"`
  37. CreatedTime string
  38. }
  39. func GetPageOfficialUserList(condition string, pars []interface{}, sortStr string, startSize int, pageSize int) (total int, userList []*UserView, err error) {
  40. o := orm.NewOrm()
  41. totalSql := `SELECT distinct template_user_id FROM users`
  42. var officialIds []int
  43. _, err = o.Raw(totalSql).QueryRows(&officialIds)
  44. if err != nil {
  45. return
  46. }
  47. total = len(officialIds)
  48. idCondition := " and tus.id in (" + utils.GetOrmReplaceHolder(len(officialIds)) + ")"
  49. sql := `SELECT us.real_name as real_name, tus.mobile,tus.following_gzh,tus.created_time,tus.read_count,tus.last_read_time,tus.account_status FROM template_users tus LEFT JOIN (select real_name,template_user_id from users) us on us.template_user_id=tus.id WHERE 1=1`
  50. sql = sql + idCondition
  51. if condition != "" {
  52. sql += condition
  53. }
  54. if sortStr != `` {
  55. sql += ` ORDER BY ` + sortStr
  56. }
  57. sql += ` LIMIT ?,? `
  58. _, err = o.Raw(sql, officialIds, pars, startSize, pageSize).QueryRows(&userList)
  59. if userList == nil {
  60. userList = []*UserView{}
  61. }
  62. return
  63. }