report.go 34 KB

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