report.go 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. "strconv"
  6. //"github.com/rdlucklib/rdluck_tools/paging"
  7. )
  8. type IndustrialManagementList struct {
  9. Paging *paging.PagingItem
  10. List []*IndustrialManagement
  11. }
  12. type IndustrialManagement struct {
  13. IndustrialManagementId int `orm:"column(industrial_management_id);pk" description:"产业id"`
  14. IndustryName string `description:"产业名称"`
  15. RecommendedIndex int `description:"推荐指数"`
  16. CategoryId int `description:"文章分类ID"`
  17. LayoutTime string `description:"布局时间"`
  18. UpdateTime string `description:"更新时间"`
  19. MinReportTime string `description:"报告最早发布时间"`
  20. IsRed bool `description:"是否标记红点"`
  21. IsTop bool `description:"是否置顶"`
  22. IsHot bool `description:"是否是热门-近一个月内,产业下关联的报告阅读次数最多的"`
  23. IsFollow int `description:"是否关注"`
  24. IsNew bool `description:"是否为新-关联报告的发布时间,均在3个月以内的"`
  25. Analyst string `description:"分析师"`
  26. ArticleReadNum int `description:"文章阅读数量"`
  27. OneMonFollowNum int `description:"近一个月关注增量"`
  28. AnalystList []*IndustrialAnalyst `description:"分析师列表"`
  29. IndustrialSubjectList []*IndustrialSubject `description:"标的列表"`
  30. ChartPermissionId int `description:"行业ID"`
  31. PermissionName string `description:"行业名称"`
  32. IndustryVideo *MicroVideoSimpleInfo
  33. }
  34. type MicroVideoSimpleInfo struct {
  35. Id int `description:"视频ID"`
  36. Title string `description:"标题"`
  37. ResourceUrl string `description:"链接"`
  38. BackgroundImg string `description:"背景图"`
  39. PlaySeconds int `description:"音视频时长"`
  40. DetailImgUrl string `description:"产业详情页背景图"`
  41. }
  42. type IndustrialAnalyst struct {
  43. AnalystName string `description:"分析师名称"`
  44. IndustrialManagementId int `description:"产业id"`
  45. }
  46. type IndustrialSubject struct {
  47. IndustrialSubjectId int `orm:"column(industrial_subject_id);pk" description:"标的id"`
  48. IndustrialManagementId int `description:"产业id"`
  49. SubjectName string `description:"标的名称"`
  50. IndustryName string `description:"产业名称"`
  51. LayoutTime string `description:"产业布局时间"`
  52. }
  53. //获取产业报告数量
  54. func GetReportIndustrialCount(categoryId, industrialManagementId int) (count int, err error) {
  55. o := orm.NewOrm()
  56. sql := `SELECT COUNT(1) count
  57. FROM
  58. cygx_article AS a
  59. INNER JOIN cygx_industrial_article_group_management as man_g ON man_g.article_id = a.article_id
  60. WHERE
  61. a.publish_status = 1
  62. AND category_id IN (SELECT
  63. category_id
  64. FROM
  65. cygx_report_mapping
  66. WHERE
  67. chart_permission_id = any( SELECT chart_permission_id FROM cygx_report_mapping WHERE category_id = ` + strconv.Itoa(categoryId) + ` )
  68. AND match_type_name = any( SELECT match_type_name FROM cygx_report_mapping WHERE category_id = ` + strconv.Itoa(categoryId) + ` ) )
  69. AND a.is_class = 1
  70. AND man_g.industrial_management_id = ? `
  71. err = o.Raw(sql, industrialManagementId).QueryRow(&count)
  72. return
  73. }
  74. //获取产业报告列表
  75. func GetReportIndustrialList(pars []interface{}, categoryId, industrialManagementId, userId, startSize, pageSize int) (items []*ReportArticle, err error) {
  76. o := orm.NewOrm()
  77. sql := `SELECT *,( SELECT COUNT( 1 ) FROM cygx_article_history_record AS rec WHERE rec.user_id = ` + strconv.Itoa(userId) + ` AND rec.article_id = a.article_id ) AS readnum
  78. FROM
  79. cygx_article AS a
  80. INNER JOIN cygx_industrial_article_group_management as man_g ON man_g.article_id = a.article_id
  81. WHERE
  82. a.publish_status = 1
  83. AND category_id IN (SELECT
  84. category_id
  85. FROM
  86. cygx_report_mapping
  87. WHERE
  88. chart_permission_id = any( SELECT chart_permission_id FROM cygx_report_mapping WHERE category_id = ` + strconv.Itoa(categoryId) + ` )
  89. AND match_type_name = any( SELECT match_type_name FROM cygx_report_mapping WHERE category_id = ` + strconv.Itoa(categoryId) + ` ) )
  90. AND a.is_class = 1
  91. AND man_g.industrial_management_id = ?`
  92. sql += ` GROUP BY a.article_id ORDER BY publish_date DESC LIMIT ?,? `
  93. _, err = o.Raw(sql, pars, industrialManagementId, startSize, pageSize).QueryRows(&items)
  94. return
  95. }
  96. //产业下所关联的文章分类列表
  97. func IndustrialToArticleCategory(industrialManagementId, chartPermissionId int) (items []*IndustrialToArticleCategoryRep, err error) {
  98. o := orm.NewOrm()
  99. sql := `SELECT map.match_type_name,map.category_id
  100. FROM cygx_report_mapping AS map
  101. INNER JOIN cygx_article AS art ON art.category_id = map.category_id
  102. INNER JOIN cygx_industrial_article_group_management AS man_g ON man_g.article_id = art.article_id
  103. WHERE map.report_type = 2
  104. AND map.is_report = 1
  105. AND art.is_report = 1
  106. AND art.publish_status = 1
  107. AND man_g.industrial_management_id =?
  108. AND map.chart_permission_id = ?
  109. GROUP BY map.match_type_name`
  110. _, err = o.Raw(sql, industrialManagementId, chartPermissionId).QueryRows(&items)
  111. return
  112. }
  113. //产业下所关联的文章分类列表 2022-10-13
  114. func IndustrialToArticleCategoryNew(industrialManagementId int) (items []*IndustrialToArticleCategoryRep, err error) {
  115. o := orm.NewOrm()
  116. sql := `SELECT map.match_type_name,map.category_id
  117. FROM cygx_report_mapping AS map
  118. INNER JOIN cygx_article AS art ON art.category_id = map.category_id
  119. INNER JOIN cygx_industrial_article_group_management AS man_g ON man_g.article_id = art.article_id
  120. WHERE map.report_type = 2
  121. AND map.is_report = 1
  122. AND art.is_report = 1
  123. AND art.publish_status = 1
  124. AND man_g.industrial_management_id =?
  125. GROUP BY map.match_type_name`
  126. _, err = o.Raw(sql, industrialManagementId).QueryRows(&items)
  127. return
  128. }
  129. //判断用户是否阅读该产业下,某一分类的文章
  130. func IndustrialUserRecordArticleCount(userId, industrialManagementId, categoryId int) (count int, err error) {
  131. o := orm.NewOrm()
  132. sql := `SELECT
  133. COUNT(1) count
  134. FROM
  135. cygx_article_history_record
  136. WHERE
  137. article_id = ( SELECT article_id FROM cygx_article WHERE article_id IN (SELECT article_id FROM cygx_industrial_article_group_management WHERE industrial_management_id = ? ) AND category_id = ? ORDER BY publish_date DESC LIMIT 0, 1 )
  138. AND user_id = ? `
  139. err = o.Raw(sql, industrialManagementId, categoryId, userId).QueryRow(&count)
  140. return
  141. }
  142. //获取最新文章
  143. func GetNewIndustrialUserRecordArticle(industrialManagementId, categoryId int) (item *ArticleDetail, err error) {
  144. o := orm.NewOrm()
  145. sql := ` SELECT * FROM cygx_article WHERE article_id IN (SELECT article_id FROM cygx_industrial_article_group_management WHERE industrial_management_id = ? ) AND category_id = ? ORDER BY publish_date DESC LIMIT 0, 1`
  146. err = o.Raw(sql, industrialManagementId, categoryId).QueryRow(&item)
  147. return
  148. }
  149. //获取最新文章
  150. func GetNewArticleByCategoryId(categoryId int) (item *ArticleDetail, err error) {
  151. o := orm.NewOrm()
  152. sql := ` SELECT * FROM cygx_article WHERE category_id = ? ORDER BY publish_date DESC LIMIT 0, 1`
  153. err = o.Raw(sql, categoryId).QueryRow(&item)
  154. return
  155. }
  156. func GetIndustrialManagementIdsBykeyWord(condition string) (industrialManagementIds string, err error) {
  157. sql := `SELECT GROUP_CONCAT(DISTINCT industrial_management_id SEPARATOR ',') AS industrial_management_ids FROM cygx_industrial_management WHERE` + condition
  158. o := orm.NewOrm()
  159. err = o.Raw(sql).QueryRow(&industrialManagementIds)
  160. return
  161. }
  162. type ReportArticleWhichIndustrial struct {
  163. ArticleId int `description:"文章id"`
  164. Title string `description:"标题"`
  165. PublishDate string `description:"发布时间"`
  166. IndustryName string `description:"产业名称"`
  167. SubjectName string `description:"标的名称"`
  168. NickName string `description:"作者昵称"`
  169. IsRed bool `description:"是否标记红点"`
  170. Readnum int `description:"阅读数量"`
  171. IsResearch bool `description:"是否属于研选"`
  172. Pv int `description:"PV"`
  173. ImgUrlPc string `description:"图片链接"`
  174. }
  175. type ReportArticleWhichIndustrialRepList struct {
  176. HaveResearch bool `description:"是否有研选权限"`
  177. Paging *paging.PagingItem `description:"分页数据"`
  178. NickName string `description:"作者昵称"`
  179. IndustryName string `description:"产业名称"`
  180. List []*ReportArticleWhichIndustrial
  181. }
  182. //列表
  183. func IndustrialToArticleWhichDepartment(condition string, pars []interface{}, uid, startSize, pageSize int) (items []*ReportArticleWhichIndustrial, err error) {
  184. o := orm.NewOrm()
  185. sql := `SELECT
  186. art.* ,m.industry_name,d.nick_name,
  187. (SELECT count(1) FROM cygx_article_history_record_newpv as h WHERE h.article_id = art.article_id ) as pv,
  188. ( SELECT COUNT( 1 ) FROM cygx_article_history_record_newpv AS rec WHERE rec.user_id = ` + strconv.Itoa(uid) + ` AND rec.article_id = art.article_id ) AS readnum
  189. FROM
  190. cygx_article AS art
  191. INNER JOIN cygx_industrial_article_group_management as mg ON mg.article_id = art.article_id
  192. INNER JOIN cygx_industrial_management as m ON m.industrial_management_id = mg.industrial_management_id
  193. INNER JOIN cygx_article_department as d ON d.department_id = art.department_id
  194. WHERE 1 = 1
  195. AND art.publish_status = 1`
  196. if condition != "" {
  197. sql += condition
  198. }
  199. sql += ` LIMIT ?,?`
  200. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  201. return
  202. }
  203. func GetWhichDepartmentCount(condition string) (count int, err error) {
  204. o := orm.NewOrm()
  205. sql := `SELECT COUNT(1) count
  206. FROM
  207. cygx_article AS art
  208. INNER JOIN cygx_industrial_article_group_management as mg ON mg.article_id = art.article_id
  209. INNER JOIN cygx_industrial_management as m ON m.industrial_management_id = mg.industrial_management_id
  210. INNER JOIN cygx_article_department as d ON d.department_id = art.department_id
  211. WHERE 1 = 1
  212. AND art.publish_status = 1`
  213. if condition != "" {
  214. sql += condition
  215. }
  216. err = o.Raw(sql).QueryRow(&count)
  217. return
  218. }
  219. type IsShow struct {
  220. IsShow bool `description:"绝密内参按钮是否展示"`
  221. IsShowFreeButton bool `description:"免费送月卡按钮是否展示"`
  222. IsShowResearch bool `description:"研选是否展示限免"`
  223. IsShowChart bool `description:"图表是否展示限免"`
  224. IsShowList bool `description:"榜单是否展示"`
  225. LinkWxExplain string `description:"关注微信公众号链接说明地址"`
  226. YanXuan_Explain bool `description:"研选说明"`
  227. ActivitySpecialExplain string `description:"专项调研活动"`
  228. SearchTxtList SearchTxt `description:"搜索栏回显内容说明"`
  229. }
  230. type SearchTxt struct {
  231. SummarySearch string `description:"素材库搜索说明"`
  232. ReportSearch string `description:"报告搜索说明"`
  233. YanXuanSearch string `description:"研选搜索说明"`
  234. ActivitySearch string `description:"活动搜索说明"`
  235. TabSearch string `description:"素材库搜索说明"`
  236. }
  237. //获取用户是否有查看权限
  238. func GetUserIsAdminCount(mobile string) (count int, err error) {
  239. o := orm.NewOrm()
  240. sql := `SELECT COUNT(1) count FROM admin
  241. WHERE
  242. mobile = ?
  243. AND (group_id IN (11, 13, 14, 15, 16, 17) OR department_id = 3 ) AND enabled = 1`
  244. err = o.Raw(sql, mobile).QueryRow(&count)
  245. return
  246. }
  247. type ReportDetailRoadshow struct {
  248. ArticleId int `description:"报告Id"`
  249. Title string `description:"标题"`
  250. Department string `orm:"column(seller_and_mobile)"description:"作者"`
  251. PublishDate string `description:"发布时间"`
  252. VideoUrl string `description:"链接"`
  253. VideoPlaySeconds string `description:"时长"`
  254. VideoName string `description:"音频名称"`
  255. Abstract string `description:"摘要"`
  256. Body string `description:"内容"`
  257. CategoryName string `description:"行业名称"`
  258. ReportLink string `orm:"column(link_article_id)"description:"报告链接"`
  259. }
  260. type RoadshowDetailResp struct {
  261. Detail *ReportDetailRoadshow
  262. HasPermission int `description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,已提交过申请,4:无该行业权限,未提交过申请,5:潜在客户,未提交过申请,6:潜在客户,已提交过申请"`
  263. HasFree int `description:"1:已付费(至少包含一个品类的权限),2:未付费(没有任何品类权限)"`
  264. }
  265. func GetReportRoadshowDetailById(articleId int) (item *ReportDetailRoadshow, err error) {
  266. o := orm.NewOrm()
  267. sql := `SELECT * FROM cygx_article WHERE article_id = ? AND publish_status = 1 `
  268. err = o.Raw(sql, articleId).QueryRow(&item)
  269. return
  270. }
  271. type CygxIndustryAndArticleList struct {
  272. ArticleId int `orm:"column(article_id);pk"description:"报告id"`
  273. Title string `description:"标题"`
  274. PublishDate string `description:"发布时间"`
  275. IndustryName string `description:"产业名称"`
  276. SubjectName string `description:"标的名称"`
  277. }
  278. type CygxIndustrySearchList struct {
  279. ArtList []*CygxIndustryAndArticleList `description:"文章列表"`
  280. IndList []*IndustrialManagement `description:"产业列表"`
  281. }
  282. type CygxIndustrySearchListPc struct {
  283. DepartmentList []*CygxArticleDepartmentRepPc
  284. IndList []*IndustrialManagement `description:"产业列表"`
  285. }
  286. //列表
  287. func GetCygxIndustryAndArticleList(keyWord string) (items []*CygxIndustryAndArticleList, err error) {
  288. o := orm.NewOrm()
  289. sql := `SELECT
  290. art.title,
  291. art.article_id,
  292. art.publish_date
  293. FROM
  294. cygx_article AS art
  295. LEFT JOIN cygx_industrial_article_group_subject AS sg ON sg.article_id = art.article_id
  296. LEFT JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = mg.article_id
  297. LEFT JOIN cygx_industrial_management AS m ON m.industrial_management_id = mg.industrial_management_id
  298. WHERE
  299. category_name LIKE '%研选%'
  300. AND art.article_id IN ( SELECT article_id FROM cygx_industrial_article_group_subject AS sg WHERE sg.industrial_subject_id IN ( SELECT industrial_subject_id FROM cygx_industrial_subject WHERE subject_name LIKE '%` + keyWord + `%' ) GROUP BY sg.article_id )
  301. OR ( art.article_id IN ( SELECT article_id FROM cygx_industrial_article_group_management AS mg WHERE mg.industrial_management_id IN ( SELECT industrial_management_id FROM cygx_industrial_management WHERE industry_name LIKE '%` + keyWord + `%' ) GROUP BY mg.article_id ) AND category_name LIKE '%研选%' )
  302. GROUP BY
  303. art.article_id`
  304. _, err = o.Raw(sql).QueryRows(&items)
  305. return
  306. }
  307. func GetArticleIdsBySubId(subjectId string) (articleIds string, err error) {
  308. o := orm.NewOrm()
  309. sql := `SELECT GROUP_CONCAT( DISTINCT a.article_id SEPARATOR ',' ) AS articleIds
  310. FROM cygx_article AS a
  311. WHERE subject_ids LIKE '%` + subjectId + `%'`
  312. err = o.Raw(sql).QueryRow(&articleIds)
  313. return
  314. } //end
  315. //用户收藏榜start
  316. type ArticleCollectionResp struct {
  317. ArticleId int `description:"文章id"`
  318. Title string `description:"标题"`
  319. PublishDate string `description:"发布时间"`
  320. IndustrialManagementId int `description:"产业Id"`
  321. IndustryName string `description:"产业名称"`
  322. DepartmentId int `description:"作者Id"`
  323. NickName string `description:"作者昵称"`
  324. MyCollectNum int `description:"本人是否收藏"`
  325. IsCollect bool `description:"本人是否收藏"`
  326. Pv int `description:"PV"`
  327. CollectNum int `description:"收藏人数"`
  328. Source int `description:"来源 1:弘则资源包(报告)、2:研选主题(报告)"`
  329. }
  330. type ArticleCollectionLIstResp struct {
  331. List []*ArticleCollectionResp
  332. }
  333. //列表
  334. func GetArticleCollectionList(condition string, userId int) (items []*ArticleCollectionResp, err error) {
  335. o := orm.NewOrm()
  336. sql := `SELECT
  337. a.article_id,
  338. a.title,
  339. date_format( a.publish_date, '%Y-%m-%d' ) AS publish_date,
  340. m.industry_name,
  341. m.industrial_management_id,
  342. d.nick_name,
  343. d.department_id,
  344. ( SELECT count( 1 ) FROM cygx_article_history_record_newpv AS h WHERE h.article_id = a.article_id ) AS pv,
  345. ( SELECT count( 1 ) FROM cygx_article_collect AS ac INNER JOIN wx_user as u ON u.user_id = ac.user_id WHERE ac.article_id = a.article_id ) AS collect_num,
  346. ( SELECT count( 1 ) FROM cygx_article_collect AS ac INNER JOIN wx_user as u ON u.user_id = ac.user_id WHERE ac.article_id = a.article_id AND DATE_SUB( CURDATE(), INTERVAL 30 DAY ) <= date( ac.create_time ) ) AS collect_num_order,
  347. ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id AND user_id = ? ) AS my_collect_num
  348. FROM
  349. cygx_article AS a
  350. INNER JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = a.article_id
  351. INNER JOIN cygx_industrial_management AS m ON m.industrial_management_id = mg.industrial_management_id
  352. INNER JOIN cygx_article_department AS d ON d.department_id = a.department_id
  353. WHERE
  354. 1 = 1 AND a.publish_status = 1 `
  355. if condition != "" {
  356. sql += condition
  357. }
  358. _, err = o.Raw(sql, userId).QueryRows(&items)
  359. return
  360. } //end
  361. //用户收藏榜start
  362. type IndustrialManagementHotResp struct {
  363. IndustrialManagementId int `orm:"column(industrial_management_id);pk" description:"产业id"`
  364. IndustryName string `description:"产业名称"`
  365. IsFollw bool `description:"是否关注"`
  366. FllowNum int `description:"关注数量"`
  367. IsNew bool `description:"是否新标签"`
  368. IsHot bool `description:"是否新标签"`
  369. PublishDate string `description:"发布时间"`
  370. ArticleReadNum int `description:"文章阅读数量"`
  371. Source int `description:"来源 1:弘则资源包(报告)、2:研选主题(报告)"`
  372. IndustrialSubjectList []*IndustrialSubject `description:"标的列表"`
  373. IndustryVideo *MicroVideoSimpleInfo `description:"产业视频"`
  374. }
  375. type IndustrialManagementHotListResp struct {
  376. Paging *paging.PagingItem `description:"分页数据"`
  377. List []*IndustrialManagementHotResp
  378. }
  379. //产业列表
  380. func GetThemeHeatList(userId int, condition string, startSize, pageSize int) (items []*IndustrialManagementHotResp, err error) {
  381. o := orm.NewOrm()
  382. sql := `SELECT
  383. m.industry_name,
  384. m.industrial_management_id,
  385. m.article_read_num,
  386. MAX( a.publish_date ) AS publish_date,
  387. ( SELECT count( 1 ) FROM cygx_industry_fllow AS f WHERE f.industrial_management_id = m.industrial_management_id AND user_id =? AND f.type = 1 ) AS fllow_num,
  388. m.article_read_num + ( SELECT count( 1 ) FROM cygx_activity_meet_detail_log AS la WHERE la.activity_id IN (SELECT activity_id FROM cygx_industrial_activity_group_management WHERE industrial_management_id = m.industrial_management_id ) AND DATE_SUB( CURDATE(), INTERVAL 30 DAY ) <= date( la.activity_time ) ) AS sum_num
  389. FROM
  390. cygx_industrial_management AS m
  391. LEFT JOIN cygx_industrial_article_group_management AS mg ON mg.industrial_management_id = m.industrial_management_id
  392. LEFT JOIN cygx_article AS a ON a.article_id = mg.article_id
  393. LEFT JOIN cygx_industrial_activity_group_management as ag ON ag.industrial_management_id = mg.industrial_management_id
  394. WHERE
  395. 1 = 1
  396. AND a.article_type_id > 0
  397. AND publish_status = 1
  398. GROUP BY m.industrial_management_id ` + condition + ` LIMIT ?,?`
  399. _, err = o.Raw(sql, userId, startSize, pageSize).QueryRows(&items)
  400. return
  401. }
  402. //获取数量
  403. func GetThemeHeatListCount(condition string) (count int, err error) {
  404. o := orm.NewOrm()
  405. sql := `SELECT COUNT( DISTINCT m.industrial_management_id ) FROM
  406. cygx_industrial_management AS m
  407. LEFT JOIN cygx_industrial_article_group_management AS mg ON mg.industrial_management_id = m.industrial_management_id
  408. LEFT JOIN cygx_article AS a ON a.article_id = mg.article_id
  409. LEFT JOIN cygx_industrial_activity_group_management as ag ON ag.industrial_management_id = mg.industrial_management_id
  410. WHERE
  411. 1 = 1
  412. AND a.article_type_id > 0 AND a.publish_status = 1 ` + condition
  413. err = o.Raw(sql).QueryRow(&count)
  414. return
  415. }
  416. //标的列表
  417. func GetThemeHeatSubjectList(condition string) (items []*IndustrialSubject, err error) {
  418. o := orm.NewOrm()
  419. sql := `SELECT
  420. m.subject_name,
  421. m.industrial_management_id,
  422. m.industrial_subject_id
  423. FROM
  424. cygx_article AS a
  425. INNER JOIN cygx_industrial_article_group_subject AS mg ON mg.article_id = a.article_id
  426. INNER JOIN cygx_industrial_subject AS m ON m.industrial_subject_id = mg.industrial_subject_id
  427. WHERE
  428. 1 = 1`
  429. if condition != "" {
  430. sql += condition
  431. }
  432. sql += ` AND publish_status = 1
  433. GROUP BY
  434. m.industrial_subject_id
  435. ORDER BY
  436. publish_date DESC`
  437. _, err = o.Raw(sql).QueryRows(&items)
  438. return
  439. } //end
  440. //Kol sratr
  441. type DepartmentResp struct {
  442. DepartmentId int `description:"作者Id"`
  443. NickName string `description:"作者昵称"`
  444. ImgUrl string `description:"图片链接"`
  445. IsFollw bool `description:"是否关注"`
  446. FllowNum int `description:"关注数量"`
  447. List []*IndustrialDepartmentListResp
  448. }
  449. type DepartmentListResp struct {
  450. List []*DepartmentResp
  451. }
  452. type IndustrialDepartmentListResp struct {
  453. IndustrialManagementId int `description:"产业Id"`
  454. IndustryName string `description:"产业名称"`
  455. DepartmentId int `description:"作者Id"`
  456. }
  457. //作者列表
  458. func GetDepartmentList(userId int) (items []*DepartmentResp, err error) {
  459. o := orm.NewOrm()
  460. sql := `SELECT
  461. d.nick_name,
  462. d.department_id,
  463. d.img_url,
  464. ( SELECT count( 1 ) FROM cygx_article_department_follow AS f WHERE f.department_id = d.department_id AND user_id =? AND f.type= 1 ) AS fllow_num,
  465. ( SELECT count( 1 ) FROM cygx_article_department_follow AS f INNER JOIN wx_user AS u ON u.user_id = f.user_id WHERE f.department_id = d.department_id AND f.type= 1 ) +( SELECT count( 1 ) FROM cygx_article_collect AS ac INNER JOIN wx_user AS u ON u.user_id = ac.user_id WHERE ac.article_id IN (SELECT article_id FROM cygx_article WHERE department_id = d.department_id ) AND DATE_SUB( CURDATE(), INTERVAL 30 DAY ) <= date( ac.create_time ) ) AS sum_num
  466. FROM
  467. cygx_article_department AS d
  468. INNER JOIN cygx_article AS a ON d.department_id = a.department_id
  469. WHERE
  470. 1 = 1
  471. AND a.article_type_id > 0
  472. AND publish_status = 1
  473. GROUP BY
  474. d.department_id
  475. ORDER BY
  476. sum_num DESC
  477. LIMIT 15`
  478. _, err = o.Raw(sql, userId).QueryRows(&items)
  479. return
  480. }
  481. //作者文章所关联的产业列表
  482. func GetIndustrialDepartmentList() (items []*IndustrialDepartmentListResp, err error) {
  483. o := orm.NewOrm()
  484. sql := `SELECT
  485. m.industrial_management_id,
  486. m.industry_name,
  487. d.department_id
  488. FROM
  489. cygx_article_department AS d
  490. INNER JOIN cygx_article AS a ON d.department_id = a.department_id
  491. INNER JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = a.article_id
  492. INNER JOIN cygx_industrial_management AS m ON m.industrial_management_id = mg.industrial_management_id
  493. WHERE
  494. 1 = 1
  495. AND a.article_type_id > 0
  496. AND publish_status = 1
  497. GROUP BY
  498. a.article_id
  499. ORDER BY
  500. a.publish_date DESC`
  501. _, err = o.Raw(sql).QueryRows(&items)
  502. return
  503. }
  504. //主题详情start
  505. type GetThemeDetailListResp struct {
  506. ArticleId int `description:"文章id"`
  507. Title string `description:"标题"`
  508. PublishDate string `description:"发布时间"`
  509. SubjectName string `description:"标的名称"`
  510. IndustrialSubjectId int `description:"标的id"`
  511. DepartmentId int `description:"作者Id"`
  512. NickName string `description:"作者昵称"`
  513. Pv int `description:"PV"`
  514. CollectNum int `description:"收藏人数"`
  515. IndustrialManagementId int `description:"产业Id"`
  516. IndustryName string `description:"产业名称"`
  517. FllowNum int `description:"关注数量"`
  518. MyCollectNum int `description:"本人是否收藏"`
  519. IsCollect bool `description:"本人是否收藏"`
  520. }
  521. type GetThemeAericleListResp struct {
  522. ArticleId int `description:"文章id"`
  523. Title string `description:"标题"`
  524. PublishDate string `description:"发布时间"`
  525. SubjectName string `description:"标的名称"`
  526. IndustrialSubjectId int `description:"标的ID"`
  527. DepartmentId int `description:"作者Id"`
  528. NickName string `description:"作者昵称"`
  529. Pv int `description:"PV"`
  530. CollectNum int `description:"收藏人数"`
  531. FllowNum int `description:"关注数量"`
  532. MyCollectNum int `description:"本人是否收藏"`
  533. IsCollect bool `description:"本人是否收藏"`
  534. }
  535. type GetThemeAericleListBuSubjectResp struct {
  536. SubjectName string `description:"标的名称"`
  537. List []*GetThemeAericleListResp
  538. }
  539. //主题详情start
  540. type GetThemeDetailResp struct {
  541. IndustrialManagementId int `description:"产业Id"`
  542. IndustryName string `description:"产业名称"`
  543. IsFollw bool `description:"是否关注"`
  544. ListSubject []*IndustrialSubject `description:"标的列表"`
  545. List []*GetThemeAericleListResp
  546. }
  547. //列表
  548. func GetThemeDetail(userId, industrialManagementId int, condition string) (items []*GetThemeDetailListResp, err error) {
  549. o := orm.NewOrm()
  550. sql := `SELECT
  551. a.article_id,
  552. a.title,
  553. date_format( a.publish_date, '%Y-%m-%d' ) AS publish_date,
  554. m.industry_name,
  555. m.industrial_management_id,
  556. d.nick_name,
  557. d.department_id,
  558. s.industrial_subject_id,
  559. s.subject_name,
  560. ( SELECT count( 1 ) FROM cygx_article_history_record_newpv AS h WHERE h.article_id = a.article_id ) AS pv,
  561. ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id ) AS collect_num,
  562. ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id and user_id = ? ) AS my_collect_num,
  563. ( SELECT count( 1 ) FROM cygx_industry_fllow AS ac WHERE user_id = ? AND ac.industrial_management_id = m.industrial_management_id AND ac.type= 1) AS fllow_num
  564. FROM
  565. cygx_article AS a
  566. INNER JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = a.article_id
  567. LEFT JOIN cygx_industrial_management AS m ON m.industrial_management_id = mg.industrial_management_id
  568. LEFT JOIN cygx_article_department AS d ON d.department_id = a.department_id
  569. LEFT JOIN cygx_industrial_article_group_subject AS sg ON sg.article_id = a.article_id
  570. LEFT JOIN cygx_industrial_subject AS s ON s.industrial_subject_id = sg.industrial_subject_id
  571. WHERE
  572. 1 = 1
  573. AND m.industrial_management_id = ?
  574. AND publish_status = 1 ` + condition + `
  575. ORDER BY
  576. publish_date DESC`
  577. _, err = o.Raw(sql, userId, userId, industrialManagementId).QueryRows(&items)
  578. return
  579. } //end
  580. //用户收藏榜start
  581. type DepartmentDetailResp struct {
  582. DepartmentId int `description:"作者Id"`
  583. NickName string `description:"作者昵称"`
  584. ImgUrl string `description:"图片链接"`
  585. FllowNum int `description:"多少人关注"`
  586. ArticleNum int `description:"文章数量"`
  587. CollectNum int `description:"收藏人数"`
  588. IsFllow bool `description:"是否关注"`
  589. List []*ArticleCollectionResp
  590. ListIndustrial []*IndustrialManagementNewResp
  591. }
  592. type DepartmentDetail struct {
  593. DepartmentId int `description:"作者Id"`
  594. NickName string `description:"作者昵称"`
  595. ImgUrl string `description:"图片链接"`
  596. FllowNum int `description:"多少人关注"`
  597. ArticleNum int `description:"文章数量"`
  598. CollectNum int `description:"收藏人数"`
  599. IsFllow bool `description:"是否关注"`
  600. MyFllowNum int `description:"本人是否关注"`
  601. }
  602. //列表
  603. func GetDepartmentDetail(userId, departmentId int) (item DepartmentDetail, err error) {
  604. o := orm.NewOrm()
  605. sql := `SELECT
  606. d.department_id,
  607. d.nick_name,
  608. d.img_url,
  609. ( SELECT count( 1 ) FROM cygx_article_department_follow AS af WHERE af.user_id = ? AND af.department_id = d.department_id AND af.type= 1 ) AS my_fllow_num,
  610. ( SELECT count( 1 ) FROM cygx_article_department_follow AS f INNER JOIN wx_user as u ON u.user_id = f.user_id WHERE f.department_id = d.department_id AND f.type= 1 ) AS fllow_num,
  611. ( SELECT count( 1 ) FROM cygx_article AS a WHERE a.department_id = d.department_id ) AS article_num,
  612. ( SELECT count( 1 ) FROM cygx_article_collect AS c INNER JOIN wx_user as u ON u.user_id = c.user_id WHERE c.article_id IN (SELECT article_id FROM cygx_article AS a WHERE a.department_id = d.department_id )) AS collect_num
  613. FROM
  614. cygx_article_department AS d
  615. WHERE
  616. d.department_id = ?`
  617. err = o.Raw(sql, userId, departmentId).QueryRow(&item)
  618. return
  619. } //end
  620. //报告搜索start
  621. type ReoprtSearchResp struct {
  622. ListYx []*ArticleCollectionResp `description:"研选报告"`
  623. ListHz []*ArticleCollectionResp `description:"弘则报告"`
  624. }
  625. //列表
  626. func GetReoprtSearchList(condition string, userId int) (items []*ArticleCollectionResp, err error) {
  627. o := orm.NewOrm()
  628. sql := `SELECT
  629. a.article_id,
  630. a.title,
  631. date_format( a.publish_date, '%Y-%m-%d' ) AS publish_date,
  632. m.industry_name,
  633. m.industrial_management_id,
  634. ( SELECT count( 1 ) FROM cygx_article_history_record_newpv AS h WHERE h.article_id = a.article_id ) AS pv,
  635. ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id ) AS collect_num,
  636. ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id AND user_id = ?) AS my_collect_num
  637. FROM
  638. cygx_article AS a
  639. LEFT JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = a.article_id
  640. LEFT JOIN cygx_industrial_management AS m ON m.industrial_management_id = mg.industrial_management_id
  641. WHERE
  642. 1 = 1 `
  643. if condition != "" {
  644. sql += condition
  645. }
  646. _, err = o.Raw(sql, userId).QueryRows(&items)
  647. return
  648. } //end
  649. //搜索资源包 start
  650. type SearchResourceResp struct {
  651. ListHz []*IndustrialManagementHotResp `description:"弘则"`
  652. ListYx []*IndustrialManagementHotResp `description:"研选"`
  653. }
  654. //搜索资源包 start
  655. type SearchReportAndResourceResp struct {
  656. ListHzResource []*IndustrialManagementHotResp `description:"弘则资源包"`
  657. ListYxResource []*IndustrialManagementHotResp `description:"研选资源包"`
  658. ListYxReport []*ArticleCollectionResp `description:"研选报告"`
  659. ListHzReport []*ArticleCollectionResp `description:"弘则报告"`
  660. }
  661. //产业列表
  662. func GetSearchResourceList(condition string, startSize, pageSize int) (items []*IndustrialManagementHotResp, err error) {
  663. o := orm.NewOrm()
  664. sql := `SELECT
  665. m.industry_name,
  666. m.industrial_management_id,
  667. MAX( a.publish_date ) as publish_date_order,
  668. date_format( MAX( a.publish_date ), '%Y-%m-%d' ) AS publish_date
  669. FROM
  670. cygx_industrial_management AS m
  671. INNER JOIN cygx_industrial_article_group_management AS mg ON mg.industrial_management_id = m.industrial_management_id
  672. INNER JOIN cygx_article AS a ON a.article_id = mg.article_id AND a.article_type != 'lyjh'
  673. WHERE
  674. 1 = 1
  675. AND publish_status = 1 ` + condition + ` GROUP BY m.industrial_management_id ORDER BY publish_date_order DESC `
  676. if startSize > 0 || pageSize > 0 {
  677. sql += ` LIMIT ` + strconv.Itoa(startSize) + "," + strconv.Itoa(pageSize)
  678. }
  679. _, err = o.Raw(sql).QueryRows(&items)
  680. return
  681. }
  682. //切换列表
  683. type ReportBillboardTableResp struct {
  684. Name string `description:"名称"`
  685. Source int `description:"类型"`
  686. List []*ChartPermission
  687. }
  688. //切换列表
  689. type ReportBillboardTableListResp struct {
  690. List []*ReportBillboardTableResp
  691. }
  692. //报告榜单start
  693. type ArticleReportBillboardResp struct {
  694. ArticleId int `description:"文章id"`
  695. Title string `description:"标题"`
  696. PublishDate string `description:"发布时间"`
  697. PermissionName string `description:"行业名称"`
  698. DepartmentId int `description:"作者Id"`
  699. NickName string `description:"作者昵称"`
  700. IsCollect bool `description:"本人是否收藏"`
  701. Pv int `description:"PV"`
  702. CollectNum int `description:"收藏人数"`
  703. Source int `description:"来源 1:弘则资源包(报告)、2:研选主题(报告)"`
  704. List []*IndustrialManagementIdInt
  705. }
  706. type ArticleReportBillboardLIstResp struct {
  707. List []*ArticleReportBillboardResp
  708. }
  709. type ArticleReportBillboardLIstPageResp struct {
  710. List []*ArticleReportBillboardResp
  711. Paging *paging.PagingItem
  712. }
  713. //报告收藏榜单列表
  714. func GetReportCollectionBillboardList(limit int, pars []interface{}, condition string) (items []*ArticleReportBillboardResp, err error) {
  715. o := orm.NewOrm()
  716. sql := `SELECT
  717. ac.id,
  718. a.article_id,
  719. a.title,
  720. date_format(a.publish_date, '%Y-%m-%d') AS publish_date,
  721. m.chart_permission_name AS permission_name,
  722. COUNT(ac.id) AS collection_num
  723. FROM
  724. cygx_article AS a
  725. INNER JOIN cygx_report_mapping AS m ON m.category_id = a.category_id
  726. INNER JOIN cygx_article_collect AS ac ON ac.article_id = a.article_id
  727. WHERE
  728. 1 = 1
  729. AND a.publish_status = 1 `
  730. if condition != "" {
  731. sql += condition
  732. }
  733. sql += ` GROUP BY a.article_id ORDER BY collection_num DESC, ac.id DESC, a.publish_date DESC`
  734. sql += ` LIMIT ?`
  735. _, err = o.Raw(sql, pars, limit).QueryRows(&items)
  736. return
  737. }
  738. //报告阅读榜单列表
  739. func GetReportPvBillboardList(pars []interface{}, condition string) (items []*ArticleReportBillboardResp, err error) {
  740. o := orm.NewOrm()
  741. sql := `SELECT
  742. a.article_id,
  743. a.title,
  744. date_format( a.publish_date, '%Y-%m-%d' ) AS publish_date
  745. FROM
  746. cygx_article AS a
  747. INNER JOIN cygx_report_mapping AS m ON m.category_id = a.category_id
  748. WHERE
  749. 1 = 1
  750. AND a.publish_status = 1 `
  751. if condition != "" {
  752. sql += condition
  753. }
  754. _, err = o.Raw(sql, pars).QueryRows(&items)
  755. return
  756. }
  757. //获取产业报告+晨会点评数量
  758. func GetTimeLineReportIndustrialCount(industrialManagementId int) (count int, err error) {
  759. o := orm.NewOrm()
  760. sql := `SELECT SUM(count) AS count FROM (
  761. SELECT
  762. COUNT( 1 ) count
  763. FROM
  764. cygx_article AS a
  765. INNER JOIN cygx_industrial_article_group_management AS man_g ON man_g.article_id = a.article_id
  766. WHERE
  767. a.publish_status = 1
  768. AND a.is_class = 1
  769. AND man_g.industrial_management_id = ?
  770. UNION ALL
  771. SELECT
  772. COUNT( 1 ) count
  773. FROM
  774. cygx_morning_meeting_review_chapter AS mmc
  775. INNER JOIN cygx_morning_meeting_reviews AS mm
  776. WHERE
  777. mm.id = mmc.meeting_id
  778. AND mm.status = 1
  779. AND mmc.industry_id = ? ) AS t `
  780. err = o.Raw(sql, industrialManagementId, industrialManagementId).QueryRow(&count)
  781. return
  782. }
  783. type TimeLineReportItem struct {
  784. Id int `description:"文章或晨报点评id"`
  785. Title string `description:"标题"`
  786. PublishTime string `description:"发布时间"`
  787. Content string `description:"内容"`
  788. VideoUrl string `description:"视频链接"`
  789. IsHaveVideo bool `description:"是否包含视频"`
  790. }
  791. //获取产业报告+晨会点评列表
  792. func GetTimeLineReportIndustrialList(industrialManagementId, startSize, pageSize int) (items []*TimeLineReportItem, err error) {
  793. o := orm.NewOrm()
  794. sql := `SELECT
  795. *
  796. FROM
  797. (
  798. SELECT
  799. a.article_id AS id,
  800. a.title,
  801. a.publish_date AS publish_time,
  802. a.video_url,
  803. '' AS content
  804. FROM
  805. cygx_article AS a
  806. INNER JOIN cygx_industrial_article_group_management AS man_g ON man_g.article_id = a.article_id
  807. WHERE
  808. a.publish_status = 1
  809. AND a.is_class = 1
  810. AND man_g.industrial_management_id = ? UNION ALL
  811. SELECT
  812. mmc.id,
  813. '' AS title,
  814. mm.publish_time AS publish_time,
  815. '' AS video_url,
  816. mmc.content
  817. FROM
  818. cygx_morning_meeting_review_chapter AS mmc
  819. INNER JOIN cygx_morning_meeting_reviews AS mm
  820. WHERE
  821. mm.id = mmc.meeting_id
  822. AND mm.STATUS = 1
  823. AND mmc.industry_id = ?
  824. ) AS t
  825. `
  826. sql += ` GROUP BY
  827. t.id
  828. ORDER BY
  829. t.publish_time DESC LIMIT ?,? `
  830. _, err = o.Raw(sql, industrialManagementId, industrialManagementId, startSize, pageSize).QueryRows(&items)
  831. return
  832. }