user.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. package models
  2. import (
  3. "fmt"
  4. "github.com/beego/beego/v2/client/orm"
  5. "github.com/rdlucklib/rdluck_tools/paging"
  6. "hongze/hongze_cygx/utils"
  7. "time"
  8. )
  9. type UserDetail struct {
  10. Headimgurl string `description:"用户头像,最后一个数值代表正方形头像大小(有0、46、64、96、132数值可选,0代表640*640正方形头像),用户没有头像时该项为空"`
  11. Mobile string `description:"手机号码"`
  12. Email string `description:"邮箱"`
  13. NickName string `description:"用户昵称"`
  14. RealName string `description:"用户实际名称"`
  15. CompanyName string `description:"公司名称"`
  16. PermissionName string `description:"拥有权限分类,多个用英文逗号分隔"`
  17. HasPermission int `description:"1:无该行业权限,不存在权益客户下,2:潜在客户,未提交过申请,3:潜在客户,已提交过申请"`
  18. SellerMobile string `description:"销售手机号"`
  19. SellerName string `description:"销售名称"`
  20. Note string `json:"-" description:"申请提交时,公司名称"`
  21. CountryCode string `description:"区号"`
  22. OutboundMobile string `description:"外呼手机号"`
  23. OutboundCountryCode string `description:"外呼手机号区号"`
  24. ConNum int `description:"收藏"`
  25. HistoryNum int `description:"足迹"`
  26. ScheduleNum int `description:"活动日程"`
  27. }
  28. func GetUserDetailByUserId(userId int) (item *UserDetail, err error) {
  29. o := orm.NewOrm()
  30. sql := `SELECT *,
  31. ( SELECT COUNT( 1 ) AS count FROM cygx_article_collect AS a INNER JOIN cygx_article AS art ON art.article_id = a.article_id WHERE
  32. a.user_id = ? AND art.publish_status = 1 ) AS con_num,
  33. (SELECT COUNT( 1 ) AS count FROM
  34. ( SELECT count(*) FROM cygx_article_history_record AS a WHERE a.user_id = ? GROUP BY a.article_id ) b ) AS history_num ,
  35. ( SELECT COUNT( 1 ) AS count FROM cygx_my_schedule AS a INNER JOIN cygx_activity AS art ON art.activity_id = a.activity_id WHERE
  36. a.user_id = ? AND art.publish_status = 1 AND art.active_state != 3 ) AS schedule_num
  37. FROM wx_user WHERE user_id = ? `
  38. err = o.Raw(sql, userId, userId, userId, userId).QueryRow(&item)
  39. return
  40. }
  41. type UserPermission struct {
  42. CompanyName string `description:"公司名称"`
  43. ChartPermissionName string `description:"权限"`
  44. }
  45. type LoginReq struct {
  46. LoginType int `description:"登录方式:1:微信手机,2:邮箱,3:自定义手机登录"`
  47. Mobile string `description:"手机号"`
  48. Email string `description:"邮箱"`
  49. VCode string `description:"验证码"`
  50. CountryCode string `description:"区号"`
  51. ShareUserCode string `description:"分享人的分享码"`
  52. }
  53. func PcBindMobile(unionId, mobile string, userId, loginType int) (wxUserId int, err error) {
  54. //loginType 登录方式:1:手机,2:邮箱
  55. sql := ``
  56. if loginType == 1 {
  57. sql = `SELECT * FROM wx_user WHERE mobile = ? `
  58. } else {
  59. sql = "SELECT * FROM wx_user WHERE email = ? "
  60. }
  61. user := new(WxUser)
  62. o := orm.NewOrm()
  63. err = o.Raw(sql, mobile).QueryRow(&user)
  64. if err != nil && err.Error() != utils.ErrNoRow() {
  65. return
  66. }
  67. if user == nil || (err != nil && err.Error() == utils.ErrNoRow()) {
  68. msql := ``
  69. if loginType == 1 {
  70. msql = "UPDATE wx_user SET mobile = ?,bind_account = ? WHERE union_id = ? "
  71. } else {
  72. msql = "UPDATE wx_user SET email = ?,bind_account = ? WHERE union_id = ? "
  73. }
  74. _, err = o.Raw(msql, mobile, mobile, unionId).Exec()
  75. wxUserId = userId
  76. } else {
  77. if user.UnionId == "" {
  78. sql = `SELECT * FROM wx_user WHERE union_id = ? `
  79. userInfo := new(WxUser)
  80. o := orm.NewOrm()
  81. err = o.Raw(sql, unionId).QueryRow(&userInfo)
  82. if err != nil {
  83. return
  84. }
  85. var maxRegisterTime time.Time
  86. if user.RegisterTime.Before(userInfo.RegisterTime) {
  87. maxRegisterTime = user.RegisterTime
  88. } else {
  89. maxRegisterTime = userInfo.RegisterTime
  90. }
  91. wxUserId = user.UserId
  92. dsql := ` DELETE FROM wx_user WHERE union_id = ? `
  93. _, err = o.Raw(dsql, unionId).Exec()
  94. if err != nil {
  95. return wxUserId, err
  96. }
  97. msql := ` UPDATE wx_user SET union_id=?,register_time=?,province=?,city=?,country=?,headimgurl=?,unionid=?,sex=? WHERE user_id = ? `
  98. _, err = o.Raw(msql, unionId, maxRegisterTime, userInfo.Province, userInfo.City, userInfo.Country, userInfo.Headimgurl, unionId, userInfo.Sex, user.UserId).Exec()
  99. wxUserId = user.UserId
  100. } else {
  101. sql = `SELECT * FROM wx_user WHERE user_id = ? `
  102. userInfo := new(WxUser)
  103. o := orm.NewOrm()
  104. err = o.Raw(sql, userId).QueryRow(&userInfo)
  105. if err != nil && err.Error() != utils.ErrNoRow() {
  106. return
  107. }
  108. if user.UserId != userId {
  109. dsql := ` DELETE FROM wx_user WHERE user_id = ? `
  110. _, err = o.Raw(dsql, userId).Exec()
  111. if err != nil {
  112. return user.UserId, err
  113. }
  114. }
  115. msql := ` UPDATE wx_user SET union_id=?,province=?,city=?,country=?,headimgurl=?,unionid=?,sex=? WHERE user_id = ? `
  116. _, err = o.Raw(msql, unionId, userInfo.Province, userInfo.City, userInfo.Country, userInfo.Headimgurl, unionId, userInfo.Sex, user.UserId).Exec()
  117. wxUserId = userId
  118. }
  119. }
  120. return
  121. }
  122. type LoginResp struct {
  123. UserId int `description:"用户id"`
  124. Authorization string `description:"Token"`
  125. Headimgurl string `description:"用户头像"`
  126. Mobile string `description:"手机号"`
  127. Email string `description:"邮箱"`
  128. CompanyName string `description:"客户名称"`
  129. Status string `description:"状态"`
  130. EndDate string `description:"到期日期"`
  131. ProductName string `description:"客户类型名称"`
  132. IsPotential bool `description:"是否是潜在"`
  133. }
  134. type CheckStatusResp struct {
  135. IsBind bool `description:"true:需要绑定手机号或邮箱,false:不需要绑定手机号或邮箱"`
  136. IsAuth bool `description:"true:需要授权,false:不需要授权"`
  137. PermissionName string `description:"拥有权限分类,多个用英文逗号分隔"`
  138. }
  139. func GetArticleUserCollectCount(userId int) (count int, err error) {
  140. sql := `SELECT COUNT(1) AS count FROM cygx_article_collect AS a INNER JOIN cygx_article as art ON art.article_id = a.article_id WHERE a.user_id=? AND art.publish_status = 1 `
  141. err = orm.NewOrm().Raw(sql, userId).QueryRow(&count)
  142. return
  143. }
  144. func GetArticleUserCollectList(startSize, pageSize, userId int) (items []*ArticleReportBillboardResp, err error) {
  145. sql := `SELECT
  146. a.article_id,
  147. art.category_id,
  148. '' AS title,
  149. '' AS publish_date,
  150. '' AS nick_name,
  151. 0 AS article_type_id,
  152. '' AS article_type_name,
  153. 0 AS is_special,
  154. '' AS special_tags,
  155. 0 AS pv,
  156. 0 AS collect_num,
  157. 0 AS my_collect_num,
  158. a.create_time AS create_time
  159. FROM cygx_article_collect AS a
  160. INNER JOIN cygx_article as art ON art.article_id = a.article_id
  161. WHERE a.user_id=?
  162. UNION ALL
  163. SELECT
  164. a.id AS article_id,
  165. a.title AS title,
  166. date_format( a.publish_time, '%Y-%m-%d' ) AS publish_date,
  167. b.nick_name AS nick_name,
  168. 0 AS category_id,
  169. ( SELECT count( 1 ) FROM cygx_yanxuan_special_record AS h WHERE h.yanxuan_special_id = a.id ) AS pv,
  170. ( SELECT count( 1 ) FROM cygx_yanxuan_special_collect AS ac INNER JOIN wx_user as u ON u.user_id = ac.user_id WHERE ac.yanxuan_special_id = a.id ) AS collect_num,
  171. ( SELECT count( 1 ) FROM cygx_yanxuan_special_collect AS ac WHERE ac.yanxuan_special_id = a.id AND user_id = ? ) AS my_collect_num,
  172. 1 AS is_special,
  173. a.tags AS special_tags,
  174. -1 AS article_type_id,
  175. '' AS article_type_name,
  176. c.create_time AS create_time
  177. FROM
  178. cygx_yanxuan_special AS a
  179. JOIN cygx_yanxuan_special_author AS b ON a.user_id = b.user_id
  180. JOIN cygx_yanxuan_special_collect AS c ON a.id = c.yanxuan_special_id
  181. WHERE
  182. 1 = 1 AND a.status = 3 AND c.user_id=?
  183. ORDER BY create_time DESC
  184. LIMIT ?,? `
  185. _, err = orm.NewOrm().Raw(sql, userId, userId,userId, startSize, pageSize).QueryRows(&items)
  186. return
  187. }
  188. type ArticleCollectListResp struct {
  189. List []*ArticleCollectList
  190. Paging *paging.PagingItem
  191. }
  192. func GetArticleUserInterviewApplyCount(userId int) (count int, err error) {
  193. sql := `SELECT COUNT(1) AS count FROM cygx_interview_apply AS a WHERE a.user_id=? `
  194. err = orm.NewOrm().Raw(sql, userId).QueryRow(&count)
  195. return
  196. }
  197. func GetArticleUserInterviewApplyList(startSize, pageSize, userId int) (items []*ArticleInterviewApplyList, err error) {
  198. sql := `SELECT a.* FROM cygx_interview_apply AS a
  199. WHERE a.user_id=?
  200. ORDER BY a.status ASC LIMIT ?,? `
  201. _, err = orm.NewOrm().Raw(sql, userId, startSize, pageSize).QueryRows(&items)
  202. return
  203. }
  204. type ArticleInterviewApplyListResp struct {
  205. List []*ArticleInterviewApplyList
  206. Paging *paging.PagingItem
  207. }
  208. func GetArticleUserBrowseHistoryCount(userId int, endDate string) (count int, err error) {
  209. sql := `SELECT COUNT( 1 ) as count
  210. FROM
  211. ( SELECT count(*) FROM cygx_article_history_record AS a WHERE a.user_id = ? AND a.create_time >= ? GROUP BY a.article_id ) b `
  212. err = orm.NewOrm().Raw(sql, userId, endDate).QueryRow(&count)
  213. return
  214. }
  215. func GetArticleUserBrowseHistoryList(startSize, pageSize, userId int, endDate string) (items []*ArticleReportBillboardResp, err error) {
  216. sql := `SELECT a.* , MAX( a.id ) AS mid FROM cygx_article_history_record AS a
  217. WHERE a.user_id=? AND a.create_time>=? GROUP BY a.article_id
  218. ORDER BY mid DESC LIMIT ?,? `
  219. _, err = orm.NewOrm().Raw(sql, userId, endDate, startSize, pageSize).QueryRows(&items)
  220. return
  221. }
  222. type ArticleBrowseHistoryListResp struct {
  223. List []*ArticleInterviewApplyList
  224. Paging *paging.PagingItem
  225. }
  226. type ApplyTryReq struct {
  227. BusinessCardUrl string `description:"名片地址"`
  228. RealName string `description:"姓名"`
  229. CompanyName string `description:"公司名称"`
  230. ApplyMethod int `description:"1:已付费客户申请试用,2:非客户申请试用,3:非客户申请试用(ficc下,不需要进行数据校验)"`
  231. TryType string `description:"提交类型,Article:文章、Activity:活动、MicroAudio:微路演音频、MicroVideo:微路演视频、Researchsummary:本周研究汇总、Minutessummary:上周纪要汇总、ReportSelection:报告精选、ProductInterior:产品内测"`
  232. DetailId int `description:"详情ID"`
  233. }
  234. type CountryCode struct {
  235. IsNeedAddCountryCode bool `description:"是否需要填写区号:需要填写,false:不需要填写"`
  236. }
  237. type OutboundMobile struct {
  238. IsNeedAddOutboundMobile bool `description:"是否需要填写外呼手机号:需要填写,false:不需要填写"`
  239. }
  240. type CountryCodeItem struct {
  241. CountryCode string `description:"区号"`
  242. }
  243. func AddCountryCode(CountryCode string, user *WxUserItem) (err error) {
  244. o := orm.NewOrm()
  245. if user.OutboundCountryCode == "" {
  246. sql := `UPDATE wx_user SET country_code=?,outbound_mobile=?,outbound_country_code=? WHERE user_id=? `
  247. _, err = o.Raw(sql, CountryCode, user.OutboundMobile, user.OutboundCountryCode, user.UserId).Exec()
  248. } else {
  249. sql := `UPDATE wx_user SET country_code=? WHERE user_id=? `
  250. _, err = o.Raw(sql, CountryCode, user.UserId).Exec()
  251. }
  252. return
  253. }
  254. // 修改外呼手机号
  255. type OutboundMobileItem struct {
  256. OutboundMobile string `description:"外呼手机号"`
  257. OutboundCountryCode string `description:"外呼手机号区号"`
  258. ActivityId int `description:"活动ID"`
  259. }
  260. func AddOutboundMobile(item *OutboundMobileItem, userId int) (err error) {
  261. o, err := orm.NewOrm().Begin()
  262. if err != nil {
  263. return
  264. }
  265. defer func() {
  266. fmt.Println(err)
  267. if err == nil {
  268. o.Commit()
  269. } else {
  270. o.Rollback()
  271. }
  272. }()
  273. sql := `UPDATE wx_user SET outbound_mobile=? ,outbound_country_code = ?, is_msg_outbound_mobile= 1 WHERE user_id=? `
  274. _, err = o.Raw(sql, item.OutboundMobile, item.OutboundCountryCode, userId).Exec()
  275. if err != nil {
  276. return
  277. }
  278. if item.ActivityId > 0 {
  279. sql = `UPDATE cygx_activity_signup SET outbound_mobile=? ,country_code = ? WHERE user_id=? AND activity_id = ?`
  280. _, err = o.Raw(sql, item.OutboundMobile, item.OutboundCountryCode, userId, item.ActivityId).Exec()
  281. }
  282. return
  283. }
  284. // 用户绑定手机号时同时绑定外呼手机号
  285. func BindUserOutboundMobile(mobile, countryCode string, userId int) (err error) {
  286. o := orm.NewOrm()
  287. sql := `UPDATE wx_user SET outbound_mobile=? ,outbound_country_code = ?, country_code= ? WHERE user_id=? `
  288. _, err = o.Raw(sql, mobile, countryCode, countryCode, userId).Exec()
  289. return
  290. }
  291. // 已经绑定手机号,没有绑定外呼手机号的的用户,预约外呼的时候,将外呼手机号同步成手机号
  292. func BindUserOutboundMobileByMobile(mobile, countryCode string, userId int) (err error) {
  293. o := orm.NewOrm()
  294. sql := `UPDATE wx_user SET outbound_mobile=? ,outbound_country_code = ? WHERE user_id=? `
  295. _, err = o.Raw(sql, mobile, countryCode, userId).Exec()
  296. return
  297. }
  298. // 将手机号为11位的用户,区号默认设置为86
  299. func ChangeUserOutboundMobileByMobile(userId int) (err error) {
  300. o := orm.NewOrm()
  301. sql := `UPDATE wx_user SET country_code = 86 WHERE user_id=? `
  302. _, err = o.Raw(sql, userId).Exec()
  303. return
  304. }
  305. type UserWhiteList struct {
  306. Mobile string `description:"手机号码"`
  307. RealName string `description:"用户实际名称"`
  308. CompanyName string `description:"公司名称"`
  309. Permission string `description:"拥有权限分类,多个用英文逗号分隔"`
  310. CountryCode string `description:"区号"`
  311. SellerName string `description:"销售姓名"`
  312. CreatedTime time.Time
  313. Status string `description:"客户状态'试用','永续','冻结','流失','正式','潜在'"`
  314. }
  315. type UserWhiteListRep struct {
  316. List []*UserWhiteList
  317. }
  318. // 获取正式试用用户白名单
  319. func GetFormalUserWhiteList(fieldStr, condition string) (items []*UserWhiteList, err error) {
  320. sql := `SELECT ` + fieldStr + `
  321. (SELECT cp.seller_name FROM company_product AS cp WHERE cp.company_id = u.company_id ORDER BY cp.product_id DESC LIMIT 0,1 ) as seller_name,
  322. GROUP_CONCAT( DISTINCT b.chart_permission_name SEPARATOR '/' ) AS permission
  323. FROM wx_user AS u
  324. INNER JOIN company as c ON c.company_id = u.company_id
  325. INNER JOIN company_report_permission AS p ON p.company_id = u.company_id
  326. INNER JOIN chart_permission AS b ON b.chart_permission_id=p.chart_permission_id
  327. INNER JOIN company_product AS cp ON cp.company_id = u.company_id
  328. WHERE 1= 1
  329. AND cp.product_id = 2
  330. AND b.product_id = 2
  331. AND u.company_id >1 ` + condition + `
  332. GROUP BY u.user_id`
  333. _, err = orm.NewOrm().Raw(sql).QueryRows(&items)
  334. return
  335. }
  336. // 获取永续用户白名单
  337. func GetSustainableUserWhiteList(fieldStr, condition string) (items []*UserWhiteList, err error) {
  338. sql := `SELECT ` + fieldStr + `
  339. (SELECT cp.seller_name FROM company_product AS cp WHERE cp.company_id = u.company_id ORDER BY cp.product_id DESC LIMIT 0,1 ) as seller_name,
  340. (SELECT
  341. GROUP_CONCAT( DISTINCT b.chart_permission_name SEPARATOR '/' )
  342. FROM
  343. company_report_permission AS p
  344. INNER JOIN chart_permission AS b ON b.chart_permission_id = p.chart_permission_id
  345. WHERE
  346. p.company_id = u.company_id
  347. AND p.status IN ( '永续' )
  348. AND p.product_id = 2
  349. ) AS permission
  350. FROM wx_user AS u
  351. INNER JOIN company AS c ON c.company_id = u.company_id
  352. INNER JOIN company_report_permission AS p ON p.company_id = u.company_id
  353. INNER JOIN chart_permission AS b ON b.chart_permission_id = p.chart_permission_id
  354. INNER JOIN company_product AS cp ON cp.company_id = u.company_id
  355. WHERE 1 = 1
  356. AND u.company_id > 1 ` + condition + `
  357. GROUP BY u.user_id `
  358. _, err = orm.NewOrm().Raw(sql).QueryRows(&items)
  359. return
  360. }
  361. // 权益用户
  362. type GetSendEmailAllUserWithRAIRep struct {
  363. CompanyName string `description:"客户名称"`
  364. CreditCode string `description:"社会统一信用码"`
  365. ProductName string `description:"客户类型"`
  366. IndustryName string `description:"行业"`
  367. RealName string `description:"姓名"`
  368. Mobile string `description:"手机号"`
  369. Status string `description:"手机号"`
  370. StartDate string `description:"合同开始日期"`
  371. EndDate string `description:"合同结束日期"`
  372. CreatedTime string `description:"创建时间"`
  373. Permission string `description:"权限"`
  374. }
  375. func GetSendEmailAllUserWithRAI() (items []*GetSendEmailAllUserWithRAIRep, err error) {
  376. sql := `SELECT
  377. c.company_name,
  378. c.credit_code,
  379. cp.product_name,
  380. cp.industry_name,
  381. a.real_name,
  382. a.mobile,
  383. cp.status,
  384. cp.start_date,
  385. cp.end_date,
  386. c.created_time,
  387. GROUP_CONCAT( DISTINCT b.chart_permission_name SEPARATOR '/' ) AS permission
  388. FROM
  389. company AS c
  390. INNER JOIN company_report_permission AS p ON p.company_id = c.company_id
  391. INNER JOIN chart_permission AS b ON b.chart_permission_id = p.chart_permission_id
  392. INNER JOIN company_product AS cp ON cp.company_id = c.company_id
  393. INNER JOIN admin AS a ON a.admin_id = cp.seller_id
  394. WHERE
  395. 1 = 1
  396. AND cp.product_id = 2
  397. AND b.product_id = 2
  398. AND cp.status IN ( '正式', '试用' )
  399. GROUP BY
  400. c.company_id
  401. ORDER BY
  402. c.company_id DESC`
  403. _, err = orm.NewOrm().Raw(sql).QueryRows(&items)
  404. return
  405. }
  406. // 权益用户
  407. type GetSendEmailAllUserWithCompanyRep struct {
  408. RealName string `description:"姓名"`
  409. Mobile string `description:"手机号"`
  410. CountryCode string `description:"国家号"`
  411. Email string `description:"邮箱"`
  412. CompanyName string `description:"客户名称"`
  413. CreditCode string `description:"社会统一信用码"`
  414. IsMaker string `description:"是否是决策人,1是,0否"`
  415. }
  416. func GetSendEmailAllUserWithCompany() (items []*GetSendEmailAllUserWithCompanyRep, err error) {
  417. sql := `SELECT
  418. u.real_name,
  419. u.mobile,
  420. u.country_code,
  421. u.email,
  422. c.company_name,
  423. u.is_maker
  424. FROM
  425. no_use AS n
  426. INNER JOIN company AS c ON c.company_name = n.company_name
  427. INNER JOIN company_report_permission AS p ON p.company_id = c.company_id
  428. INNER JOIN chart_permission AS b ON b.chart_permission_id = p.chart_permission_id
  429. INNER JOIN company_product AS cp ON cp.company_id = c.company_id
  430. INNER JOIN wx_user AS u ON u.company_id = c.company_id
  431. GROUP BY
  432. u.user_id
  433. ORDER BY
  434. c.company_id ASC`
  435. _, err = orm.NewOrm().Raw(sql).QueryRows(&items)
  436. return
  437. }
  438. type Headimgurl struct {
  439. Headimgurl string `description:"用户头像"`
  440. }
  441. type UserEmail struct {
  442. Email string `description:"邮箱号"`
  443. }
  444. // 更改用户手机号
  445. func UpdateUserHeadimgurl(headimgurl string, userId int) (err error) {
  446. o := orm.NewOrm()
  447. sql := `UPDATE wx_user SET headimgurl = ? WHERE user_id=? `
  448. _, err = o.Raw(sql, headimgurl, userId).Exec()
  449. return
  450. }
  451. // 更改用户邮箱号
  452. func UpdateUserEmail(email string, userId int) (err error) {
  453. o := orm.NewOrm()
  454. sql := `UPDATE wx_user SET email = ? WHERE user_id=? `
  455. _, err = o.Raw(sql, email, userId).Exec()
  456. return
  457. }
  458. // 更新用户标签
  459. func UpdateUserLabel(userLabel string, userId int) (err error) {
  460. o := orm.NewOrm()
  461. sql := `UPDATE wx_user SET user_label = ? WHERE user_id=? `
  462. _, err = o.Raw(sql, userLabel, userId).Exec()
  463. return
  464. }
  465. // 更新用户互动量
  466. func UpdateUserInteractionNum(interactionNum, userId int) (err error) {
  467. o := orm.NewOrm()
  468. sql := `UPDATE wx_user SET interaction_num = ? WHERE user_id=? `
  469. _, err = o.Raw(sql, interactionNum, userId).Exec()
  470. return
  471. }
  472. // UserPermissionAuthInfo 用户通用权限信息
  473. type UserPermissionAuthInfo struct {
  474. HasPermission int `description:"是否有权限:1-有权限; 2-无权限; 3-潜在客户未提交申请; 4-潜在客户已提交申请 5-仅有FICC权限"`
  475. SellerMobile string `description:"销售手机号"`
  476. SellerName string `description:"销售名称"`
  477. OperationMode string `description:"操作方式:Apply-立即申请; Call-拨号"`
  478. PopupMsg string `description:"权限弹窗信息"`
  479. }
  480. func GetUserMicroRoadshowCollectList(userId int) (items []*CygxArticleCollect, err error) {
  481. sql := `SELECT a.* FROM cygx_article_collect AS a
  482. WHERE a.user_id=?
  483. AND a.article_id =0
  484. ORDER BY a.create_time DESC `
  485. _, err = orm.NewOrm().Raw(sql, userId).QueryRows(&items)
  486. return
  487. }
  488. func GetUserMicroRoadshowCollectcount(userId int) (count int, err error) {
  489. sqlCount := `SELECT COUNT(1) AS count FROM cygx_article_collect AS a
  490. WHERE a.user_id=?
  491. AND a.article_id =0
  492. ORDER BY a.create_time DESC `
  493. o := orm.NewOrm()
  494. err = o.Raw(sqlCount, userId).QueryRow(&count)
  495. return
  496. }