wx_user.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package wx_user
  2. import (
  3. "rdluck_tools/orm"
  4. "time"
  5. )
  6. type WxUser struct {
  7. UserId int64 `orm:"column(user_id);pk"`
  8. Mobile string
  9. Email string
  10. CompanyId int
  11. RealName string `description:"姓名"`
  12. CreatedTime time.Time
  13. MobileTwo string `description:"备用手机号"`
  14. BusinessCardUrl string `description:"名片"`
  15. IsMaker int `description:"是否决策人,1:是,0:否"`
  16. Position string `description:"职位"`
  17. Sex int `description:"普通用户性别,1为男性,2为女性"`
  18. DepartmentName string `description:"联系人部门"`
  19. RegisterTime time.Time
  20. RegisterPlatform int
  21. }
  22. type OpenIdList struct {
  23. OpenId string
  24. }
  25. //获取所有的用户openid列表
  26. func GetOpenIdList(openIdStr string) (items []*OpenIdList, err error) {
  27. sql := `SELECT DISTINCT ur.open_id FROM wx_user AS wu
  28. INNER JOIN company AS c ON c.company_id = wu.company_id
  29. INNER JOIN company_product AS d ON c.company_id=d.company_id
  30. INNER join user_record as ur on wu.user_id=ur.user_id
  31. WHERE ur.open_id != "" and ur.create_platform=1 AND d.status IN('正式','试用','永续') `
  32. if openIdStr != "" {
  33. sql += ` AND ur.open_id in (` + openIdStr + `) `
  34. }
  35. _, err = orm.NewOrm().Raw(sql).QueryRows(&items)
  36. return
  37. }
  38. //根据手机号获取用户的openid列表
  39. func GetOpenIdListByMobile(mobile, openIdStr string) (items []*OpenIdList, err error) {
  40. sql := `SELECT DISTINCT ur.open_id FROM wx_user AS wu
  41. INNER JOIN company AS c ON c.company_id = wu.company_id
  42. INNER join user_record as ur on wu.user_id=ur.user_id
  43. WHERE ur.open_id != "" and ur.create_platform=1 AND wu.mobile=? `
  44. if openIdStr != "" {
  45. sql += ` AND ur.open_id in (` + openIdStr + `) `
  46. }
  47. _, err = orm.NewOrm().Raw(sql, mobile).QueryRows(&items)
  48. return
  49. }