cygx_user.go 58 KB

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