wx_user.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. "hongze/hz_crm_api/utils"
  6. "time"
  7. )
  8. type WxUser struct {
  9. UserId int64 `orm:"column(user_id);pk"`
  10. Mobile string
  11. Email string
  12. CompanyId int
  13. RealName string `description:"姓名"`
  14. NickName string `description:"昵称"`
  15. CreatedTime time.Time
  16. MobileTwo string `description:"备用手机号"`
  17. BusinessCardUrl string `description:"名片"`
  18. IsMaker int `description:"是否决策人,1:是,0:否"`
  19. Position string `description:"职位"`
  20. Sex int `description:"普通用户性别,1为男性,2为女性"`
  21. DepartmentName string `description:"联系人部门"`
  22. RegisterTime time.Time
  23. RegisterPlatform int
  24. Remark string `description:"备注"`
  25. CountryCode string `description:"区号,86、852、886等"`
  26. OutboundMobile string `description:"外呼手机号"`
  27. OutboundCountryCode string `description:"外呼手机号区号,86、852、886等"`
  28. LastUpdatedTime time.Time `description:"最近一次更新时间"`
  29. IsDeal int `description:"是否标记处理 0-未处理 1-已处理"`
  30. OpenId string `orm:"column(open_id)" description:"微信openid"`
  31. Headimgurl string `description:"用户头像,最后一个数值代表正方形头像大小(有0、46、64、96、132数值可选,0代表640*640正方形头像),用户没有头像时该项为空"`
  32. UserLabel string `description:"查研观向用户标签"`
  33. FiccViewTotal int `description:"ficc报告的阅读次数"`
  34. FiccLastViewTime string `description:"ficc报告最近一次阅读时间"`
  35. RaiViewTotal int `description:"权益报告的阅读次数"`
  36. RaiLastViewTime string `description:"权益报告的最近一次阅读时间"`
  37. }
  38. func AddWxUser(item *WxUser) (lastId int64, err error) {
  39. o := orm.NewOrm()
  40. lastId, err = o.Insert(item)
  41. return
  42. }
  43. func GetWxUserByMobile(mobile string) (item *WxUser, err error) {
  44. o := orm.NewOrm()
  45. sql := `SELECT * FROM wx_user WHERE mobile = ? LIMIT 1`
  46. err = o.Raw(sql, mobile).QueryRow(&item)
  47. return
  48. }
  49. // GetWxUserByMobileCountryCode 根据手机号和区号获取用户信息
  50. func GetWxUserByMobileCountryCode(mobile, countryCode string) (item *WxUser, err error) {
  51. o := orm.NewOrm()
  52. sql := `SELECT * FROM wx_user WHERE mobile = ? `
  53. sql += ` and country_code in ("","` + countryCode + `") `
  54. sql += ` LIMIT 1 `
  55. err = o.Raw(sql, mobile).QueryRow(&item)
  56. return
  57. }
  58. func GetWxUserByUserId(userId int) (item *WxUser, err error) {
  59. o := orm.NewOrm()
  60. sql := `SELECT * FROM wx_user WHERE user_id=? `
  61. err = o.Raw(sql, userId).QueryRow(&item)
  62. return
  63. }
  64. // 更新wxUser信息
  65. func (wxUser *WxUser) Update(cols []string) (err error) {
  66. o := orm.NewOrm()
  67. _, err = o.Update(wxUser, cols...)
  68. return
  69. }
  70. type PotentialUserItem struct {
  71. UserId int `description:"用户id"`
  72. RealName string `description:"姓名"`
  73. CountryCode string `description:"区号,86、852、886等"`
  74. Mobile string `description:"手机号"`
  75. Email string `description:"邮箱"`
  76. CreatedTime string `description:"注册时间"`
  77. ApplyMethod int `description:"0:未申请,1:已付费客户申请试用,2:非客户申请试用"`
  78. CompanyName string `description:"客户名称"`
  79. ViewTotal int `description:"累计阅读次数"`
  80. LastViewTime time.Time `json:"-" description:"最后一次阅读时间"`
  81. LastViewTimeStr string `description:"最后一次阅读时间"`
  82. FromType string `description:"report:研报,teleconference:电话会"`
  83. BusinessCardUrl string `description:"名片"`
  84. Source int `description:"来源,1:微信端,2:pc网页端,3:查研观向小程序,4:每日咨询,5:电话会"`
  85. IsDeal int `description:"是否标记处理,0是未处理,1是已处理"`
  86. }
  87. type PotentialUserListResp struct {
  88. List []*PotentialUserItem
  89. Paging *paging.PagingItem `description:"分页数据"`
  90. }
  91. // 联系人导入预览数据返回
  92. type ImportListResp struct {
  93. ValidUser []*WxUser `description:"有效客户数据"`
  94. RepeatUser []*WxUser `description:"重复客户数据"`
  95. }
  96. func GetPotentialUserListCount(condition string, pars []interface{}) (count int, err error) {
  97. o := orm.NewOrm()
  98. sql := `SELECT COUNT(1) AS count
  99. FROM wx_user AS a
  100. LEFT JOIN company AS b ON a.company_id = b.company_id
  101. LEFT JOIN user_record AS c ON a.user_id=c.user_id
  102. WHERE b.enabled = 1 AND b.company_id = 1
  103. AND (a.mobile IS NOT NULL || a.email IS NOT NULL)
  104. AND (a.mobile<>'' OR a.email<>'')
  105. AND (c.create_platform<>4 or c.create_platform is null)`
  106. if condition != "" {
  107. sql += condition
  108. }
  109. err = o.Raw(sql, pars).QueryRow(&count)
  110. return
  111. }
  112. func GetPotentialUserList(condition string, pars []interface{}, startSize, pageSize int) (items []*PotentialUserItem, err error) {
  113. o := orm.NewOrm()
  114. sql := `SELECT a.*,a.note AS company_name,
  115. IF(b.type IN (1,2),1,0) AS is_fee_customer,
  116. (SELECT count(1) FROM user_view_history AS uvh WHERE uvh.user_id=a.user_id GROUP BY a.user_id) AS view_total,
  117. a.report_last_view_time AS last_view_time_str,
  118. c.create_platform
  119. FROM wx_user AS a
  120. LEFT JOIN company AS b ON a.company_id = b.company_id
  121. LEFT JOIN user_record AS c ON a.user_id=c.user_id
  122. WHERE b.enabled = 1 AND b.company_id = 1
  123. AND (a.mobile IS NOT NULL || a.email IS NOT NULL)
  124. AND (a.mobile<>'' OR a.email<>'')
  125. AND (c.create_platform<>4 or c.create_platform is null) `
  126. if condition != "" {
  127. sql += condition
  128. }
  129. sql += ` GROUP BY a.user_id `
  130. sql += `ORDER BY a.created_time DESC LIMIT ?,? `
  131. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  132. return
  133. }
  134. type PotentialUserDeleteReq struct {
  135. UserId int `description:"用户id"`
  136. }
  137. // 标记潜在用户请求
  138. type PotentialUserDealReq struct {
  139. UserId int `description:"用户id"`
  140. }
  141. func DeletePotentialUser(userId int) (err error) {
  142. sql := ` DELETE FROM wx_user WHERE user_id=? `
  143. _, err = orm.NewOrm().Raw(sql, userId).Exec()
  144. return
  145. }
  146. // DeleteWxUserByUserIds 根据用户id字符串批量删除用户信息
  147. func DeleteWxUserByUserIds(userIds string) (err error) {
  148. sql := ` DELETE FROM wx_user WHERE user_id in (` + userIds + `) `
  149. _, err = orm.NewOrm().Raw(sql).Exec()
  150. return
  151. }
  152. // 移动潜在客户名下的联系人 请求数据
  153. type PotentialUserMoveReq struct {
  154. UserId int `description:"用户id"`
  155. CompanyId int `description:"移动到的客户id"`
  156. SellerId int `description:"需要移动到的销售id"`
  157. RealName string `description:"姓名"`
  158. Mobile string `description:"手机号"`
  159. Email string `description:"邮箱"`
  160. Remark string `description:"备注信息"`
  161. //crm4.0新增校验字段
  162. Sex int `description:"用户性别,1为男性,2为女性"`
  163. RegionType string `description:"区域,枚举值:国内、海外"`
  164. Position string `description:"职位"`
  165. IsMaker int `description:"是否决策人,1:是,0:否"`
  166. BusinessCardUrl string `description:"名片地址"`
  167. DepartmentName string `description:"联系人部门"`
  168. CountryCode string `description:"区号,86、852、886等"`
  169. }
  170. // 移动联系人请求数据
  171. type UserMoveReq struct {
  172. UserId int `description:"用户id"`
  173. CompanyId int `description:"移动到的客户id"`
  174. SellerId int `description:"需要移动到的销售id"`
  175. }
  176. // FICC申请单-移动潜在客户名下的联系人 请求数据
  177. type ApplyRecordPotentialUserMoveReq struct {
  178. UserId int `description:"用户id"`
  179. CompanyId int `description:"移动到的客户id"`
  180. SellerId int `description:"需要移动到的销售id"`
  181. RealName string `description:"姓名"`
  182. Mobile string `description:"手机号"`
  183. Email string `description:"邮箱"`
  184. Remark string `description:"备注信息"`
  185. ApplyRecordId int `description:"申请单ID"`
  186. Sex int `description:"用户性别,1为男性,2为女性"`
  187. RegionType string `description:"区域,枚举值:国内、海外"`
  188. Position string `description:"职位"`
  189. IsMaker int `description:"是否决策人,1:是,0:否"`
  190. BusinessCardUrl string `description:"名片地址"`
  191. DepartmentName string `description:"联系人部门"`
  192. CountryCode string `description:"区号,86、852、886等"`
  193. }
  194. func CheckUserMobileIsRegister(userId int, mobile string) (count int, err error) {
  195. sql := `SELECT COUNT(1) AS count FROM wx_user AS a
  196. INNER JOIN company AS b ON a.company_id = b.company_id
  197. WHERE a.mobile = ? AND a.user_id<> ? `
  198. o := orm.NewOrm()
  199. err = o.Raw(sql, mobile, userId).QueryRow(&count)
  200. return
  201. }
  202. func CheckUserEmailIsRegister(userId int, email string) (count int, err error) {
  203. sql := `SELECT COUNT(1) AS count FROM wx_user AS a
  204. INNER JOIN company AS b ON a.company_id = b.company_id
  205. WHERE a.email = ? AND a.user_id<> ? `
  206. o := orm.NewOrm()
  207. err = o.Raw(sql, email, userId).QueryRow(&count)
  208. return
  209. }
  210. // 移动潜在客户名下的联系人
  211. func MovePotentialUser(userId, companyId int, realName, mobile, email, remark string) (err error) {
  212. if realName != "" {
  213. sql := ` UPDATE wx_user
  214. SET
  215. company_id = ?,
  216. real_name = ?,
  217. mobile = ?,
  218. email = ?,
  219. remark = ?,
  220. last_updated_time = NOW(),
  221. is_note = 1
  222. WHERE user_id = ? `
  223. _, err = orm.NewOrm().Raw(sql, companyId, realName, mobile, email, remark, userId).Exec()
  224. } else {
  225. sql := ` UPDATE wx_user
  226. SET
  227. company_id = ?,
  228. mobile = ?,
  229. email = ?,
  230. remark = ?,
  231. last_updated_time = NOW(),
  232. is_note = 1
  233. WHERE user_id = ? `
  234. _, err = orm.NewOrm().Raw(sql, companyId, mobile, email, remark, userId).Exec()
  235. }
  236. return
  237. }
  238. // 移动联系人
  239. func MoveUser(userId, companyId int) (err error) {
  240. sql := ` UPDATE wx_user
  241. SET
  242. company_id = ?,
  243. last_updated_time = NOW(),
  244. is_note = 1
  245. WHERE user_id = ? `
  246. _, err = orm.NewOrm().Raw(sql, companyId, userId).Exec()
  247. return
  248. }
  249. type ReportViewRecordTotal struct {
  250. ViewTotal int
  251. LastViewTime time.Time
  252. }
  253. func GetReportViewMaxTime(uid int) (item *ReportViewRecordTotal, err error) {
  254. o := orm.NewOrmUsingDB("rddp")
  255. rddpSql := "SELECT MAX(create_time) AS last_view_time,COUNT(1) AS view_total FROM report_view_record WHERE user_id=? "
  256. err = o.Raw(rddpSql, uid).QueryRow(&item)
  257. return
  258. }
  259. // 根据用户id字符串获取用户的浏览数
  260. func GetReportViewMaxTimeByUserIds(userIds string) (items []*ReportViewRecord, err error) {
  261. o := orm.NewOrmUsingDB("rddp")
  262. rddpSql := `SELECT user_id,MAX(create_time) AS last_view_time,COUNT(1) AS view_total FROM report_view_record WHERE user_id in (` + userIds + `) group by user_id`
  263. _, err = o.Raw(rddpSql).QueryRows(&items)
  264. return
  265. }
  266. // 根据用户手机号字符串获取用户的浏览数
  267. type ReportViewMobileRecord struct {
  268. Mobile string
  269. ViewTotal int
  270. LastViewTime time.Time
  271. }
  272. func GetReportViewMaxTimeByMobiles(mobiles string) (items []*ReportViewMobileRecord, err error) {
  273. o := orm.NewOrmUsingDB("rddp")
  274. rddpSql := `SELECT mobile,MAX(create_time) AS last_view_time,COUNT(1) AS view_total FROM report_view_record WHERE mobile in (` + mobiles + `) group by mobile`
  275. _, err = o.Raw(rddpSql).QueryRows(&items)
  276. return
  277. }
  278. // 根据用户邮箱字符串获取用户的浏览数
  279. type ReportViewEmailRecord struct {
  280. Email string
  281. ViewTotal int
  282. LastViewTime time.Time
  283. }
  284. func GetReportViewMaxTimeByEmails(emails string) (items []*ReportViewEmailRecord, err error) {
  285. o := orm.NewOrmUsingDB("rddp")
  286. rddpSql := `SELECT email,MAX(create_time) AS last_view_time,COUNT(1) AS view_total FROM report_view_record WHERE email in (` + emails + `) group by email`
  287. _, err = o.Raw(rddpSql).QueryRows(&items)
  288. return
  289. }
  290. func GetPotentialUserListExport(condition string, pars []interface{}) (items []*PotentialUserItem, err error) {
  291. o := orm.NewOrm()
  292. sql := `SELECT DISTINCT a.*,b.company_name,
  293. IF(b.type IN (1,2),1,0) AS is_fee_customer,
  294. (SELECT count(1) FROM user_view_history AS uvh WHERE uvh.user_id=a.user_id GROUP BY a.user_id) AS view_total,
  295. (SELECT max(uvh.created_time) FROM user_view_history AS uvh WHERE uvh.user_id=a.user_id GROUP BY a.user_id) AS last_view_time
  296. FROM wx_user AS a
  297. LEFT JOIN company AS b ON a.company_id = b.company_id
  298. INNER JOIN user_record AS c ON a.user_id=c.user_id
  299. WHERE b.enabled = 1 AND b.company_id = 1
  300. AND (a.mobile IS NOT NULL || a.email IS NOT NULL)
  301. AND (a.mobile<>'' OR a.email<>'')
  302. AND c.create_platform<>4 `
  303. if condition != "" {
  304. sql += condition
  305. }
  306. sql += `ORDER BY a.last_updated_time DESC `
  307. _, err = o.Raw(sql, pars).QueryRows(&items)
  308. return
  309. }
  310. type WxUserDetail struct {
  311. UserId int64 `orm:"column(user_id);pk"`
  312. CountryCode string `description:"区号,86、852、886等"`
  313. Mobile string
  314. Email string
  315. CompanyId int
  316. RealName string `description:"姓名"`
  317. CreatedTime time.Time
  318. MobileTwo string `description:"备用手机号"`
  319. BusinessCardUrl string `description:"名片"`
  320. IsMaker int `description:"是否决策人,1:是,0:否"`
  321. Position string `description:"职位"`
  322. Sex int `description:"普通用户性别,1为男性,2为女性"`
  323. CompanyName string `description:"公司名称"`
  324. DepartmentName string `description:"联系人部门"`
  325. SellerRealName string `description:"销售"`
  326. }
  327. // GetWxUserListByUserIds 根据用户ID集合获取用户
  328. func GetWxUserListByUserIds(userIds string) (list []*WxUser, err error) {
  329. o := orm.NewOrm()
  330. sql := ` SELECT * FROM wx_user WHERE user_id IN (` + userIds + `) `
  331. _, err = o.Raw(sql).QueryRows(&list)
  332. return
  333. }
  334. // GetWxUserByCompanyIdAndMobile 根据客户ID及手机号获取用户
  335. func GetWxUserByCompanyIdAndMobile(companyId int, mobile string) (item *WxUser, err error) {
  336. o := orm.NewOrm()
  337. sql := ` SELECT * FROM wx_user WHERE company_id = ? AND mobile = ? LIMIT 1 `
  338. err = o.Raw(sql, companyId, mobile).QueryRow(&item)
  339. return
  340. }
  341. // DeleteWxUserAndRecordByUserId 删除用户及第三方信息
  342. func DeleteWxUserAndRecordByUserId(userId int) (err error) {
  343. o := orm.NewOrm()
  344. to, err := o.Begin()
  345. if err != nil {
  346. return
  347. }
  348. defer func() {
  349. if err != nil {
  350. _ = to.Rollback()
  351. } else {
  352. _ = to.Commit()
  353. }
  354. }()
  355. // 删除wx_user
  356. userSql := ` DELETE FROM wx_user WHERE user_id = ? LIMIT 1 `
  357. _, err = to.Raw(userSql, userId).Exec()
  358. // 删除user_record
  359. if err == nil {
  360. recordSql := ` DELETE FROM user_record WHERE user_id = ? `
  361. _, err = to.Raw(recordSql, userId).Exec()
  362. }
  363. return
  364. }
  365. // 获取这个公司下面所有用户的手机号
  366. func GetCompanyUserMobilesByCompanyId(companyId int) (mobiles string, err error) {
  367. o := orm.NewOrm()
  368. sql := ` SELECT GROUP_CONCAT( DISTINCT a.mobile SEPARATOR ',' ) AS mobiles FROM
  369. wx_user AS a WHERE company_id = ? AND mobile != '' `
  370. err = o.Raw(sql, companyId).QueryRow(&mobiles)
  371. return
  372. }
  373. // 获取这个公司下面所有用户的邮箱号
  374. func GetCompanyUserEmailsByCompanyId(companyId int) (emails string, err error) {
  375. o := orm.NewOrm()
  376. sql := ` SELECT GROUP_CONCAT( DISTINCT a.email SEPARATOR ',' ) AS emails FROM
  377. wx_user AS a WHERE company_id = ? AND email != '' `
  378. err = o.Raw(sql, companyId).QueryRow(&emails)
  379. return
  380. }
  381. // 获取这个公司下面所有用户的手机号
  382. func SetUserSubscribe(openId string) (err error) {
  383. o := orm.NewOrm()
  384. sql := ` UPDATE user_record SET subscribe=1,subscribe_time=NOW() WHERE open_id=? `
  385. _, err = o.Raw(sql, openId).Exec()
  386. return
  387. }
  388. type WxUserItem struct {
  389. UserId int `description:"用户id"`
  390. OpenId string `description:"open_id"`
  391. UnionId string `description:"union_id"`
  392. CompanyId int `description:"客户id"`
  393. NickName string `description:"用户昵称"`
  394. RealName string `description:"用户实际名称"`
  395. Mobile string `description:"手机号码"`
  396. BindAccount string `description:"绑定时的账号"`
  397. Email string `description:"邮箱"`
  398. Headimgurl string `description:"用户头像,最后一个数值代表正方形头像大小(有0、46、64、96、132数值可选,0代表640*640正方形头像),用户没有头像时该项为空"`
  399. ApplyMethod int `description:"0:未申请,1:已付费客户申请试用,2:非客户申请试用"`
  400. FirstLogin int `description:"是否第一次登陆"`
  401. IsFreeLogin int `description:"是否免登陆,true:免登陆,false:非免登陆"`
  402. LoginTime time.Time `description:"登录时间"`
  403. CreatedTime time.Time `description:"创建时间"`
  404. LastUpdatedTime time.Time `description:"最近一次修改时间"`
  405. SessionKey string `description:"微信小程序会话密钥"`
  406. CompanyName string `description:"公司名称"`
  407. IsRegister int `description:"是否注册:1:已注册,0:未注册"`
  408. CountryCode string `description:"手机国家区号"`
  409. OutboundMobile string `description:"外呼手机号"`
  410. OutboundCountryCode string `description:"外呼手机号区号"`
  411. IsMsgOutboundMobile int `description:"是否弹窗过绑定外呼手机号区号"`
  412. IsMaker int `description:"是否是决策人"`
  413. Source int
  414. }
  415. // GetWxUserListByUserIds 根据用户ID集合获取用户有公司名称
  416. func GetWxUserListByUserIdsHaveCompany(userIds string) (list []*WxUserItem, err error) {
  417. o := orm.NewOrm()
  418. sql := ` SELECT u.*, c.company_name FROM wx_user AS u
  419. INNER JOIN company AS c ON c.company_id = u.company_id
  420. WHERE user_id IN (` + userIds + `) `
  421. _, err = o.Raw(sql).QueryRows(&list)
  422. return
  423. }
  424. // GetWxUserByAdminId 通过后台用户ID及微信平台获取对应的微信用户
  425. func GetWxUserByAdminId(platform, adminId int) (item *WxUser, err error) {
  426. o := orm.NewOrm()
  427. sql := `SELECT
  428. wu.user_id
  429. FROM
  430. wx_user AS wu
  431. JOIN user_record AS ur ON wu.user_id = ur.user_id AND ur.create_platform = ?
  432. JOIN admin AS ad ON wu.mobile = ad.mobile
  433. WHERE
  434. ad.admin_id = ?`
  435. err = o.Raw(sql, platform, adminId).QueryRow(&item)
  436. return
  437. }
  438. // GetWxUserByOutboundMobiles 根据用户手机号获取用户详情
  439. func GetWxUserByOutboundMobiles(mobiles []string) (items []*WxUser, err error) {
  440. lenmobiles := len(mobiles)
  441. if lenmobiles == 0 {
  442. return
  443. }
  444. sql := `SELECT* FROM wx_user WHERE outbound_mobile in (` + utils.GetOrmInReplace(lenmobiles) + `) `
  445. o := orm.NewOrm()
  446. _, err = o.Raw(sql, mobiles).QueryRows(&items)
  447. return
  448. }
  449. // GetWxUserByUserIds 根据用户ID获取用户详情
  450. func GetWxUserByUserIds(userIds []int) (items []*WxUser, err error) {
  451. lenuserIds := len(userIds)
  452. if lenuserIds == 0 {
  453. return
  454. }
  455. sql := `SELECT* FROM wx_user WHERE user_id in (` + utils.GetOrmInReplace(lenuserIds) + `) `
  456. o := orm.NewOrm()
  457. _, err = o.Raw(sql, userIds).QueryRows(&items)
  458. return
  459. }
  460. // GetWxUserListByUserMobileHaveCompany 根据用户手机号集合获取用户有公司名称
  461. func GetWxUserListByUserMobileHaveCompany(mobiles []string) (list []*WxUserItem, err error) {
  462. lenmobiles := len(mobiles)
  463. if lenmobiles == 0 {
  464. return
  465. }
  466. o := orm.NewOrm()
  467. sql := ` SELECT u.*, c.company_name FROM wx_user AS u
  468. INNER JOIN company AS c ON c.company_id = u.company_id
  469. WHERE mobile in (` + utils.GetOrmInReplace(lenmobiles) + `) `
  470. _, err = o.Raw(sql, mobiles).QueryRows(&list)
  471. return
  472. }
  473. // GetWxUserListCompanyId 根据公司ID获取所有用户信息
  474. func GetWxUserListCompanyId(companyId int) (list []*WxUserItem, err error) {
  475. o := orm.NewOrm()
  476. sql := ` SELECT* FROM wx_user WHERE company_id = ? `
  477. _, err = o.Raw(sql, companyId).QueryRows(&list)
  478. return
  479. }
  480. // GetWxUserByCompanyIds 根据客户ID集合获取用户列表
  481. func GetWxUserByCompanyIds(companyIds []int) (items []*WxUser, err error) {
  482. num := len(companyIds)
  483. if num == 0 {
  484. return
  485. }
  486. sql := `SELECT * FROM wx_user WHERE company_id in (` + utils.GetOrmInReplace(num) + `) `
  487. o := orm.NewOrm()
  488. _, err = o.Raw(sql, companyIds).QueryRows(&items)
  489. return
  490. }