cygx_user.go 57 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451
  1. package cygx
  2. import (
  3. "fmt"
  4. "github.com/beego/beego/v2/client/orm"
  5. "github.com/rdlucklib/rdluck_tools/paging"
  6. "hongze/hz_crm_api/models/company"
  7. "hongze/hz_crm_api/utils"
  8. "strconv"
  9. "strings"
  10. "time"
  11. )
  12. type CygxCompanyUser struct {
  13. UserId int64 `orm:"column(user_id);pk"`
  14. Mobile string `description:"手机号"`
  15. Email string `description:"邮箱"`
  16. CompanyId int `description:"公司id"`
  17. CompanyName string `description:"公司名称"`
  18. RealName string `description:"姓名"`
  19. CreatedTime string `description:"创建时间"`
  20. IsMaker int `description:"是否决策人,1:是,0:否"`
  21. IsRegister bool `description:"是否注册,true:已注册,false:未注册"`
  22. Status string `description:"客户状态"`
  23. RegisterTime string `description:"注册时间"`
  24. SellerName string `description:"销售名称"`
  25. InteractionNum int `description:"互动量"`
  26. CompanyInteractionNum int `description:"企业互动量"`
  27. CompanyInteractionNumSeller int `description:"销售可见企业互动量"`
  28. Labels string `description:"标签,用英文,隔开"`
  29. ActivityLabel string `description:"活动标签,用英文,隔开"`
  30. IsShowSee bool `description:"是否展示查看"`
  31. IsShowSeeNum int `description:"是否展示查看"`
  32. HistoryNum int `description:"报告阅读"`
  33. CountNum int `description:"报告收藏"`
  34. IndustryFllowNum int `description:"产业关注"`
  35. DepartmentFollowNum int `description:"作者关注"`
  36. KeyWordNum int `description:"搜索关键词"`
  37. OnLineNum int `description:"线上互动活动"`
  38. OfficeNum int `description:"线下互动活动"`
  39. ChartNum int `description:"图表收藏数量"`
  40. TripNum int `description:"图表数量"`
  41. RoadshowVideoNum int `description:"产业视频播放量"`
  42. ActivityVideoNum int `description:"活动视频播放量"`
  43. ActivityVoiceNum int `description:"活动音频播放量"`
  44. YanxuanspecialNum int `description:"研选专栏查看数量"`
  45. RsCalendarNum int `description:"1V1 路演数量"`
  46. FeedbackNum int `description:"交流反馈数量"`
  47. PackageType int `description:"套餐类型,0:无,1:大套餐,2:小套餐"`
  48. TryStage int `description:"试用客户子标签:0全部、1未分类、2 推进、3 跟踪、4 预备"`
  49. Content string `description:"备注信息"`
  50. IsRemind bool `description:"是否添加互动提醒"`
  51. IsSubscribeCygx int `description:"是否关注了查研观向微信公众号: 0-未关注; 1-已关注"`
  52. IsUserMaker int `description:"近四周之内是否包含决策人互动过 ,0否,1是"`
  53. }
  54. type CompanyUserListResp struct {
  55. Paging *paging.PagingItem
  56. List []*CygxCompanyUser
  57. }
  58. // 获取数量
  59. func GetCompanyListCount(userCondition, keyWord, kwywordcondition, condition, roleTypeCode string, pars []interface{}) (count int, err error) {
  60. o := orm.NewOrm()
  61. companyCondition := `SELECT a.company_id FROM company AS a INNER JOIN company_product AS b ON a.company_id=b.company_id WHERE a.enabled=1 `
  62. kwywordcondition = companyCondition + kwywordcondition
  63. if condition != "" {
  64. companyCondition += condition
  65. }
  66. sql := `SELECT COUNT(DISTINCT u.user_id) AS count
  67. FROM
  68. wx_user AS u
  69. INNER JOIN company AS c ON c.company_id = u.company_id
  70. INNER JOIN company_product AS cp ON cp.company_id = c.company_id
  71. INNER JOIN admin AS m ON m.admin_id = cp.seller_id
  72. INNER JOIN user_seller_relation AS sr ON sr.user_id = u.user_id
  73. WHERE u.company_id IN (` + companyCondition + `)`
  74. if userCondition != "" {
  75. sql += userCondition
  76. }
  77. if keyWord != "" {
  78. if strings.Count(roleTypeCode, "admin") > 0 {
  79. sql += ` OR ( cp.product_id = 2 AND cp.status IN ('正式','试用','冻结','永续') AND ( u.real_name LIKE '%` + keyWord + `%' OR u.mobile LIKE '%` + keyWord + `%' OR u.email LIKE '%` + keyWord + `%' ) ` + userCondition + ` )`
  80. } else {
  81. sql += ` OR ( cp.product_id = 2 AND u.company_id IN (` + kwywordcondition + `) AND cp.status IN ('正式','试用','冻结','永续') AND ( u.real_name LIKE '%` + keyWord + `%' OR u.mobile LIKE '%` + keyWord + `%' OR u.email LIKE '%` + keyWord + `%' ) ` + userCondition + ` )`
  82. }
  83. }
  84. err = o.Raw(sql, pars).QueryRow(&count)
  85. return
  86. }
  87. // 列表
  88. func GetCygxCompanyUserList(userCondition, keyWord, kwywordcondition, condition, roleTypeCode, sqlOrder string, pars []interface{}, startSize, pageSize int) (items []*CygxCompanyUser, err error) {
  89. o := orm.NewOrm()
  90. companyCondition := `SELECT a.company_id FROM company AS a INNER JOIN company_product AS b ON a.company_id=b.company_id WHERE a.enabled=1 `
  91. kwywordcondition = companyCondition + kwywordcondition
  92. if condition != "" {
  93. companyCondition += condition
  94. }
  95. sql := `SELECT
  96. u.user_id,
  97. u.mobile,
  98. u.email,
  99. date_format(u.register_time,'%Y-%m-%d') as register_time,
  100. u.real_name,
  101. u.is_register,
  102. u.is_maker,
  103. u.user_label as labels,
  104. u.cygx_subscribe as is_subscribe_cygx,
  105. c.company_name,
  106. c.company_id,
  107. c.interaction_num as company_interaction_num,
  108. c.interaction_num_seller as company_interaction_num_seller,
  109. cp.status,
  110. cp.try_stage,
  111. cp.package_type,
  112. m.real_name as seller_name ,
  113. ( SELECT COUNT( 1 ) FROM user_remarks AS rm WHERE rm.user_id = u.user_id ) AS is_show_see_num
  114. FROM
  115. wx_user AS u
  116. INNER JOIN company AS c ON c.company_id = u.company_id
  117. INNER JOIN company_product AS cp ON cp.company_id = c.company_id
  118. INNER JOIN admin AS m ON m.admin_id = cp.seller_id
  119. INNER JOIN user_seller_relation AS sr ON sr.user_id = u.user_id
  120. WHERE u.company_id IN (` + companyCondition + `)`
  121. if userCondition != "" {
  122. sql += userCondition
  123. }
  124. if keyWord != "" {
  125. if strings.Count(roleTypeCode, "admin") > 0 {
  126. sql += ` OR ( cp.product_id = 2 AND cp.status IN ('正式','试用','冻结','永续') AND ( u.real_name LIKE '%` + keyWord + `%' OR u.mobile LIKE '%` + keyWord + `%' OR u.email LIKE '%` + keyWord + `%' ) ` + userCondition + ` )`
  127. } else {
  128. sql += ` OR ( cp.product_id = 2 AND u.company_id IN (` + kwywordcondition + `) AND cp.status IN ('正式','试用','冻结','永续') AND ( u.real_name LIKE '%` + keyWord + `%' OR u.mobile LIKE '%` + keyWord + `%' OR u.email LIKE '%` + keyWord + `%' ) ` + userCondition + ` )`
  129. }
  130. }
  131. if sqlOrder != "" {
  132. sql += sqlOrder + ` LIMIT ?,? `
  133. } else {
  134. sql += ` GROUP by u.user_id ORDER BY c.created_time DESC, u.register_time DESC LIMIT ?,? `
  135. }
  136. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  137. return
  138. }
  139. type CygxCompanyUserAndSellerResp struct {
  140. UserId int `description:"用户ID"`
  141. Mobile string `description:"手机号"`
  142. Email string `description:"邮箱"`
  143. CompanyId int `description:"公司id"`
  144. CompanyName string `description:"公司名称"`
  145. RealName string `description:"姓名"`
  146. SellerName string `description:"销售名称"`
  147. }
  148. // 给所有已绑定手机号的客户(除流失)列表
  149. func GetCygxCompanyUserListByNoLoss() (items []*CygxCompanyUserAndSellerResp, err error) {
  150. o := orm.NewOrm()
  151. sql := `SELECT
  152. u.user_id,
  153. u.mobile,
  154. u.email,
  155. u.real_name,
  156. c.company_name,
  157. c.company_id,
  158. m.real_name AS seller_name
  159. FROM
  160. wx_user AS u
  161. INNER JOIN company AS c ON c.company_id = u.company_id
  162. INNER JOIN company_product AS cp ON cp.company_id = c.company_id
  163. INNER JOIN admin AS m ON m.admin_id = cp.seller_id
  164. INNER JOIN user_seller_relation AS sr ON sr.user_id = u.user_id
  165. WHERE
  166. 1 = 1
  167. AND c.enabled = 1
  168. AND cp.STATUS != '流失'
  169. AND cp.product_id = 2
  170. AND sr.product_id = 2
  171. GROUP BY
  172. u.user_id `
  173. _, err = o.Raw(sql).QueryRows(&items)
  174. return
  175. }
  176. // 对于上面的SQL的拆分优化查询速度
  177. func GetCygxCompanyUserListSplit(userIds string) (items []*CygxCompanyUser, err error) {
  178. databaseName := utils.GetWeeklyDatabase()
  179. o := orm.NewOrmUsingDB("hz_cygx")
  180. sql := `SELECT
  181. u.user_id,
  182. ( SELECT COUNT( 1 ) FROM cygx_article_history_record_all AS h INNER JOIN cygx_article as art ON art.article_id = h.article_id WHERE h.mobile = u.mobile AND h.is_del = 0 AND h.mobile <>'' ) AS history_num,
  183. ( SELECT COUNT( 1 ) FROM cygx_article_collect AS h WHERE h.user_id = u.user_id ) AS count_num,
  184. ( SELECT COUNT( 1 ) FROM cygx_chart_collect AS h WHERE h.user_id = u.user_id ) AS chart_num,
  185. ( SELECT COUNT( 1 ) FROM cygx_industry_fllow AS h WHERE h.user_id = u.user_id AND h.type = 1 AND h.source IN (0,1,2) ) AS industry_fllow_num,
  186. ( SELECT COUNT( 1 ) FROM cygx_article_department_follow AS h WHERE h.user_id = u.user_id AND h.type = 1 ) AS department_follow_num,
  187. ( SELECT COUNT( 1 ) FROM cygx_search_key_word AS h WHERE h.user_id = u.user_id ) AS key_word_num,
  188. ( SELECT COUNT(DISTINCT h.activity_id) FROM cygx_activity_signup_detail AS h INNER JOIN cygx_activity as a ON a.activity_id = h.activity_id INNER JOIN cygx_activity_type as t ON t.activity_type_id = a.activity_type_id WHERE h.mobile = u.mobile
  189. AND t.activity_type = 1 AND h.do_fail_type = 0 ) AS on_line_num,
  190. ( SELECT COUNT( 1 ) FROM cygx_activity_signup_detail AS h INNER JOIN cygx_activity as a ON a.activity_id = h.activity_id INNER JOIN cygx_activity_type as t ON t.activity_type_id = a.activity_type_id WHERE h.mobile = u.mobile
  191. AND t.activity_type = 0 AND h.do_fail_type = 0 ) AS office_num,
  192. ( SELECT COUNT( 1 ) FROM cygx_activity_special_meeting_detail AS h INNER JOIN cygx_activity_special AS a ON a.activity_id = h.activity_id WHERE h.mobile = u.mobile AND a.publish_status = 1 AND a.activity_time_end < NOW()) AS trip_num,
  193. ( SELECT COUNT( 1 ) FROM cygx_micro_roadshow_video_history AS h INNER JOIN cygx_micro_roadshow_video as v ON v.video_id = h.video_id WHERE h.mobile = u.mobile ) AS roadshow_video_num,
  194. ( SELECT COUNT( 1 ) FROM cygx_activity_video_history AS h INNER JOIN cygx_activity_video as v ON v.video_id = h.video_id WHERE h.mobile = u.mobile ) AS activity_video_num,
  195. ( SELECT COUNT( 1 ) FROM cygx_activity_voice_history AS h INNER JOIN cygx_activity_voice as v ON v.activity_voice_id = h.activity_voice_id WHERE h.mobile = u.mobile ) AS activity_voice_num,
  196. ( SELECT COUNT( 1 ) FROM cygx_yanxuan_special_record AS h INNER JOIN cygx_yanxuan_special as v ON v.id = h.yanxuan_special_id WHERE h.mobile = u.mobile ) AS yanxuanspecial_num,
  197. ( SELECT COUNT(1) FROM cygx_user_feedback as h WHERE h.mobile = u.mobile ) AS feedback_num,
  198. ( SELECT COUNT(1) FROM ` + databaseName + `.rs_calendar_meeting_user as h WHERE h.mobile = u.mobile ) AS rs_calendar_num
  199. FROM ` + databaseName + `.wx_user AS u WHERE u.user_id IN (` + userIds + `) AND u.mobile != '' GROUP BY u.user_id `
  200. _, err = o.Raw(sql).QueryRows(&items)
  201. return
  202. }
  203. type UserRemarks struct {
  204. Id int `orm:"column(id);pk"`
  205. UserId int `description:"用户ID"`
  206. AdminId int `description:"销售/管理员ID"`
  207. Content string `description:"备注信息"`
  208. CreateTime time.Time `description:"创建时间"`
  209. }
  210. type UserRemarksResp struct {
  211. Id int `orm:"column(id);pk"`
  212. UserId int `description:"用户ID"`
  213. AdminId int `description:"销售/管理员ID"`
  214. Content string `description:"备注信息"`
  215. CreateTime string `description:"创建时间"`
  216. }
  217. type UserRemarAddReq struct {
  218. UserId int `description:"用户ID"`
  219. Content string `description:"备注信息"`
  220. SourceType int `description:"操作类型,1:对联系人单独设置,2:对机构批量设置"`
  221. DoType int `description:"操作方式,1:添加,2:取消"`
  222. }
  223. // 添加UserRemarks
  224. func AddUserRemarks(item *UserRemarks) (err error) {
  225. o := orm.NewOrm()
  226. _, err = o.Insert(item)
  227. return
  228. }
  229. // 获取备注列表
  230. func GetUserRemarksList(userId int) (items []*UserRemarksResp, err error) {
  231. o := orm.NewOrm()
  232. sql := ` SELECT * FROM user_remarks WHERE user_id=? ORDER BY create_time DESC`
  233. _, err = o.Raw(sql, userId).QueryRows(&items)
  234. return
  235. }
  236. // 获取备注列表(多用户)
  237. func GetUserRemarksListByUserIds(uids string) (items []*UserRemarksResp, err error) {
  238. o := orm.NewOrm()
  239. sql := ` SELECT * FROM user_remarks WHERE user_id IN(` + uids + `) ORDER BY create_time DESC`
  240. _, err = o.Raw(sql).QueryRows(&items)
  241. return
  242. }
  243. type UserRemarksListResp struct {
  244. List []*UserRemarksResp
  245. }
  246. // 切换列表
  247. type CygxUserTableRep struct {
  248. PermissionName string `description:"名称"`
  249. Source int `description:"类型"`
  250. TotalNum int `description:"总数"`
  251. }
  252. type CygxUserTableListRep struct {
  253. List []*CygxUserTableRep
  254. UserName string `description:"用户名称"`
  255. ComapnyName string `description:"公司名称"`
  256. Mobile string `description:"手机号"`
  257. }
  258. // @Param TryStage query int false "试用客户子标签:0全部、1未分类、2 推进、3 跟踪、4 预备"
  259. // 状态搜索列表
  260. type CygxTryStageRep struct {
  261. Name string `description:"试用客户子标签"`
  262. TryStage int `description:"试用客户子标签:0全部、1未分类、2 推进、3 跟踪、4 预备"`
  263. }
  264. type CygxUserTableStatusRep struct {
  265. List []*CygxTryStageRep
  266. Name string `description:"状态"`
  267. TryStage string `description:"状态"`
  268. }
  269. type CygxUserTableStatusListRep struct {
  270. List []*CygxUserTableStatusRep
  271. }
  272. type UserInteractionListResp struct {
  273. Paging *paging.PagingItem
  274. List []*UserInteraction
  275. MeetingNum int `description:"已到会"`
  276. NoMeetingNum int `description:"未到会"`
  277. }
  278. type UserInteraction struct {
  279. ArticleId int `description:"文章id"`
  280. ActivityId int `description:"活动ID"`
  281. ArticleType int `description:"文章类型 1:查研观向, 2:策略平台"`
  282. ArticleIdMd5 string `description:"文章MD5id"`
  283. Title string `description:"标题"`
  284. MediaTitle string `description:"音视频标题"`
  285. CategoryName string `description:"行业2"`
  286. PublishDate string `description:"发布时间"`
  287. CreateTime string `description:"创建时间"`
  288. CreateDate string `orm:"column(create_time);" description:"创建时间"`
  289. PermissionName string `orm:"column(chart_permission_name);" description:"行业"`
  290. ChartPermissionId int `description:"行业id"`
  291. IndustryName string `description:"产业名称"`
  292. SubjectNameStr string `description:"关联标的"`
  293. MatchTypeName string `description:"匹配类型"`
  294. StopTime string `description:"阅读停留时间"`
  295. NickName string `description:"作者昵称"`
  296. DepartmentId int `description:"作者ID "`
  297. KeyWord string `description:"关键词"`
  298. LabelKeyWord string `description:"标签关键词"`
  299. Source int `description:"关键词来源;1:纪要、2:图表、3:纪要/图表、4:产业资源包、5:报告、6:活动、7:搜索关键词、8:专项产业调研、9音视频播放"`
  300. ActivityName string `description:"活动名称"`
  301. ActivityType int `description:"1 线上,0、2线下"`
  302. IsMeeting int `description:"是否到会, 1是,0否"`
  303. ActivityTypeName string `description:"活动类型名称"`
  304. Label string `description:"标签"`
  305. ActivityTime string `description:"活动时间"`
  306. ActivityTimeText string `description:"活动时间"`
  307. FirstMeetingTime string `description:"首次入会时间"`
  308. LastMeetingTime string `description:"最后退出时间"`
  309. Duration string `description:"参会时长"`
  310. MeetingTypeStr string `description:"参会方式"`
  311. MeetingAuthentication string `description:"参会权鉴"`
  312. MeetingStatusStr string `description:"参会状态"`
  313. SignupType string `description:"参会方式 "`
  314. InteractionType string `description:"互动类型 "`
  315. ReminderNum int `description:"预约外呼数量 "`
  316. TitleEn string `description:"英文标题 "`
  317. PtagName string `description:"父类名称"`
  318. CtagName string `description:"子类名称"`
  319. PtagNameTwo string `description:"父类名称"`
  320. CtagNameTwo string `description:"子类名称"`
  321. CtagNamePc string `description:"Pc端所有的分类名称"`
  322. BodyHtml string `orm:"column(cover)";description:"图片链接"`
  323. HttpUrl string `orm:"column(iframe)";description:"文章链接跳转地址"`
  324. ChartId int `description:"图表id"`
  325. RealName string `description:"姓名"`
  326. CompanyName string `description:"公司名称"`
  327. CompanyId int `description:"公司ID"`
  328. SellerName string `description:"所属销售"`
  329. Mobile string `description:"手机号"`
  330. UserId int `description:"用户ID"`
  331. City string `description:"城市"`
  332. FileType string `description:"文件类型"`
  333. ListChart []*HomeChartListResp
  334. Paging *paging.PagingItem
  335. IsEnd bool `description:"是否最后一页,配合前端分页添加的参数"`
  336. CurrentIndex int `description:"当前页页码,配合前端分页添加的参数"`
  337. RegisterPlatform int `description:"来源 1小程序,2:网页 ,3:策略平台"`
  338. RegisterPlatformText string `description:"阅读来源(文本描述)"`
  339. SourcePlatform string `description:"来源 'MOBILE:移动端小程序','PC:PC端小程序','CELUE:上海策略平台','WEB:查研观向网页版'"`
  340. TagId int
  341. TagName string // 标签名
  342. ArticleTypes string // 报告系列
  343. ActivityTypes string // 活动类型
  344. Industries string // 产业
  345. SubjectNames string // 标的
  346. SpecialType int `description:"专栏类型 1:笔记,2:观点"`
  347. ArticleNum int // 已发布的文章数量
  348. FansNum int // 粉丝数量
  349. ResearcherName string `description:"研究员姓名"`
  350. RoadShowTheme string `description:"路演主题"`
  351. }
  352. // 查研观向图表
  353. type CygxChartResp struct {
  354. Title string `description:"标题"`
  355. PublishDate string `description:"发布时间"`
  356. CreateTime string `description:"创建时间"`
  357. TitleEn string `description:"英文标题 "`
  358. PtagName string `description:"父类名称"`
  359. CtagName string `description:"子类名称"`
  360. PtagNameTwo string `description:"父类名称"`
  361. CtagNameTwo string `description:"子类名称"`
  362. CtagNamePc string `description:"Pc端所有的分类名称"`
  363. BodyHtml string `orm:"column(cover)";description:"图片链接"`
  364. HttpUrl string `orm:"column(iframe)";description:"文章链接跳转地址"`
  365. ChartId int `description:"图表id"`
  366. RealyName string `description:"姓名"`
  367. Mobile string `description:"手机号"`
  368. }
  369. // 获取阅读记录数量
  370. func GetCygxArticleHistoryCount(mobile, email, condition string) (count int, err error) {
  371. o := orm.NewOrmUsingDB("hz_cygx")
  372. sqlCount := ` SELECT COUNT(1) AS count FROM cygx_article_history_record_all as r INNER JOIN cygx_article as art ON art.article_id = r.article_id WHERE r.mobile = '` + mobile + `' AND is_del = 0 ` + condition
  373. err = o.Raw(sqlCount).QueryRow(&count)
  374. return
  375. }
  376. // 阅读记录列表
  377. func GetCygxArticleHistoryRecordByUser(mobile, email, condition string, startSize, pageSize int) (items []*UserInteraction, err error) {
  378. o := orm.NewOrmUsingDB("hz_cygx")
  379. sql := ` SELECT
  380. art.title,
  381. art.article_id,
  382. art.article_id_md5,
  383. art.publish_date,
  384. art.category_name,
  385. re.chart_permission_name,
  386. re.chart_permission_id,
  387. r.create_time,
  388. r.stop_time,
  389. r.source as source_platform,
  390. (
  391. SELECT
  392. GROUP_CONCAT( DISTINCT s.subject_name SEPARATOR '/' )
  393. FROM
  394. cygx_industrial_subject AS s
  395. WHERE
  396. s.industrial_subject_id IN ( SELECT industrial_subject_id FROM cygx_industrial_article_group_subject AS sg WHERE sg.article_id = art.article_id )
  397. ) AS subject_name_str,
  398. (
  399. SELECT
  400. GROUP_CONCAT( DISTINCT man.industry_name SEPARATOR '/' )
  401. FROM
  402. cygx_industrial_management AS man
  403. WHERE
  404. man.industrial_management_id IN ( SELECT industrial_management_id FROM cygx_industrial_article_group_management AS man_g WHERE man_g.article_id = art.article_id )
  405. ) AS industry_name
  406. FROM
  407. cygx_article_history_record_all AS r
  408. INNER JOIN cygx_article AS art ON art.article_id = r.article_id
  409. LEFT JOIN cygx_report_mapping AS re ON re.category_id = art.category_id_two
  410. LEFT JOIN cygx_industrial_article_group_management AS man ON man.article_id = art.article_id
  411. WHERE
  412. r.mobile = ? AND is_del = 0 ` + condition + ` OR ( email = ? AND email <>'' AND is_del = 0 ` + condition + ` )
  413. GROUP BY r.id ORDER BY r.create_time DESC `
  414. if startSize > 0 || pageSize > 0 {
  415. sql += ` LIMIT ` + strconv.Itoa(startSize) + "," + strconv.Itoa(pageSize)
  416. }
  417. _, err = o.Raw(sql, mobile, email).QueryRows(&items)
  418. return
  419. }
  420. // 用户阅读记录列表 2023-08-02 优化拆分
  421. func GetCygxArticleHistoryRecordByUserNew(condition string, startSize, pageSize int) (total int, items []*UserInteraction, err error) {
  422. o := orm.NewOrmUsingDB("hz_cygx")
  423. var sql string
  424. sql += `SELECT
  425. art.title,
  426. art.article_id,
  427. art.article_id_md5,
  428. art.publish_date,
  429. art.category_name,
  430. r.create_time,
  431. r.stop_time,
  432. r.source AS source_platform,
  433. '' AS register_platform,
  434. '' AS special_type
  435. FROM
  436. cygx_article_history_record_all AS r
  437. INNER JOIN cygx_article AS art ON art.article_id = r.article_id
  438. WHERE
  439. 1= 1
  440. AND is_del = 0 ` + condition
  441. //sql += ` UNION ALL `
  442. //sql += ` SELECT
  443. // art.title,
  444. // art.id AS article_id,
  445. // '' AS article_id_md5,
  446. // art.publish_time AS publish_date,
  447. // '' AS category_name,
  448. // r.create_time,
  449. // r.stop_time,
  450. // r.register_platform AS source_platform,
  451. // r.register_platform,
  452. // art.type AS special_type
  453. // FROM
  454. // cygx_yanxuan_special_record AS r
  455. // INNER JOIN cygx_yanxuan_special AS art ON art.id = r.yanxuan_special_id
  456. // WHERE 1 = 1 ` + condition
  457. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  458. err = o.Raw(totalSql).QueryRow(&total)
  459. if err != nil {
  460. return
  461. }
  462. sql += ` ORDER BY create_time DESC, article_id DESC `
  463. if startSize > 0 || pageSize > 0 {
  464. sql += ` LIMIT ` + strconv.Itoa(startSize) + "," + strconv.Itoa(pageSize)
  465. }
  466. _, err = o.Raw(sql).QueryRows(&items)
  467. return
  468. }
  469. // 用户阅读记录列表
  470. func GetCygxYanxuaSspecialHistoryRecordByUser(condition string, startSize, pageSize int) (total int, items []*UserInteraction, err error) {
  471. o := orm.NewOrmUsingDB("hz_cygx")
  472. var sql string
  473. sql += ` SELECT
  474. art.title,
  475. art.id AS article_id,
  476. art.publish_time AS publish_date,
  477. r.create_time,
  478. r.stop_time,
  479. r.user_id,
  480. r.mobile,
  481. r.company_id,
  482. r.company_name,
  483. r.real_name,
  484. r.register_platform AS source_platform,
  485. art.type AS special_type,
  486. art.industry_tags as industry_name
  487. FROM
  488. cygx_yanxuan_special_record AS r
  489. INNER JOIN cygx_yanxuan_special AS art ON art.id = r.yanxuan_special_id
  490. WHERE 1 = 1 ` + condition
  491. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  492. err = o.Raw(totalSql).QueryRow(&total)
  493. if err != nil {
  494. return
  495. }
  496. sql += ` ORDER BY create_time DESC, article_id DESC `
  497. if startSize > 0 || pageSize > 0 {
  498. sql += ` LIMIT ` + strconv.Itoa(startSize) + "," + strconv.Itoa(pageSize)
  499. }
  500. _, err = o.Raw(sql).QueryRows(&items)
  501. return
  502. }
  503. // 用户阅读记录列表
  504. func GetCygxYanxuaSspecialHistoryRecordByUserWeekly(condition string, startSize, pageSize int) (total int, items []*UserInteraction, err error) {
  505. o := orm.NewOrmUsingDB("hz_cygx")
  506. var sql string
  507. sql += ` SELECT
  508. art.title,
  509. art.id AS article_id,
  510. art.publish_time AS publish_date,
  511. r.create_time,
  512. r.stop_time,
  513. r.user_id,
  514. r.mobile,
  515. r.company_id,
  516. r.company_name,
  517. r.real_name,
  518. r.register_platform AS source_platform,
  519. art.type AS special_type,
  520. art.industry_tags as industry_name
  521. FROM
  522. cygx_yanxuan_special_record AS r
  523. INNER JOIN cygx_yanxuan_special AS art ON art.id = r.yanxuan_special_id
  524. INNER JOIN %s.user_seller_relation AS us ON us.user_id = r.user_id AND us.product_id = 2
  525. WHERE 1 = 1 ` + condition
  526. databaseName := utils.GetWeeklyDatabase()
  527. sql = fmt.Sprintf(sql, databaseName)
  528. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  529. err = o.Raw(totalSql).QueryRow(&total)
  530. if err != nil {
  531. return
  532. }
  533. sql += ` ORDER BY create_time DESC, article_id DESC `
  534. if startSize > 0 || pageSize > 0 {
  535. sql += ` LIMIT ` + strconv.Itoa(startSize) + "," + strconv.Itoa(pageSize)
  536. }
  537. _, err = o.Raw(sql).QueryRows(&items)
  538. return
  539. }
  540. // 用户阅读记录列表
  541. func GetCygxYanxuanSpecialCollectByUser(condition string, startSize, pageSize int) (total int, items []*UserInteraction, err error) {
  542. o := orm.NewOrmUsingDB("hz_cygx")
  543. var sql string
  544. sql += ` SELECT
  545. art.title,
  546. art.id AS article_id,
  547. art.publish_time AS publish_date,
  548. r.create_time,
  549. r.user_id,
  550. r.mobile,
  551. r.company_id,
  552. r.company_name,
  553. r.real_name,
  554. r.register_platform AS source_platform,
  555. art.type AS special_type,
  556. art.industry_tags as industry_name
  557. FROM
  558. cygx_yanxuan_special_collect AS r
  559. INNER JOIN cygx_yanxuan_special AS art ON art.id = r.yanxuan_special_id
  560. WHERE 1 = 1 ` + condition
  561. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  562. err = o.Raw(totalSql).QueryRow(&total)
  563. if err != nil {
  564. return
  565. }
  566. sql += ` ORDER BY create_time DESC, article_id DESC `
  567. if startSize > 0 || pageSize > 0 {
  568. sql += ` LIMIT ` + strconv.Itoa(startSize) + "," + strconv.Itoa(pageSize)
  569. }
  570. _, err = o.Raw(sql).QueryRows(&items)
  571. return
  572. }
  573. // 用户阅读记录列表
  574. func GetCygxYanxuanSpecialCollectByUserWeekly(condition string, startSize, pageSize int) (total int, items []*UserInteraction, err error) {
  575. o := orm.NewOrmUsingDB("hz_cygx")
  576. var sql string
  577. sql += ` SELECT
  578. art.title,
  579. art.id AS article_id,
  580. art.publish_time AS publish_date,
  581. r.create_time,
  582. r.user_id,
  583. r.mobile,
  584. r.company_id,
  585. r.company_name,
  586. r.real_name,
  587. r.register_platform AS source_platform,
  588. art.type AS special_type,
  589. art.industry_tags as industry_name
  590. FROM
  591. cygx_yanxuan_special_collect AS r
  592. INNER JOIN cygx_yanxuan_special AS art ON art.id = r.yanxuan_special_id
  593. INNER JOIN %s.user_seller_relation AS us ON us.user_id = r.user_id AND us.product_id = 2
  594. WHERE 1 = 1 ` + condition
  595. databaseName := utils.GetWeeklyDatabase()
  596. sql = fmt.Sprintf(sql, databaseName)
  597. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  598. err = o.Raw(totalSql).QueryRow(&total)
  599. if err != nil {
  600. return
  601. }
  602. sql += ` ORDER BY create_time DESC, article_id DESC `
  603. if startSize > 0 || pageSize > 0 {
  604. sql += ` LIMIT ` + strconv.Itoa(startSize) + "," + strconv.Itoa(pageSize)
  605. }
  606. _, err = o.Raw(sql).QueryRows(&items)
  607. return
  608. }
  609. // 用户阅读记录列表
  610. func GetCygxYanxuanSpecialAuthorByUser(condition string, startSize, pageSize int) (total int, items []*UserInteraction, err error) {
  611. o := orm.NewOrmUsingDB("hz_cygx")
  612. var sql string
  613. sql += ` SELECT
  614. art.special_name as title,
  615. art.id AS department_id,
  616. art.nick_name,
  617. art.article_num,
  618. art.fans_num,
  619. art.mobile_init,
  620. r.create_time,
  621. r.user_id,
  622. r.mobile,
  623. r.company_id,
  624. r.company_name,
  625. r.real_name,
  626. r.register_platform AS source_platform
  627. FROM
  628. cygx_yanxuan_special_follow AS r
  629. INNER JOIN cygx_yanxuan_special_author AS art ON art.user_id = r.follow_user_id
  630. WHERE 1 = 1 ` + condition
  631. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  632. err = o.Raw(totalSql).QueryRow(&total)
  633. if err != nil {
  634. return
  635. }
  636. sql += ` ORDER BY create_time DESC, department_id DESC `
  637. if startSize > 0 || pageSize > 0 {
  638. sql += ` LIMIT ` + strconv.Itoa(startSize) + "," + strconv.Itoa(pageSize)
  639. }
  640. _, err = o.Raw(sql).QueryRows(&items)
  641. return
  642. }
  643. // 用户阅读记录列表
  644. func GetCygxYanxuanSpecialAuthorByUserWeekly(condition string, startSize, pageSize int) (total int, items []*UserInteraction, err error) {
  645. o := orm.NewOrmUsingDB("hz_cygx")
  646. var sql string
  647. sql += ` SELECT
  648. art.special_name as title,
  649. art.id AS department_id,
  650. art.nick_name,
  651. art.article_num,
  652. art.fans_num,
  653. art.mobile_init,
  654. r.create_time,
  655. r.user_id,
  656. r.mobile,
  657. r.company_id,
  658. r.company_name,
  659. r.real_name,
  660. r.register_platform AS source_platform
  661. FROM
  662. cygx_yanxuan_special_follow AS r
  663. INNER JOIN cygx_yanxuan_special_author AS art ON art.user_id = r.follow_user_id
  664. INNER JOIN %s.user_seller_relation AS us ON us.user_id = r.user_id AND us.product_id = 2
  665. WHERE 1 = 1 ` + condition
  666. databaseName := utils.GetWeeklyDatabase()
  667. sql = fmt.Sprintf(sql, databaseName)
  668. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  669. err = o.Raw(totalSql).QueryRow(&total)
  670. if err != nil {
  671. return
  672. }
  673. sql += ` ORDER BY create_time DESC, department_id DESC `
  674. if startSize > 0 || pageSize > 0 {
  675. sql += ` LIMIT ` + strconv.Itoa(startSize) + "," + strconv.Itoa(pageSize)
  676. }
  677. _, err = o.Raw(sql).QueryRows(&items)
  678. return
  679. }
  680. // 收藏列表数量
  681. func GetCygxArticleCollectCount(uid int, condition string) (count int, err error) {
  682. o := orm.NewOrmUsingDB("hz_cygx")
  683. sqlCount := ` SELECT COUNT(1) AS count FROM cygx_article_collect as r INNER JOIN cygx_article AS art ON art.article_id = r.article_id WHERE user_id = ? ` + condition
  684. err = o.Raw(sqlCount, uid).QueryRow(&count)
  685. return
  686. }
  687. // 收藏列表
  688. func GetCygxArticleCollectByUser(uid, startSize, pageSize int, condition string) (items []*UserInteraction, err error) {
  689. o := orm.NewOrmUsingDB("hz_cygx")
  690. sql := ` SELECT
  691. art.title,
  692. art.article_id,
  693. art.article_id_md5,
  694. art.publish_date,
  695. re.chart_permission_name,
  696. re.chart_permission_id,
  697. r.create_time,
  698. re.match_type_name,
  699. (
  700. SELECT
  701. GROUP_CONCAT( DISTINCT s.subject_name SEPARATOR '/' )
  702. FROM
  703. cygx_industrial_subject AS s
  704. WHERE
  705. s.industrial_subject_id IN ( SELECT industrial_subject_id FROM cygx_industrial_article_group_subject AS sg WHERE sg.article_id = art.article_id )
  706. ) AS subject_name_str,
  707. (
  708. SELECT
  709. GROUP_CONCAT( DISTINCT man.industry_name SEPARATOR '/' )
  710. FROM
  711. cygx_industrial_management AS man
  712. WHERE
  713. man.industrial_management_id IN ( SELECT industrial_management_id FROM cygx_industrial_article_group_management AS man_g WHERE man_g.article_id = art.article_id )
  714. ) AS industry_name
  715. FROM
  716. cygx_article_collect AS r
  717. INNER JOIN cygx_article AS art ON art.article_id = r.article_id
  718. LEFT JOIN cygx_report_mapping AS re ON re.category_id = art.category_id_two
  719. LEFT JOIN cygx_industrial_article_group_management AS man ON man.article_id = art.article_id
  720. WHERE
  721. user_id = ? ` + condition + ` GROUP BY r.article_id
  722. ORDER BY r.create_time DESC `
  723. if startSize > 0 || pageSize > 0 {
  724. sql += ` LIMIT ` + strconv.Itoa(startSize) + "," + strconv.Itoa(pageSize)
  725. }
  726. _, err = o.Raw(sql, uid).QueryRows(&items)
  727. return
  728. }
  729. // 关注作者数量
  730. func GetCygArticleDepartmentFollowCount(uid int) (count int, err error) {
  731. o := orm.NewOrmUsingDB("hz_cygx")
  732. sqlCount := ` SELECT COUNT(1) AS count FROM cygx_article_department_follow WHERE user_id = ? AND type = 1 `
  733. err = o.Raw(sqlCount, uid).QueryRow(&count)
  734. return
  735. }
  736. // 关注作者列表
  737. func GetCygArticleDepartmentFollowByUser(uid, startSize, pageSize int) (items []*UserInteraction, err error) {
  738. o := orm.NewOrmUsingDB("hz_cygx")
  739. sql := `SELECT
  740. m.department_id,
  741. m.nick_name,
  742. f.modify_time as create_time,
  743. m.department_id,
  744. i.industry_name,
  745. a.title,
  746. a.article_id,
  747. ( SELECT GROUP_CONCAT( DISTINCT i.industry_name SEPARATOR '/' ) FROM cygx_industrial_management AS i WHERE i.industrial_management_id = mg.industrial_management_id ) AS industry_name,
  748. ( SELECT GROUP_CONCAT( DISTINCT s.subject_name SEPARATOR '/' ) FROM cygx_industrial_subject AS s WHERE s.industrial_management_id = i.industrial_management_id ) AS subject_name_str
  749. FROM
  750. cygx_article_department_follow AS f
  751. INNER JOIN cygx_article_department AS m ON m.department_id = f.department_id
  752. LEFT JOIN cygx_article AS a ON a.department_id = m.department_id
  753. LEFT JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = a.article_id
  754. LEFT JOIN cygx_industrial_management AS i ON i.industrial_management_id = mg.industrial_management_id
  755. WHERE f.user_id = ? AND f.type = 1 GROUP BY m.department_id
  756. ORDER BY f.create_time DESC LIMIT ?,? `
  757. _, err = o.Raw(sql, uid, startSize, pageSize).QueryRows(&items)
  758. return
  759. }
  760. // 用户搜索关键词统计
  761. func GetCygxSearchKeyWordCount(uid int, condition string) (count int, err error) {
  762. o := orm.NewOrmUsingDB("hz_cygx")
  763. sqlCount := ` SELECT COUNT(1) AS count FROM cygx_search_key_word WHERE user_id = ? ` + condition
  764. err = o.Raw(sqlCount, uid).QueryRow(&count)
  765. return
  766. }
  767. // 用户搜索关键词列表
  768. func GetCygxSearchKeyWordByUser(condition string, uid, startSize, pageSize int) (items []*UserInteraction, err error) {
  769. o := orm.NewOrmUsingDB("hz_cygx")
  770. sql := `SELECT
  771. key_word,create_time
  772. FROM
  773. cygx_search_key_word as k
  774. WHERE user_id = ? ` + condition + `
  775. ORDER BY k.create_time DESC LIMIT ?,? `
  776. _, err = o.Raw(sql, uid, startSize, pageSize).QueryRows(&items)
  777. return
  778. }
  779. // 用户专项产业调研统计
  780. func GetCygxActivitySpecialTripCount(condition string, pars []interface{}) (count int, err error) {
  781. o := orm.NewOrmUsingDB("hz_cygx")
  782. sqlCount := `SELECT
  783. COUNT( 1 )
  784. FROM
  785. cygx_activity_special_meeting_detail AS h
  786. INNER JOIN cygx_activity_special AS a ON a.activity_id = h.activity_id
  787. WHERE
  788. 1 = 1
  789. AND a.publish_status = 1 AND a.activity_time_end < NOW() ` + condition
  790. err = o.Raw(sqlCount, pars).QueryRow(&count)
  791. return
  792. }
  793. // 用户专项产业调研列表
  794. func GetCygxActivitySpecialTripByUser(uid, startSize, pageSize int) (items []*UserInteraction, err error) {
  795. o := orm.NewOrmUsingDB("hz_cygx")
  796. sql := `SELECT
  797. a.research_theme AS activity_name,
  798. a.chart_permission_name,
  799. a.activity_time_text_by_day AS activity_time_text,
  800. a.city,
  801. a.activity_id,
  802. a.special_type AS activity_type,
  803. h.is_meeting
  804. FROM
  805. cygx_activity_special_meeting_detail AS h
  806. INNER JOIN cygx_activity_special AS a ON a.activity_id = h.activity_id
  807. WHERE
  808. 1 = 1
  809. AND a.publish_status = 1 AND a.activity_time_end < NOW()
  810. AND h.user_id = ?
  811. ORDER BY a.activity_time DESC LIMIT ?,? `
  812. _, err = o.Raw(sql, uid, startSize, pageSize).QueryRows(&items)
  813. return
  814. }
  815. // 用户音视频浏览统计
  816. func GetCygxRoadshowCount(uid int) (count int, err error) {
  817. o := orm.NewOrmUsingDB("hz_cygx")
  818. sqlCount := `SELECT
  819. COUNT( 1 ) total
  820. FROM
  821. (
  822. SELECT
  823. ""
  824. FROM
  825. cygx_micro_roadshow_video_history AS r
  826. INNER JOIN cygx_micro_roadshow_video AS v ON r.video_id = v.video_id
  827. WHERE
  828. r.user_id = ? UNION ALL
  829. SELECT
  830. ""
  831. FROM
  832. cygx_activity_video_history AS r
  833. INNER JOIN cygx_activity_video AS v ON r.video_id = v.video_id
  834. WHERE
  835. r.user_id = ? UNION ALL
  836. SELECT
  837. ""
  838. FROM
  839. cygx_activity_voice_history AS r
  840. INNER JOIN cygx_activity_voice AS v ON r.activity_id = v.activity_id
  841. WHERE
  842. r.user_id = ?
  843. )z `
  844. err = o.Raw(sqlCount, uid, uid, uid).QueryRow(&count)
  845. return
  846. }
  847. // 用户专项产业调研列表
  848. func GetCygxRoadshowByUser(uid, startSize, pageSize int) (items []*UserInteraction, err error) {
  849. o := orm.NewOrmUsingDB("hz_cygx")
  850. sql := `SELECT
  851. v.video_name AS media_title,
  852. r.create_time,
  853. "逻辑解析" AS file_type
  854. FROM
  855. cygx_micro_roadshow_video_history AS r
  856. INNER JOIN cygx_micro_roadshow_video AS v ON r.video_id = v.video_id
  857. WHERE
  858. r.user_id = ? UNION ALL
  859. SELECT
  860. v.video_name AS media_title,
  861. r.create_time,
  862. "路演回放" AS file_type
  863. FROM
  864. cygx_activity_video_history AS r
  865. INNER JOIN cygx_activity_video AS v ON r.video_id = v.video_id
  866. WHERE
  867. r.user_id = ? UNION ALL
  868. SELECT
  869. v.voice_name AS media_title,
  870. r.create_time,
  871. "路演回放" AS file_type
  872. FROM
  873. cygx_activity_voice_history AS r
  874. INNER JOIN cygx_activity_voice AS v ON r.activity_id = v.activity_id
  875. WHERE
  876. r.user_id = ?
  877. ORDER BY create_time DESC LIMIT ?,? `
  878. _, err = o.Raw(sql, uid, uid, uid, startSize, pageSize).QueryRows(&items)
  879. return
  880. }
  881. // 线上已到会列表
  882. func GetAttendanceDetailListByUser(isMeeting int, mobile string, startSize, pageSize int) (item []*UserInteraction, err error) {
  883. o := orm.NewOrmUsingDB("hz_cygx")
  884. sql := `SELECT
  885. s.signup_type,
  886. a.activity_name,
  887. a.chart_permission_name,
  888. a.activity_type_name,
  889. a.label,
  890. a.activity_time,
  891. d.first_meeting_time,
  892. d.last_meeting_time,
  893. d.meeting_type_str,
  894. d.meeting_authentication,
  895. d.meeting_status_str,
  896. d.duration
  897. FROM
  898. cygx_activity_signup AS s
  899. INNER JOIN cygx_activity AS a ON a.activity_id = s.activity_id
  900. INNER JOIN cygx_activity_attendance_detail AS d ON d.activity_id = s.activity_id
  901. INNER JOIN cygx_activity_type as t ON t.activity_type_id = a.activity_type_id
  902. WHERE
  903. 1 = 1
  904. AND s.do_fail_type = 0
  905. AND s.is_cancel = 0
  906. AND s.is_meeting = ?
  907. AND s.mobile = ?
  908. AND a.is_submit_meeting = 1
  909. AND t.activity_type = 1
  910. GROUP BY
  911. a.activity_id
  912. ORDER BY
  913. a.activity_time DESC
  914. LIMIT ?,?`
  915. _, err = o.Raw(sql, isMeeting, mobile, startSize, pageSize).QueryRows(&item)
  916. return
  917. }
  918. // 线上未来到会列表
  919. func GetAttendanceDetailListNoMeetingByUser(isMeeting int, mobile string, startSize, pageSize int) (item []*UserInteraction, err error) {
  920. o := orm.NewOrmUsingDB("hz_cygx")
  921. sql := `SELECT
  922. s.signup_type,
  923. a.activity_name,
  924. a.chart_permission_name,
  925. a.activity_type_name,
  926. a.label,
  927. a.activity_time,
  928. ( SELECT COUNT( 1 ) FROM cygx_activity_meeting_reminder AS rm WHERE rm.activity_id = s.activity_id AND rm.mobile = s.mobile ) AS reminder_num
  929. FROM
  930. cygx_activity_signup AS s
  931. INNER JOIN cygx_activity AS a ON a.activity_id = s.activity_id
  932. INNER JOIN cygx_activity_type as t ON t.activity_type_id = a.activity_type_id
  933. WHERE
  934. 1 = 1
  935. AND s.do_fail_type = 0
  936. AND s.is_cancel = 0
  937. AND s.is_meeting = ?
  938. AND s.mobile = ?
  939. AND a.is_submit_meeting = 1
  940. AND t.activity_type = 1
  941. GROUP BY
  942. a.activity_id
  943. ORDER BY
  944. a.activity_time DESC
  945. LIMIT ?,?`
  946. _, err = o.Raw(sql, isMeeting, mobile, startSize, pageSize).QueryRows(&item)
  947. return
  948. }
  949. // 用户参会统计
  950. func GetAttendanceDetaiCount(mobile string, meetType, isMeeting int) (count int, err error) {
  951. o := orm.NewOrmUsingDB("hz_cygx")
  952. sqlCount := ` SELECT
  953. COUNT( DISTINCT a.activity_id ) as count
  954. FROM
  955. cygx_activity_signup AS s
  956. INNER JOIN cygx_activity as a ON a.activity_id = s.activity_id
  957. INNER JOIN cygx_activity_type as t ON t.activity_type_id = a.activity_type_id
  958. WHERE
  959. mobile = ?
  960. AND is_meeting =?
  961. AND s.do_fail_type = 0
  962. AND a.is_submit_meeting = 1 `
  963. if meetType == 1 {
  964. sqlCount += ` AND t.activity_type = 1 `
  965. } else {
  966. sqlCount += ` AND t.activity_type = 0 `
  967. }
  968. err = o.Raw(sqlCount, mobile, isMeeting).QueryRow(&count)
  969. return
  970. }
  971. // 线下已到会列表
  972. func GetAttendanceOfflineListByUser(isMeeting int, mobile string, startSize, pageSize int) (item []*UserInteraction, err error) {
  973. o := orm.NewOrmUsingDB("hz_cygx")
  974. sql := `SELECT
  975. a.activity_name,
  976. a.chart_permission_name,
  977. a.activity_type_name,
  978. a.label,
  979. a.activity_time
  980. FROM
  981. cygx_activity_signup AS s
  982. INNER JOIN cygx_activity AS a ON a.activity_id = s.activity_id
  983. INNER JOIN cygx_activity_type as t ON t.activity_type_id = a.activity_type_id
  984. WHERE
  985. 1 = 1
  986. AND s.do_fail_type = 0
  987. AND s.is_cancel = 0
  988. AND s.is_meeting = ?
  989. AND s.mobile = ?
  990. AND a.is_submit_meeting = 1
  991. AND t.activity_type = 0
  992. GROUP BY
  993. a.activity_id
  994. ORDER BY
  995. a.activity_time DESC
  996. LIMIT ?,?`
  997. _, err = o.Raw(sql, isMeeting, mobile, startSize, pageSize).QueryRows(&item)
  998. return
  999. }
  1000. // 获取用户参会记录数量
  1001. func GetActivityMeetByUserCount(condition string) (count int, err error) {
  1002. o := orm.NewOrmUsingDB("hz_cygx")
  1003. sqlCount := ` SELECT
  1004. COUNT( DISTINCT a.activity_id ) as count
  1005. FROM
  1006. cygx_activity_signup_detail AS s
  1007. INNER JOIN cygx_activity as a ON a.activity_id = s.activity_id
  1008. INNER JOIN cygx_activity_type as t ON t.activity_type_id = a.activity_type_id
  1009. WHERE
  1010. 1=1
  1011. AND s.do_fail_type = 0 `
  1012. if condition != "" {
  1013. sqlCount += condition
  1014. }
  1015. err = o.Raw(sqlCount).QueryRow(&count)
  1016. return
  1017. }
  1018. // 获取用户参会记录
  1019. func GetActivityMeetByUser(condition string, startSize, pageSize int) (item []*UserInteraction, err error) {
  1020. o := orm.NewOrmUsingDB("hz_cygx")
  1021. sql := `SELECT
  1022. t.activity_type,
  1023. s.signup_type,
  1024. s.is_meeting,
  1025. a.activity_name,
  1026. a.chart_permission_name,
  1027. a.activity_type_name,
  1028. a.label,
  1029. a.activity_time,
  1030. s.first_meeting_time,
  1031. s.last_meeting_time,
  1032. s.meeting_type_str,
  1033. s.meeting_authentication,
  1034. s.meeting_status_str,
  1035. s.duration
  1036. FROM
  1037. cygx_activity_signup_detail AS s
  1038. INNER JOIN cygx_activity AS a ON a.activity_id = s.activity_id
  1039. INNER JOIN cygx_activity_type as t ON t.activity_type_id = a.activity_type_id
  1040. WHERE
  1041. 1 = 1
  1042. AND s.do_fail_type = 0 ` + condition + `
  1043. GROUP BY
  1044. s.activity_id,s.outbound_mobile
  1045. ORDER BY
  1046. a.activity_time DESC `
  1047. if startSize > 0 || pageSize > 0 {
  1048. sql += ` LIMIT ` + strconv.Itoa(startSize) + "," + strconv.Itoa(pageSize)
  1049. }
  1050. _, err = o.Raw(sql).QueryRows(&item)
  1051. return
  1052. }
  1053. // 获取用户参会记录
  1054. func GetActivitySpecialMeetByUser(condition string, startSize, pageSize int) (item []*UserInteraction, err error) {
  1055. o := orm.NewOrmUsingDB("hz_cygx")
  1056. sql := `SELECT
  1057. a.activity_id,
  1058. a.research_theme AS activity_name,
  1059. a.chart_permission_name,
  1060. special_type AS activity_type,
  1061. a.activity_time,
  1062. a.activity_time_text_by_day AS activity_time_text
  1063. FROM
  1064. cygx_activity_special_meeting_detail AS s
  1065. INNER JOIN cygx_activity_special AS a ON a.activity_id = s.activity_id
  1066. WHERE
  1067. 1 = 1 ` + condition + `
  1068. GROUP BY
  1069. s.activity_id,
  1070. s.mobile
  1071. ORDER BY
  1072. a.activity_time DESC `
  1073. if startSize > 0 || pageSize > 0 {
  1074. sql += ` LIMIT ` + strconv.Itoa(startSize) + "," + strconv.Itoa(pageSize)
  1075. }
  1076. _, err = o.Raw(sql).QueryRows(&item)
  1077. return
  1078. }
  1079. type GetUserInteractionTableCountResp struct {
  1080. HistoryNum int `description:"报告阅读"`
  1081. CountNum int `description:"报告收藏"`
  1082. IndustryFllowNum int `description:"产业关注"`
  1083. DepartmentFollowNum int `description:"作者关注"`
  1084. KeyWordNum int `description:"搜索关键词"`
  1085. OnLineNum int `description:"线上互动活动"`
  1086. OfficeNum int `description:"线下互动活动"`
  1087. ActivityNum int `description:"活动数量"`
  1088. ChartNum int `description:"图表数量"`
  1089. TripNum int `description:"图表数量"`
  1090. RoadshowVideoNum int `description:"产业视频播放量"`
  1091. ActivityVideoNum int `description:"活动视频播放量"`
  1092. ActivityVoiceNum int `description:"活动音频播放量"`
  1093. TagNum int `description:"首页标签点击量"`
  1094. YanxuanSpecialNum int `description:"研选专栏阅读数量"`
  1095. YanxuanSpecialCollectNum int `description:"研选专栏收藏数量"`
  1096. YanxuanSpecialFollowNum int `description:"研选专栏作者关注数量"`
  1097. FeedbackNum int `description:"交流反馈数量"`
  1098. }
  1099. // 用户互动总数统计
  1100. func GetUserInteractionTableCount(uid int) (item *GetUserInteractionTableCountResp, err error) {
  1101. o := orm.NewOrmUsingDB("hz_cygx")
  1102. sql := `SELECT
  1103. ( SELECT COUNT( 1 ) FROM cygx_article_history_record_all AS h INNER JOIN cygx_article as art ON art.article_id = h.article_id WHERE h.user_id = ? AND h.is_del = 0 AND art.article_type_id = 0 ) AS history_num,
  1104. ( SELECT COUNT( 1 ) FROM cygx_article_collect AS h INNER JOIN cygx_article as art ON art.article_id = h.article_id WHERE h.user_id = ? AND art.article_type_id = 0 ) AS count_num,
  1105. ( SELECT COUNT( 1 ) FROM cygx_chart_collect AS h INNER JOIN cygx_chart_all AS a ON h.chart_id = a.chart_id WHERE h.user_id = ? ) AS chart_num,
  1106. ( SELECT COUNT( 1 ) FROM cygx_industry_fllow AS h INNER JOIN cygx_industrial_management as a ON a.industrial_management_id = h.industrial_management_id WHERE h.user_id = ? AND h.type = 1 AND h.source IN (0,1,2) AND a.chart_permission_id != 31 ) AS industry_fllow_num,
  1107. ( SELECT COUNT( 1 ) FROM cygx_search_key_word AS h WHERE h.user_id = ? AND h.register_platform IN(1,2) ) AS key_word_num,
  1108. ( SELECT COUNT( DISTINCT a.activity_id ) as count FROM cygx_activity_signup_detail AS h INNER JOIN cygx_activity as a ON a.activity_id = h.activity_id INNER JOIN cygx_activity_type as t ON t.activity_type_id = a.activity_type_id WHERE h.user_id = ?
  1109. AND t.activity_type=1 AND h.do_fail_type = 0 AND a.chart_permission_id != 31 ) AS on_line_num,
  1110. ( SELECT COUNT( DISTINCT a.activity_id ) as count FROM cygx_activity_signup_detail AS h INNER JOIN cygx_activity as a ON a.activity_id = h.activity_id INNER JOIN cygx_activity_type as t ON t.activity_type_id = a.activity_type_id WHERE h.user_id = ?
  1111. AND t.activity_type = 0 AND h.do_fail_type = 0 AND a.chart_permission_id != 31 ) AS office_num,
  1112. ( SELECT COUNT( 1 ) FROM cygx_activity_special_meeting_detail AS h INNER JOIN cygx_activity_special AS a ON a.activity_id = h.activity_id WHERE h.user_id = ? AND a.publish_status = 1 AND a.activity_time_end < NOW()) AS trip_num,
  1113. ( SELECT COUNT( 1 ) FROM cygx_micro_roadshow_video_history AS h INNER JOIN cygx_micro_roadshow_video as v ON v.video_id = h.video_id WHERE h.user_id = ? ) AS roadshow_video_num,
  1114. ( SELECT COUNT( 1 ) FROM cygx_activity_video_history AS h INNER JOIN cygx_activity_video as v ON v.video_id = h.video_id WHERE h.user_id = ? ) AS activity_video_num,
  1115. ( SELECT COUNT( 1 ) FROM cygx_activity_voice_history AS h INNER JOIN cygx_activity_voice as v ON v.activity_id = h.activity_id WHERE h.user_id = ? ) AS activity_voice_num,
  1116. ( SELECT COUNT(1) FROM cygx_tag_history as h INNER JOIN cygx_tag AS b ON h.tag_id = b.tag_id WHERE h.user_id = ? ) AS tag_num,
  1117. ( SELECT COUNT(1) FROM cygx_user_feedback as h WHERE h.user_id = ? ) AS feedback_num
  1118. FROM dual `
  1119. err = o.Raw(sql, uid, uid, uid, uid, uid, uid, uid, uid, uid, uid, uid, uid, uid).QueryRow(&item)
  1120. return
  1121. }
  1122. // 用户互动总数统计
  1123. func GetUserInteractionTableCountByYanXuan(uid int) (item *GetUserInteractionTableCountResp, err error) {
  1124. o := orm.NewOrmUsingDB("hz_cygx")
  1125. sql := `SELECT
  1126. ( SELECT COUNT( 1 ) FROM cygx_article_history_record_all AS h INNER JOIN cygx_article as art ON art.article_id = h.article_id WHERE h.user_id = ? AND h.is_del = 0 AND art.article_type_id > 0 ) AS history_num,
  1127. ( SELECT COUNT( 1 ) FROM cygx_article_collect AS h INNER JOIN cygx_article as art ON art.article_id = h.article_id WHERE h.user_id = ? AND art.article_type_id > 0 ) AS count_num,
  1128. ( SELECT COUNT( 1 ) FROM cygx_industry_fllow AS h INNER JOIN cygx_industrial_management as a ON a.industrial_management_id = h.industrial_management_id WHERE h.user_id = ? AND h.type = 1 AND h.source IN (0,1,2) AND a.chart_permission_id = 31 ) AS industry_fllow_num,
  1129. ( SELECT COUNT( 1 ) FROM cygx_article_department_follow AS h WHERE h.user_id = ? AND h.type = 1 ) AS department_follow_num,
  1130. ( SELECT COUNT( 1 ) FROM cygx_search_key_word AS h WHERE h.user_id = ? AND h.register_platform IN(5,6) ) AS key_word_num,
  1131. ( SELECT COUNT( DISTINCT a.activity_id ) as count FROM cygx_activity_signup_detail AS h INNER JOIN cygx_activity as a ON a.activity_id = h.activity_id INNER JOIN cygx_activity_type as t ON t.activity_type_id = a.activity_type_id WHERE h.user_id = ?
  1132. AND t.activity_type=1 AND h.do_fail_type = 0 AND a.chart_permission_id = 31 ) AS on_line_num,
  1133. ( SELECT COUNT( DISTINCT a.activity_id ) as count FROM cygx_activity_signup_detail AS h INNER JOIN cygx_activity as a ON a.activity_id = h.activity_id INNER JOIN cygx_activity_type as t ON t.activity_type_id = a.activity_type_id WHERE h.user_id = ?
  1134. AND t.activity_type = 0 AND h.do_fail_type = 0 AND a.chart_permission_id = 31 ) AS office_num,
  1135. ( SELECT COUNT(1) FROM cygx_yanxuan_special_collect as h INNER JOIN cygx_yanxuan_special AS b ON h.yanxuan_special_id = b.id WHERE h.user_id = ? ) AS yanxuan_special_collect_num,
  1136. ( SELECT COUNT(1) FROM cygx_yanxuan_special_follow as h WHERE h.user_id = ? ) AS yanxuan_special_follow_num,
  1137. ( SELECT COUNT(1) FROM cygx_yanxuan_special_record as h INNER JOIN cygx_yanxuan_special AS b ON h.yanxuan_special_id = b.id WHERE h.user_id = ? ) AS yanxuan_special_num
  1138. FROM dual `
  1139. err = o.Raw(sql, uid, uid, uid, uid, uid, uid, uid, uid, uid, uid).QueryRow(&item)
  1140. return
  1141. }
  1142. // 根据时间获取用户互动总数统计
  1143. func GetUserInteractionTableCountBytime(uid int, startDate, endDate string) (item *GetUserInteractionTableCountResp, err error) {
  1144. o := orm.NewOrm()
  1145. sql := `SELECT
  1146. ( SELECT COUNT( 1 ) FROM cygx_article_history_record_all AS h INNER JOIN cygx_article as art ON art.article_id = h.article_id WHERE h.mobile = u.mobile AND h.is_del = 0 AND create_time BETWEEN '` + startDate + `'AND '` + endDate + `' OR ( h.email = u.email AND h.email <>'' AND h.is_del = 0 AND create_time BETWEEN '` + startDate + `'AND '` + endDate + `' ) ) AS history_num,
  1147. ( SELECT COUNT( 1 ) FROM cygx_article_collect AS h WHERE h.user_id = u.user_id AND create_time BETWEEN '` + startDate + `'AND '` + endDate + `' ) AS count_num,
  1148. ( SELECT COUNT( 1 ) FROM cygx_chart_collect AS h WHERE h.user_id = u.user_id AND create_time BETWEEN '` + startDate + `'AND '` + endDate + `' ) AS chart_num,
  1149. ( SELECT COUNT( 1 ) FROM cygx_industry_fllow AS h WHERE h.user_id = u.user_id AND h.type = 1 AND create_time BETWEEN '` + startDate + `'AND '` + endDate + `' ) AS industry_fllow_num,
  1150. ( SELECT COUNT( 1 ) FROM cygx_article_department_follow AS h WHERE h.user_id = u.user_id AND h.type = 1 AND create_time BETWEEN '` + startDate + `'AND '` + endDate + `' ) AS department_follow_num,
  1151. ( SELECT COUNT( 1 ) FROM cygx_search_key_word AS h WHERE h.user_id = u.user_id AND create_time BETWEEN '` + startDate + `'AND '` + endDate + `' ) AS key_word_num,
  1152. ( SELECT COUNT( DISTINCT a.activity_id ) as count FROM cygx_activity_signup AS h INNER JOIN cygx_activity as a ON a.activity_id = h.activity_id INNER JOIN cygx_activity_type as t ON t.activity_type_id = a.activity_type_id WHERE h.mobile = u.mobile
  1153. AND a.is_submit_meeting = 1 AND t.activity_type=1 AND h.do_fail_type = 0 AND a.activity_time BETWEEN '` + startDate + `'AND '` + endDate + `' ) AS on_line_num,
  1154. ( SELECT COUNT( DISTINCT a.activity_id ) as count FROM cygx_activity_signup AS h INNER JOIN cygx_activity as a ON a.activity_id = h.activity_id INNER JOIN cygx_activity_type as t ON t.activity_type_id = a.activity_type_id WHERE h.mobile = u.mobile
  1155. AND a.is_submit_meeting = 1 AND t.activity_type = 0 AND h.do_fail_type = 0 AND a.activity_time BETWEEN '` + startDate + `'AND '` + endDate + `') AS office_num
  1156. FROM
  1157. wx_user as u
  1158. WHERE
  1159. u.user_id = ?`
  1160. err = o.Raw(sql, uid).QueryRow(&item)
  1161. return
  1162. }
  1163. type ArticlePvCountResp struct {
  1164. ArticleId int `description:"文章ID"`
  1165. Pv int `description:"Pv"`
  1166. }
  1167. // 阅读记录
  1168. func GetArticlePvCount(mobile, email, dateTime string) (item []*ArticlePvCountResp, err error) {
  1169. o := orm.NewOrmUsingDB("hz_cygx")
  1170. sql := `SELECT
  1171. article_id,
  1172. COUNT(article_id) as pv
  1173. FROM
  1174. cygx_article_history_record_all as h
  1175. WHERE
  1176. mobile = ?
  1177. AND create_time >= ?
  1178. AND is_del = 0
  1179. OR ( email = ? AND email <>'' AND create_time >= ? AND is_del = 0 )
  1180. GROUP BY article_id `
  1181. _, err = o.Raw(sql, mobile, dateTime, email, dateTime).QueryRows(&item)
  1182. return
  1183. }
  1184. type ArticleIndustryNameResp struct {
  1185. ArticleId int `description:"文章ID"`
  1186. IndustryName string `description:"产业名称"`
  1187. SubjectName string `description:"标的名称"`
  1188. }
  1189. // 产业名称
  1190. func GetArticleGroupyIndustryName(articleIds string) (item []*ArticleIndustryNameResp, err error) {
  1191. o := orm.NewOrmUsingDB("hz_cygx")
  1192. sql := `SELECT
  1193. art.article_id,
  1194. (
  1195. SELECT
  1196. GROUP_CONCAT( DISTINCT s.subject_name SEPARATOR '/' )
  1197. FROM
  1198. cygx_industrial_subject AS s
  1199. WHERE
  1200. s.industrial_subject_id IN ( SELECT industrial_subject_id FROM cygx_industrial_article_group_subject AS sg WHERE sg.article_id = art.article_id )
  1201. ) AS subject_name,
  1202. (
  1203. SELECT
  1204. GROUP_CONCAT( DISTINCT man.industry_name SEPARATOR '/' )
  1205. FROM
  1206. cygx_industrial_management AS man
  1207. WHERE
  1208. man.industrial_management_id IN ( SELECT industrial_management_id FROM cygx_industrial_article_group_management AS man_g WHERE man_g.article_id = art.article_id )
  1209. ) AS industry_name
  1210. FROM
  1211. cygx_article_history_record_all AS r
  1212. INNER JOIN cygx_article AS art ON art.article_id = r.article_id
  1213. LEFT JOIN cygx_report_mapping AS re ON re.category_id = art.category_id_two
  1214. LEFT JOIN cygx_industrial_article_group_management AS man ON man.article_id = art.article_id
  1215. WHERE
  1216. art.article_id IN ( ` + articleIds + `) GROUP BY art.article_id `
  1217. _, err = o.Raw(sql).QueryRows(&item)
  1218. return
  1219. }
  1220. // 标的名称
  1221. func GetArticleGroupySubjectName(articleIds string) (item []*ArticleIndustryNameResp, err error) {
  1222. o := orm.NewOrmUsingDB("hz_cygx")
  1223. sql := `SELECT
  1224. article_id,
  1225. subject_name
  1226. FROM
  1227. cygx_industrial_article_group_subject AS mg
  1228. INNER JOIN cygx_industrial_subject AS m ON m.industrial_subject_id = mg.industrial_subject_id
  1229. WHERE
  1230. article_id IN ( ` + articleIds + `)`
  1231. _, err = o.Raw(sql).QueryRows(&item)
  1232. return
  1233. }
  1234. type UserLabel struct {
  1235. Label string `description:"标签 多个用 , 隔开"`
  1236. }
  1237. type ActivityLabelCountResp struct {
  1238. Label string `description:"标签"`
  1239. Pv int `description:"Pv"`
  1240. }
  1241. // 活动标签记录(我的日程)
  1242. func GetActivitySignCount(mobile, dateTime string) (item []*ActivityLabelCountResp, err error) {
  1243. o := orm.NewOrmUsingDB("hz_cygx")
  1244. sql := `SELECT
  1245. label ,
  1246. COUNT( label ) AS pv
  1247. FROM
  1248. cygx_activity
  1249. WHERE
  1250. activity_id IN ( SELECT activity_id FROM cygx_my_schedule WHERE mobile = ? )
  1251. AND label != ''
  1252. AND activity_time >= ?
  1253. GROUP BY
  1254. label`
  1255. _, err = o.Raw(sql, mobile, dateTime).QueryRows(&item)
  1256. return
  1257. }
  1258. // 活动标签记录(会议提醒)
  1259. func GetActivityMeetingReminder(mobile, dateTime string) (item []*ActivityLabelCountResp, err error) {
  1260. o := orm.NewOrmUsingDB("hz_cygx")
  1261. sql := `SELECT
  1262. label ,
  1263. COUNT( label ) AS pv
  1264. FROM
  1265. cygx_activity
  1266. WHERE
  1267. activity_id IN ( SELECT activity_id FROM cygx_activity_meeting_reminder WHERE mobile = ? )
  1268. AND label != ''
  1269. AND activity_time >= ?
  1270. GROUP BY
  1271. label`
  1272. _, err = o.Raw(sql, mobile, dateTime).QueryRows(&item)
  1273. return
  1274. }
  1275. func GetCygxArticleCollectId(uid int, dateTime string) (articleIds string, err error) {
  1276. sql := `SELECT
  1277. GROUP_CONCAT( DISTINCT article_id SEPARATOR ',' ) AS permission
  1278. FROM
  1279. cygx_article_collect
  1280. WHERE
  1281. user_id = ?
  1282. AND create_time >= ? `
  1283. o := orm.NewOrmUsingDB("hz_cygx")
  1284. err = o.Raw(sql, uid, dateTime).QueryRow(&articleIds)
  1285. return
  1286. }
  1287. // 用户互动量
  1288. type CygxInteractionNumResp struct {
  1289. DateTime string `description:"时间"`
  1290. InteractionNum int `description:"互动量"`
  1291. }
  1292. type CygxCygxInteractionNumRespListResp struct {
  1293. List []*CygxInteractionNumResp
  1294. }
  1295. // 用户互动详情
  1296. type UserInteractionrelevantListResp struct {
  1297. IndustryName string `description:"产业名称"`
  1298. IsFllow bool `description:"是否关注"`
  1299. List []*UserInteraction
  1300. }
  1301. type EsUserInteraction struct {
  1302. Id int `description:"主键ID"`
  1303. ArticleId int `description:"文章id"`
  1304. ArticleType int `description:"文章类型 1:查研观向, 2:策略平台"`
  1305. Title string `description:"标题"`
  1306. PublishDate string `description:"发布时间"`
  1307. CreateTime string `description:"创建时间"`
  1308. StopTime string `description:"阅读停留时间"`
  1309. RealName string `description:"姓名"`
  1310. CompanyName string `description:"公司名称"`
  1311. CompanyId int `description:"公司ID"`
  1312. SellerName string `description:"所属销售"`
  1313. SellerId int `description:"所属销售ID"`
  1314. Mobile string `description:"手机号"`
  1315. Email string `description:"邮箱"`
  1316. UserId int `description:"用户ID"`
  1317. UserArticleHistoryNum int `description:"用户阅读数量"`
  1318. CompanyArticleHistoryNum int `description:"机构阅读数量"`
  1319. }
  1320. func GetCompanyIdsCondition(ondition string) (companyIds string, err error) {
  1321. sql := ondition
  1322. o := orm.NewOrm()
  1323. err = o.Raw(sql).QueryRow(&companyIds)
  1324. return
  1325. }
  1326. type InteractiveList struct {
  1327. TotalMap map[int]int
  1328. EsList []*EsUserInteraction
  1329. ActivityList []*company.CompanyReportRecordGroup
  1330. CollectList []*company.CompanyReportRecordGroup
  1331. IndustryFllowList []*company.CompanyReportRecordGroup
  1332. DepartmentFollowList []*company.CompanyReportRecordGroup
  1333. KeyWordList []*company.CompanyReportRecordGroup
  1334. Chartist []*company.CompanyReportRecordGroup
  1335. }
  1336. func GetAllOverseasRaiEmail() (emails []string, err error) {
  1337. sql := `
  1338. SELECT
  1339. *
  1340. FROM
  1341. (
  1342. SELECT
  1343. wu.email
  1344. FROM
  1345. wx_user AS wu
  1346. INNER JOIN company AS c
  1347. WHERE
  1348. wu.company_id = c.company_id
  1349. AND wu.email <> ""
  1350. AND c.region_type = "海外"
  1351. ) AS a UNION
  1352. (
  1353. SELECT
  1354. wu.email
  1355. FROM
  1356. company_product AS cp
  1357. INNER JOIN wx_user AS wu
  1358. WHERE
  1359. cp.industry_id = 10
  1360. AND cp.product_id = 2
  1361. AND wu.email <> ""
  1362. AND cp.status IN ( "正式", "试用" )
  1363. )`
  1364. o := orm.NewOrm()
  1365. _, err = o.Raw(sql).QueryRows(&emails)
  1366. return
  1367. }