report.go 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. "strconv"
  6. "time"
  7. //"github.com/rdlucklib/rdluck_tools/paging"
  8. )
  9. type IndustrialManagementList struct {
  10. Paging *paging.PagingItem
  11. List []*IndustrialManagement
  12. IsShowOpen bool `description:"是否展示展开字段"`
  13. IsInterested bool `description:"是否属于感兴趣部分"`
  14. }
  15. type IndustrialManagement struct {
  16. IndustrialManagementId int `orm:"column(industrial_management_id);pk" description:"产业id"`
  17. IndustryName string `description:"产业名称"`
  18. RecommendedIndex int `description:"推荐指数"`
  19. CategoryId int `description:"文章分类ID"`
  20. LayoutTime string `description:"布局时间"`
  21. UpdateTime string `description:"更新时间"`
  22. PublishDate string `description:"更新时间"`
  23. MinReportTime string `description:"报告最早发布时间"`
  24. IsRed bool `description:"是否标记红点"`
  25. IsTop bool `description:"是否置顶"`
  26. IsHot bool `description:"是否是热门-近一个月内,产业下关联的报告阅读次数最多的"`
  27. IsFollow int `description:"是否关注"`
  28. FollowType int `description:"1,重点关注,3不感兴趣,0默认接受推送"`
  29. IsNew bool `description:"是否为新-关联报告的发布时间,均在3个月以内的"`
  30. Analyst string `description:"分析师"`
  31. ArticleReadNum int `description:"文章阅读数量"`
  32. OneMonFollowNum int `description:"近一个月关注增量"`
  33. AnalystList []*IndustrialAnalyst `description:"分析师列表"`
  34. IndustrialSubjectList []*IndustrialSubject `description:"标的列表"`
  35. ChartPermissionId int `description:"行业ID"`
  36. PermissionName string `description:"行业名称"`
  37. TimeLineData string `description:"时间线所关联最新三篇文章的json数据"`
  38. ListTimeLine []TimeLineReportResp `description:"时间线所关联最新三篇文章列表"`
  39. IndustryVideo *MicroVideoSimpleInfo
  40. AuthInfo *UserPermissionAuthInfo
  41. ArticleId int `description:"文章id"`
  42. Source int `description:"来源 1:弘则资源包(报告)、2:研选主题(报告)"`
  43. }
  44. type TimeLineReportResp struct {
  45. Title string `description:"标题"`
  46. PublishDate string `description:"发布时间"`
  47. }
  48. type MicroVideoSimpleInfo struct {
  49. Id int `description:"视频ID"`
  50. Title string `description:"标题"`
  51. ResourceUrl string `description:"链接"`
  52. BackgroundImg string `description:"背景图"`
  53. PlaySeconds int `description:"音视频时长"`
  54. DetailImgUrl string `description:"产业详情页背景图"`
  55. ChartPermissionId int `description:"行业ID"`
  56. ChartPermissionName string `description:"行业名称"`
  57. }
  58. type IndustrialAnalyst struct {
  59. AnalystName string `description:"分析师名称"`
  60. IndustrialManagementId int `description:"产业id"`
  61. }
  62. type IndustrialSubject struct {
  63. IndustrialSubjectId int `orm:"column(industrial_subject_id);pk" description:"标的id"`
  64. IndustrialManagementId int `description:"产业id"`
  65. SubjectName string `description:"标的名称"`
  66. IndustryName string `description:"产业名称"`
  67. LayoutTime string `description:"产业布局时间"`
  68. }
  69. // 获取产业报告数量
  70. func GetReportIndustrialCount(categoryId, industrialManagementId int) (count int, err error) {
  71. o := orm.NewOrm()
  72. sql := `SELECT COUNT(1) count
  73. FROM
  74. cygx_article AS a
  75. INNER JOIN cygx_industrial_article_group_management as man_g ON man_g.article_id = a.article_id
  76. WHERE
  77. a.publish_status = 1
  78. AND category_id IN (SELECT
  79. category_id
  80. FROM
  81. cygx_report_mapping
  82. WHERE
  83. chart_permission_id = any( SELECT chart_permission_id FROM cygx_report_mapping WHERE category_id = ` + strconv.Itoa(categoryId) + ` )
  84. AND match_type_name = any( SELECT match_type_name FROM cygx_report_mapping WHERE category_id = ` + strconv.Itoa(categoryId) + ` ) )
  85. AND a.is_class = 1
  86. AND man_g.industrial_management_id = ? `
  87. err = o.Raw(sql, industrialManagementId).QueryRow(&count)
  88. return
  89. }
  90. // 获取产业报告列表
  91. func GetReportIndustrialList(pars []interface{}, categoryId, industrialManagementId, userId, startSize, pageSize int) (items []*ReportArticle, err error) {
  92. o := orm.NewOrm()
  93. 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
  94. FROM
  95. cygx_article AS a
  96. INNER JOIN cygx_industrial_article_group_management as man_g ON man_g.article_id = a.article_id
  97. WHERE
  98. a.publish_status = 1
  99. AND category_id IN (SELECT
  100. category_id
  101. FROM
  102. cygx_report_mapping
  103. WHERE
  104. chart_permission_id = any( SELECT chart_permission_id FROM cygx_report_mapping WHERE category_id = ` + strconv.Itoa(categoryId) + ` )
  105. AND match_type_name = any( SELECT match_type_name FROM cygx_report_mapping WHERE category_id = ` + strconv.Itoa(categoryId) + ` ) )
  106. AND a.is_class = 1
  107. AND man_g.industrial_management_id = ?`
  108. sql += ` GROUP BY a.article_id ORDER BY publish_date DESC LIMIT ?,? `
  109. _, err = o.Raw(sql, pars, industrialManagementId, startSize, pageSize).QueryRows(&items)
  110. return
  111. }
  112. // 获取产业报告列表
  113. func GetReportAndproductInteriorIndustrialList(pars []interface{}, categoryId, industrialManagementId, userId, startSize, pageSize int) (items []*ReportArticle, total int, err error) {
  114. o := orm.NewOrm()
  115. sql := `SELECT
  116. art.article_id,
  117. art.title,
  118. art.publish_date,
  119. ( SELECT COUNT( 1 ) FROM cygx_article_history_record AS rec WHERE rec.user_id = ` + strconv.Itoa(userId) + ` AND rec.article_id = art.article_id ) AS readnum ,
  120. 1 AS resource
  121. FROM
  122. cygx_article AS art
  123. INNER JOIN cygx_industrial_article_group_management AS man_g ON man_g.article_id = art.article_id
  124. WHERE
  125. art.publish_status = 1
  126. AND art.article_id IN ( SELECT article_id FROM cygx_report_mapping_category_group WHERE id_cygx = ` + strconv.Itoa(categoryId) + ` )
  127. AND art.is_class = 1
  128. AND man_g.industrial_management_id =` + strconv.Itoa(industrialManagementId) + `
  129. GROUP BY
  130. art.article_id UNION ALL
  131. SELECT
  132. art.product_interior_id AS article_id,
  133. art.title,
  134. art.publish_time AS publish_date,
  135. ( SELECT COUNT( 1 ) FROM cygx_product_interior_history AS rec WHERE rec.user_id = ` + strconv.Itoa(userId) + ` AND rec.product_interior_id = art.product_interior_id ) AS readnum ,
  136. 2 AS resource
  137. FROM
  138. cygx_product_interior AS art
  139. INNER JOIN cygx_product_interior_industrial_group_management AS man_g ON man_g.product_interior_id = art.product_interior_id
  140. WHERE
  141. art.STATUS = 1
  142. AND art.visible_range = 1
  143. AND art.match_type_id = ` + strconv.Itoa(categoryId) + `
  144. AND man_g.industrial_management_id = ` + strconv.Itoa(industrialManagementId) + `
  145. GROUP BY
  146. art.product_interior_id `
  147. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  148. err = o.Raw(totalSql, pars).QueryRow(&total)
  149. sql += ` ORDER BY publish_date DESC LIMIT ?,? `
  150. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  151. return
  152. }
  153. // 获取行业报告列表
  154. func GetReportAndproductIndustrylList(categoryId, startSize, pageSize int) (items []*ReportArticle, total int, err error) {
  155. o := orm.NewOrm()
  156. sql := `SELECT
  157. art.article_id,
  158. art.report_id,
  159. art.title,
  160. art.abstract,
  161. art.publish_date,
  162. 1 AS resource
  163. FROM
  164. cygx_article AS art
  165. WHERE
  166. art.publish_status = 1
  167. AND art.article_id IN ( SELECT article_id FROM cygx_report_mapping_category_group WHERE id_cygx = ` + strconv.Itoa(categoryId) + ` ) UNION ALL
  168. SELECT
  169. art.product_interior_id AS article_id,
  170. 0 AS report_id,
  171. art.title,
  172. "" as abstract,
  173. art.publish_time AS publish_date,
  174. 2 AS resource
  175. FROM
  176. cygx_product_interior AS art
  177. WHERE
  178. art.STATUS = 1
  179. AND art.visible_range = 1
  180. AND art.match_type_id = ` + strconv.Itoa(categoryId)
  181. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  182. err = o.Raw(totalSql).QueryRow(&total)
  183. sql += ` ORDER BY publish_date DESC LIMIT ?,? `
  184. _, err = o.Raw(sql, startSize, pageSize).QueryRows(&items)
  185. return
  186. }
  187. // 产业下所关联的文章分类列表
  188. func IndustrialToArticleCategory(industrialManagementId, chartPermissionId int) (items []*IndustrialToArticleCategoryRep, err error) {
  189. o := orm.NewOrm()
  190. sql := `SELECT map.match_type_name,map.category_id
  191. FROM cygx_report_mapping AS map
  192. INNER JOIN cygx_article AS art ON art.category_id = map.category_id
  193. INNER JOIN cygx_industrial_article_group_management AS man_g ON man_g.article_id = art.article_id
  194. WHERE map.report_type = 2
  195. AND map.is_report = 1
  196. AND art.is_report = 1
  197. AND art.publish_status = 1
  198. AND man_g.industrial_management_id =?
  199. AND map.chart_permission_id = ?
  200. GROUP BY map.match_type_name`
  201. _, err = o.Raw(sql, industrialManagementId, chartPermissionId).QueryRows(&items)
  202. return
  203. }
  204. // 产业下所关联的文章分类列表 2022-10-13
  205. func IndustrialToArticleCategoryNew(industrialManagementId int) (items []*IndustrialToArticleCategoryRep, err error) {
  206. o := orm.NewOrm()
  207. sql := `SELECT map.match_type_name,map.category_id
  208. FROM cygx_report_mapping AS map
  209. INNER JOIN cygx_article AS art ON art.category_id = map.category_id
  210. INNER JOIN cygx_industrial_article_group_management AS man_g ON man_g.article_id = art.article_id
  211. WHERE map.report_type = 2
  212. AND map.is_report = 1
  213. AND art.is_report = 1
  214. AND art.publish_status = 1
  215. AND man_g.industrial_management_id =?
  216. GROUP BY map.match_type_name`
  217. _, err = o.Raw(sql, industrialManagementId).QueryRows(&items)
  218. return
  219. }
  220. // 产业下所关联的文章、产品内测分类列表 2023-04-14
  221. func IndustrialToArticleAndProductInteriorCategoryNew(industrialManagementId int) (items []*IndustrialToArticleCategoryRep, err error) {
  222. o := orm.NewOrm()
  223. sql := `SELECT
  224. map.match_type_name,
  225. map.sort,
  226. map.id,
  227. map.id AS category_id
  228. FROM
  229. cygx_report_mapping_cygx AS map
  230. INNER JOIN cygx_report_mapping_group AS g ON g.id_cygx = map.id
  231. INNER JOIN cygx_report_mapping_celue AS cl ON cl.category_id = g.category_id_celue
  232. INNER JOIN cygx_article AS art ON art.category_id = cl.category_id
  233. INNER JOIN cygx_industrial_article_group_management AS man_g ON man_g.article_id = art.article_id
  234. WHERE
  235. 1 = 1
  236. AND map.report_type = 2
  237. AND map.is_report = 1
  238. AND art.is_report = 1
  239. AND art.publish_status = 1
  240. AND man_g.industrial_management_id = ?
  241. GROUP BY
  242. map.match_type_name UNION ALL
  243. SELECT
  244. map.match_type_name,
  245. map.sort,
  246. map.id,
  247. map.id AS category_id
  248. FROM
  249. cygx_report_mapping_cygx AS map
  250. INNER JOIN cygx_industrial_management AS im ON im.chart_permission_id = map.chart_permission_id
  251. INNER JOIN cygx_product_interior AS art ON art.match_type_id = map.id
  252. INNER JOIN cygx_product_interior_industrial_group_management AS man_g ON man_g.product_interior_id = art.product_interior_id
  253. WHERE
  254. 1 = 1
  255. AND art.STATUS = 1
  256. AND art.visible_range = 1
  257. AND man_g.industrial_management_id = ?
  258. GROUP BY
  259. map.match_type_name ORDER BY id ASC , sort DESC `
  260. _, err = o.Raw(sql, industrialManagementId, industrialManagementId).QueryRows(&items)
  261. return
  262. }
  263. // 判断用户是否阅读该产业下,某一分类的文章
  264. func IndustrialUserRecordArticleCount(userId, industrialManagementId, categoryId int) (count int, err error) {
  265. o := orm.NewOrm()
  266. sql := `SELECT
  267. COUNT(1) count
  268. FROM
  269. cygx_article_history_record
  270. WHERE
  271. 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 IN (SELECT
  272. category_id
  273. FROM
  274. cygx_report_mapping
  275. WHERE
  276. chart_permission_id = any( SELECT chart_permission_id FROM cygx_report_mapping WHERE category_id = ? )
  277. AND match_type_name = any( SELECT match_type_name FROM cygx_report_mapping WHERE category_id = ? ) ) ORDER BY publish_date DESC LIMIT 0, 1 )
  278. AND user_id = ? `
  279. err = o.Raw(sql, industrialManagementId, categoryId, categoryId, userId).QueryRow(&count)
  280. return
  281. }
  282. // 获取最新文章
  283. func GetNewIndustrialUserRecordArticle(industrialManagementId, categoryId int) (item *ArticleDetail, err error) {
  284. o := orm.NewOrm()
  285. //sql := ` SELECT * FROM cygx_article WHERE article_id IN (SELECT article_id FROM cygx_industrial_article_group_management WHERE industrial_management_id = ? ) AND match_type_name = any( SELECT match_type_name FROM cygx_report_mapping WHERE category_id = ? ) ORDER BY publish_date DESC LIMIT 0, 1`
  286. 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 IN (SELECT
  287. category_id
  288. FROM
  289. cygx_report_mapping
  290. WHERE
  291. chart_permission_id = any( SELECT chart_permission_id FROM cygx_report_mapping WHERE category_id = ? )
  292. AND match_type_name = any( SELECT match_type_name FROM cygx_report_mapping WHERE category_id = ? ) ) ORDER BY publish_date DESC LIMIT 0, 1`
  293. err = o.Raw(sql, industrialManagementId, categoryId, categoryId).QueryRow(&item)
  294. return
  295. }
  296. // 获取最新文章
  297. func GetNewArticleByCategoryId(categoryId int) (item *ArticleDetail, err error) {
  298. o := orm.NewOrm()
  299. sql := ` SELECT * FROM cygx_article WHERE category_id IN ( SELECT category_id_celue FROM cygx_report_mapping_group WHERE id_cygx = ? ) ORDER BY publish_date DESC LIMIT 0, 1 `
  300. err = o.Raw(sql, categoryId).QueryRow(&item)
  301. return
  302. }
  303. func GetIndustrialManagementIdsBykeyWord(condition string) (industrialManagementIds string, err error) {
  304. sql := `SELECT GROUP_CONCAT(DISTINCT industrial_management_id SEPARATOR ',') AS industrial_management_ids FROM cygx_industrial_management WHERE` + condition
  305. o := orm.NewOrm()
  306. err = o.Raw(sql).QueryRow(&industrialManagementIds)
  307. return
  308. }
  309. type ReportArticleWhichIndustrial struct {
  310. ArticleId int `description:"文章id"`
  311. Title string `description:"标题"`
  312. PublishDate string `description:"发布时间"`
  313. IndustryName string `description:"产业名称"`
  314. SubjectName string `description:"标的名称"`
  315. NickName string `description:"作者昵称"`
  316. IsRed bool `description:"是否标记红点"`
  317. Readnum int `description:"阅读数量"`
  318. IsResearch bool `description:"是否属于研选"`
  319. Pv int `description:"PV"`
  320. ImgUrlPc string `description:"图片链接"`
  321. }
  322. type ReportArticleWhichIndustrialRepList struct {
  323. HaveResearch bool `description:"是否有研选权限"`
  324. Paging *paging.PagingItem `description:"分页数据"`
  325. NickName string `description:"作者昵称"`
  326. IndustryName string `description:"产业名称"`
  327. List []*ReportArticleWhichIndustrial
  328. }
  329. // 列表
  330. func IndustrialToArticleWhichDepartment(condition string, pars []interface{}, uid, startSize, pageSize int) (items []*ReportArticleWhichIndustrial, err error) {
  331. o := orm.NewOrm()
  332. sql := `SELECT
  333. art.* ,m.industry_name,d.nick_name,
  334. (SELECT count(1) FROM cygx_article_history_record_newpv as h WHERE h.article_id = art.article_id ) as pv,
  335. ( 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
  336. FROM
  337. cygx_article AS art
  338. INNER JOIN cygx_industrial_article_group_management as mg ON mg.article_id = art.article_id
  339. INNER JOIN cygx_industrial_management as m ON m.industrial_management_id = mg.industrial_management_id
  340. INNER JOIN cygx_article_department as d ON d.department_id = art.department_id
  341. WHERE 1 = 1
  342. AND art.publish_status = 1`
  343. if condition != "" {
  344. sql += condition
  345. }
  346. sql += ` LIMIT ?,?`
  347. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  348. return
  349. }
  350. func GetWhichDepartmentCount(condition string) (count int, err error) {
  351. o := orm.NewOrm()
  352. sql := `SELECT COUNT(1) count
  353. FROM
  354. cygx_article AS art
  355. INNER JOIN cygx_industrial_article_group_management as mg ON mg.article_id = art.article_id
  356. INNER JOIN cygx_industrial_management as m ON m.industrial_management_id = mg.industrial_management_id
  357. INNER JOIN cygx_article_department as d ON d.department_id = art.department_id
  358. WHERE 1 = 1
  359. AND art.publish_status = 1`
  360. if condition != "" {
  361. sql += condition
  362. }
  363. err = o.Raw(sql).QueryRow(&count)
  364. return
  365. }
  366. type IsShow struct {
  367. IsShow bool `description:"绝密内参按钮是否展示"`
  368. IsShowFreeButton bool `description:"免费送月卡按钮是否展示"`
  369. IsShowResearch bool `description:"研选是否展示限免"`
  370. IsShowChart bool `description:"图表是否展示限免"`
  371. IsShowList bool `description:"榜单是否展示"`
  372. LinkWxExplain string `description:"关注微信公众号链接说明地址"`
  373. YanXuan_Explain bool `description:"研选说明"`
  374. ActivitySpecialExplain string `description:"专项调研活动"`
  375. SearchTxtList SearchTxt `description:"搜索栏回显内容说明"`
  376. IsBelongRai bool `description:"是否属于权益内部人员"`
  377. IsShowResearchPoints bool `description:"是否展示研选扣点搜索"`
  378. IsShowQuestionnaire bool `description:"是否展示研选问卷调查"`
  379. IsShowAboutVideo bool `description:"是否展示关于我们的视频"`
  380. IsShowMobileAndEmailButton bool `description:"是否展示手机号跟邮箱按钮"`
  381. }
  382. type SearchTxt struct {
  383. SummarySearch string `description:"素材库搜索说明"`
  384. ReportSearch string `description:"报告搜索说明"`
  385. YanXuanSearch string `description:"研选搜索说明"`
  386. ActivitySearch string `description:"活动搜索说明"`
  387. TabSearch string `description:"素材库搜索说明"`
  388. }
  389. // 获取用户是否有查看权限
  390. func GetUserIsAdminCount(mobile string) (count int, err error) {
  391. o := orm.NewOrm()
  392. sql := `SELECT COUNT(1) count FROM admin
  393. WHERE
  394. mobile = ?
  395. AND (group_id IN (11, 13, 14, 15, 16, 17) OR department_id = 3 ) AND enabled = 1`
  396. err = o.Raw(sql, mobile).QueryRow(&count)
  397. return
  398. }
  399. type ReportDetailRoadshow struct {
  400. ArticleId int `description:"报告Id"`
  401. Title string `description:"标题"`
  402. Department string `orm:"column(seller_and_mobile)"description:"作者"`
  403. PublishDate string `description:"发布时间"`
  404. VideoUrl string `description:"链接"`
  405. VideoPlaySeconds string `description:"时长"`
  406. VideoName string `description:"音频名称"`
  407. Abstract string `description:"摘要"`
  408. Body string `description:"内容"`
  409. CategoryName string `description:"行业名称"`
  410. ReportLink string `orm:"column(link_article_id)"description:"报告链接"`
  411. IsCollect bool `description:"是否收藏:true,已收藏,false:未收藏"`
  412. IsRoadShow bool `description:"是否是路演精华"`
  413. VisibleRange int `description:"设置可见范围1全部,0内部"`
  414. CategoryId int `description:"文章分类ID"`
  415. }
  416. type RoadshowDetailResp struct {
  417. Detail *ReportDetailRoadshow
  418. HasPermission int `description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,已提交过申请,4:无该行业权限,未提交过申请,5:潜在客户,未提交过申请,6:潜在客户,已提交过申请"`
  419. HasFree int `description:"1:已付费(至少包含一个品类的权限),2:未付费(没有任何品类权限)"`
  420. IsShow bool `description:"是否展示"`
  421. }
  422. func GetReportRoadshowDetailById(articleId int) (item *ReportDetailRoadshow, err error) {
  423. o := orm.NewOrm()
  424. sql := `SELECT * FROM cygx_article WHERE article_id = ? AND publish_status = 1 `
  425. err = o.Raw(sql, articleId).QueryRow(&item)
  426. return
  427. }
  428. type CygxIndustryAndArticleList struct {
  429. ArticleId int `orm:"column(article_id);pk"description:"报告id"`
  430. Title string `description:"标题"`
  431. PublishDate string `description:"发布时间"`
  432. IndustryName string `description:"产业名称"`
  433. SubjectName string `description:"标的名称"`
  434. }
  435. type CygxIndustrySearchList struct {
  436. ArtList []*CygxIndustryAndArticleList `description:"文章列表"`
  437. IndList []*IndustrialManagement `description:"产业列表"`
  438. }
  439. type CygxIndustrySearchListPc struct {
  440. DepartmentList []*CygxArticleDepartmentRepPc
  441. IndList []*IndustrialManagement `description:"产业列表"`
  442. }
  443. // 列表
  444. func GetCygxIndustryAndArticleList(keyWord string) (items []*CygxIndustryAndArticleList, err error) {
  445. o := orm.NewOrm()
  446. sql := `SELECT
  447. art.title,
  448. art.article_id,
  449. art.publish_date
  450. FROM
  451. cygx_article AS art
  452. LEFT JOIN cygx_industrial_article_group_subject AS sg ON sg.article_id = art.article_id
  453. LEFT JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = mg.article_id
  454. LEFT JOIN cygx_industrial_management AS m ON m.industrial_management_id = mg.industrial_management_id
  455. WHERE
  456. category_name LIKE '%研选%'
  457. 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 )
  458. 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 '%研选%' )
  459. GROUP BY
  460. art.article_id`
  461. _, err = o.Raw(sql).QueryRows(&items)
  462. return
  463. }
  464. func GetArticleIdsBySubId(subjectId string) (articleIds string, err error) {
  465. o := orm.NewOrm()
  466. sql := `SELECT GROUP_CONCAT( DISTINCT a.article_id SEPARATOR ',' ) AS articleIds
  467. FROM cygx_article AS a
  468. WHERE subject_ids LIKE '%` + subjectId + `%'`
  469. err = o.Raw(sql).QueryRow(&articleIds)
  470. return
  471. } //end
  472. // 用户收藏榜start
  473. type ArticleCollectionResp struct {
  474. ArticleId int `description:"文章id"`
  475. Title string `description:"标题"`
  476. PublishDate string `description:"发布日期"`
  477. PublishTime time.Time `description:"发布时间"`
  478. IndustrialManagementId int `description:"产业Id"`
  479. IndustryName string `description:"产业名称"`
  480. DepartmentId int `description:"作者Id"`
  481. NickName string `description:"作者昵称"`
  482. MyCollectNum int `description:"本人是否收藏"`
  483. IsCollect bool `description:"本人是否收藏"`
  484. Pv int `description:"PV"`
  485. CollectNum int `description:"收藏人数"`
  486. Source int `description:"来源 1:弘则资源包(报告)、2:研选主题(报告)"`
  487. ArticleTypeId int `description:"文章类型ID"`
  488. List []*IndustrialManagementResp `description:"产业列表"`
  489. IsSpecial int `description:"是否为研选专栏"`
  490. SpecialTags string `description:"研选专栏标签"`
  491. UserId int `description:"作者id"`
  492. SpecialType int `description:"专栏类型 1:笔记,2:观点"`
  493. IndustryTags string `description:"研选专栏行业标签"`
  494. CompanyTags string `description:"研选专栏公司标签"`
  495. ArticleTypeName string `description:"文章类型名称"`
  496. TopTime int `description:"置顶时间"`
  497. ReportId int `description:"FICC研报ID"`
  498. Resource int `description:"来源类型,1:文章、2:产品内测、3:FICC研报"`
  499. ResourceObj string `description:"articleficc:FICC研报、articlevmp:上海策略平台报告、articleyx:研选报告、articlespecial:研选专栏"`
  500. }
  501. type IndustrialManagementResp struct {
  502. IndustrialManagementId int `description:"产业Id"`
  503. IndustryName string `description:"产业名称"`
  504. ChartPermissionId int `description:"权限id"`
  505. }
  506. type ArticleCollectionLIstResp struct {
  507. List []*ArticleCollectionResp
  508. }
  509. // 研选报告收藏榜单列表
  510. func GetReportCollectionBillboardListYx(limit int, pars []interface{}, condition string) (items []*ArticleCollectionResp, err error) {
  511. o := orm.NewOrm()
  512. sql := `SELECT
  513. ac.id,
  514. a.category_id,
  515. a.article_id,
  516. a.title,
  517. a.body,
  518. a.annotation,
  519. a.abstract,
  520. a.publish_date,
  521. a.article_type_id,
  522. d.nick_name,
  523. d.department_id,
  524. ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id ) AS collect_num,
  525. ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id AND DATE_SUB( CURDATE(), INTERVAL 30 DAY ) <= date( ac.create_time ) ) AS collection_num
  526. FROM
  527. cygx_article AS a
  528. INNER JOIN cygx_article_collect AS ac ON ac.article_id = a.article_id
  529. INNER JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = a.article_id
  530. INNER JOIN cygx_industrial_management AS m ON m.industrial_management_id = mg.industrial_management_id
  531. INNER JOIN cygx_article_department AS d ON d.department_id = a.department_id
  532. WHERE
  533. 1 = 1
  534. AND a.publish_status = 1 `
  535. if condition != "" {
  536. sql += condition
  537. }
  538. sql += ` GROUP BY a.article_id ORDER BY collection_num DESC, a.publish_date DESC`
  539. sql += ` LIMIT ?`
  540. _, err = o.Raw(sql, pars, limit).QueryRows(&items)
  541. return
  542. }
  543. // 列表
  544. func GetArticleCollectionList(condition string, userId int) (items []*ArticleCollectionResp, err error) {
  545. o := orm.NewOrm()
  546. sql := `SELECT
  547. a.article_id,
  548. a.title,
  549. date_format( a.publish_date, '%Y-%m-%d' ) AS publish_date,
  550. m.industry_name,
  551. m.industrial_management_id,
  552. d.nick_name,
  553. d.department_id,
  554. ( SELECT count( 1 ) FROM cygx_article_history_record_newpv AS h WHERE h.article_id = a.article_id ) AS pv,
  555. ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id ) AS collect_num,
  556. ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id AND DATE_SUB( CURDATE(), INTERVAL 30 DAY ) <= date( ac.create_time ) ) AS collect_num_order,
  557. ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id AND user_id = ? ) AS my_collect_num
  558. FROM
  559. cygx_article AS a
  560. LEFT JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = a.article_id
  561. LEFT JOIN cygx_industrial_management AS m ON m.industrial_management_id = mg.industrial_management_id
  562. LEFT JOIN cygx_article_department AS d ON d.department_id = a.department_id
  563. WHERE
  564. 1 = 1 AND a.publish_status = 1 `
  565. if condition != "" {
  566. sql += condition
  567. }
  568. _, err = o.Raw(sql, userId).QueryRows(&items)
  569. return
  570. } //end
  571. // 资源包研选跟研选专栏的搜索
  572. //func GetArticleAndYxSpecialList(condition, conditionSpecial string, userId int) (items []*ArticleCollectionResp, err error) {
  573. // o := orm.NewOrm()
  574. // sql := `SELECT
  575. // a.article_id,
  576. // a.title,
  577. // date_format( a.publish_date, '%Y-%m-%d' ) AS publish_date,
  578. // d.nick_name,
  579. // d.department_id,
  580. // a.article_type_id,
  581. // 0 AS is_special,
  582. // "" AS special_tags,
  583. // "" AS company_tags,
  584. // "" AS industry_tags,
  585. // ( SELECT count( 1 ) FROM cygx_article_history_record_newpv AS h WHERE h.article_id = a.article_id ) AS pv,
  586. // ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id ) AS collect_num,
  587. // ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id AND user_id = ? ) AS my_collect_num,
  588. // '' AS special_type,
  589. // '' AS user_id,
  590. // '' AS create_time
  591. // FROM
  592. // cygx_article AS a
  593. // INNER JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = a.article_id
  594. // INNER JOIN cygx_industrial_management AS m ON m.industrial_management_id = mg.industrial_management_id
  595. // INNER JOIN cygx_article_department AS d ON d.department_id = a.department_id
  596. // WHERE
  597. // 1 = 1
  598. // AND a.publish_status = 1 ` + condition + ` GROUP BY article_id
  599. // UNION ALL
  600. // SELECT
  601. // a.id AS article_id,
  602. // a.title AS title,
  603. // date_format( a.publish_time, '%Y-%m-%d' ) AS publish_date,
  604. // "" AS nick_name,
  605. // 0 AS department_id,
  606. // - 1 AS article_type_id,
  607. // 1 AS is_special,
  608. // a.tags AS special_tags,
  609. // a.company_tags,
  610. // a.industry_tags,
  611. // ( SELECT count( 1 ) FROM cygx_yanxuan_special_record AS h WHERE h.yanxuan_special_id = a.id ) AS pv,
  612. // ( SELECT count( 1 ) FROM cygx_yanxuan_special_collect AS ac WHERE ac.yanxuan_special_id = a.id ) AS collect_num,
  613. // ( SELECT count( 1 ) FROM cygx_yanxuan_special_collect AS ac WHERE ac.yanxuan_special_id = a.id AND user_id = ? ) AS my_collect_num,
  614. // a.type AS special_type,
  615. // a.user_id AS user_id,
  616. // a.create_time AS create_time
  617. // FROM
  618. // cygx_yanxuan_special AS a
  619. // JOIN cygx_yanxuan_special_author AS b ON a.user_id = b.user_id
  620. // WHERE
  621. // 1 = 1
  622. // AND a.STATUS = 3 ` + conditionSpecial + ` ORDER BY publish_date DESC LIMIT 30`
  623. //
  624. // _, err = o.Raw(sql, userId, userId).QueryRows(&items)
  625. // return
  626. //} //end
  627. // 资源包研选跟研选专栏的搜索
  628. func GetArticleAndYxSpecialList(condition, conditionSpecial string, userId int) (items []*ArticleCollectionResp, err error) {
  629. o := orm.NewOrm()
  630. sql := `SELECT
  631. a.article_id,
  632. a.title,
  633. date_format( a.publish_date, '%Y-%m-%d' ) AS publish_date,
  634. d.nick_name,
  635. d.department_id,
  636. a.article_type_id,
  637. 0 AS is_special,
  638. 0 AS pv,
  639. 0 AS collect_num,
  640. "" AS special_tags,
  641. "" AS company_tags,
  642. "" AS industry_tags,
  643. '' AS special_type,
  644. '' AS user_id,
  645. '' AS create_time
  646. FROM
  647. cygx_article AS a
  648. LEFT JOIN cygx_article_department AS d ON d.department_id = a.department_id
  649. WHERE
  650. 1 = 1
  651. AND a.publish_status = 1 ` + condition + ` GROUP BY article_id
  652. UNION ALL
  653. SELECT
  654. a.id AS article_id,
  655. a.title AS title,
  656. date_format( a.publish_time, '%Y-%m-%d' ) AS publish_date,
  657. "" AS nick_name,
  658. 0 AS department_id,
  659. - 1 AS article_type_id,
  660. 1 AS is_special,
  661. a.pv,
  662. a.article_collect_num as collect_num,
  663. a.tags AS special_tags,
  664. a.company_tags,
  665. a.industry_tags,
  666. a.type AS special_type,
  667. a.user_id AS user_id,
  668. a.create_time AS create_time
  669. FROM
  670. cygx_yanxuan_special AS a
  671. JOIN cygx_yanxuan_special_author AS b ON a.user_id = b.user_id
  672. WHERE
  673. 1 = 1
  674. AND a.STATUS = 3 ` + conditionSpecial + ` ORDER BY publish_date DESC LIMIT 30`
  675. _, err = o.Raw(sql).QueryRows(&items)
  676. return
  677. } //end
  678. type ArticleResearchListResp struct {
  679. Paging *paging.PagingItem
  680. List []*ArticleResearchResp
  681. }
  682. type ArticleResearchResp struct {
  683. ArticleId int `description:"文章id"`
  684. Title string `description:"标题"`
  685. PublishDate string `description:"发布时间"`
  686. DepartmentId int `description:"作者Id"`
  687. NickName string `description:"作者昵称"`
  688. IsCollect bool `description:"本人是否收藏"`
  689. Pv int `description:"PV"`
  690. CollectNum int `description:"收藏人数"`
  691. Source int `description:"来源 1:弘则资源包(报告)、2:研选主题(报告)"`
  692. ArticleTypeId int `description:"文章类型ID"`
  693. ArticleTypeName string `description:"类型名称"`
  694. ButtonStyle string `description:"按钮展示样式"`
  695. IsSpecial int `description:"是否为研选专栏"`
  696. SpecialTags string `description:"研选专栏标签"`
  697. UserId int `description:"作者id"`
  698. List []*IndustrialManagementResp `description:"产业列表"`
  699. TopTime int `description:"置顶时间"`
  700. }
  701. // 获取我的日程数量
  702. func GetArticleResearchCount(condition string, pars []interface{}, needYanxuanSpecial bool) (count int, err error) {
  703. o := orm.NewOrm()
  704. sqlCount := `SELECT COUNT( 1 ) AS count FROM
  705. cygx_article AS a
  706. WHERE
  707. 1 = 1 AND a.publish_status = 1` + condition
  708. if needYanxuanSpecial {
  709. sqlCount = `SELECT SUM(count) AS count FROM (` + sqlCount + `
  710. UNION ALL
  711. SELECT COUNT( 1 ) AS count FROM
  712. cygx_yanxuan_special AS a WHERE
  713. 1 = 1 AND a.status = 3) AS c`
  714. }
  715. err = o.Raw(sqlCount, pars).QueryRow(&count)
  716. return
  717. }
  718. //func GetArticleResearchList(condition string, pars []interface{}, startSize, pageSize, userId int, needYanxuanSpecial bool) (items []*ArticleCollectionResp, err error) {
  719. // o := orm.NewOrm()
  720. // sql := `SELECT
  721. // a.article_id,
  722. // a.title,
  723. // a.publish_date AS publish_time,
  724. // a.article_type_id,
  725. // d.nick_name,
  726. // d.department_id,
  727. // ( SELECT count( 1 ) FROM cygx_article_history_record_newpv AS h WHERE h.article_id = a.article_id ) AS pv,
  728. // ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id ) AS collect_num,
  729. // ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id AND DATE_SUB( CURDATE(), INTERVAL 30 DAY ) <= date( ac.create_time ) ) AS collect_num_order,
  730. // ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id AND user_id = ? ) AS my_collect_num,
  731. // 0 AS is_special,
  732. // 0 AS special_type,
  733. // 0 AS user_id,
  734. // '' AS company_tags,
  735. // '' AS industry_tags
  736. // FROM
  737. // cygx_article AS a
  738. // INNER JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = a.article_id
  739. // INNER JOIN cygx_industrial_management AS m ON m.industrial_management_id = mg.industrial_management_id
  740. // INNER JOIN cygx_article_department AS d ON d.department_id = a.department_id
  741. // WHERE
  742. // 1 = 1 AND a.publish_status = 1
  743. // `
  744. // if condition != "" {
  745. // sql += condition
  746. // }
  747. // sql += ` GROUP BY a.article_id `
  748. // if needYanxuanSpecial {
  749. // sql += `UNION ALL
  750. // SELECT
  751. // a.id AS article_id,
  752. // a.title AS title,
  753. // a.publish_time AS publish_time,
  754. // -1 AS article_type_id,
  755. // b.nick_name AS nick_name,
  756. // a.user_id AS department_id,
  757. // ( SELECT count( 1 ) FROM cygx_yanxuan_special_record AS h WHERE h.yanxuan_special_id = a.id ) AS pv,
  758. // ( SELECT count( 1 ) FROM cygx_yanxuan_special_collect AS ac WHERE ac.yanxuan_special_id = a.id ) AS collect_num,
  759. // 0 AS collect_num_order,
  760. // ( SELECT count( 1 ) FROM cygx_yanxuan_special_collect AS ac WHERE ac.yanxuan_special_id = a.id AND user_id = ? ) AS my_collect_num,
  761. // 1 AS is_special,
  762. // a.type AS special_type,
  763. // a.user_id AS user_id,
  764. // a.company_tags AS company_tags,
  765. // a.industry_tags AS industry_tags
  766. // FROM
  767. // cygx_yanxuan_special AS a
  768. // JOIN cygx_yanxuan_special_author AS b ON a.user_id = b.user_id
  769. // WHERE
  770. // 1 = 1 AND a.status = 3 `
  771. // sql += ` ORDER BY publish_time DESC LIMIT ?,? `
  772. // _, err = o.Raw(sql, userId, userId, pars, startSize, pageSize).QueryRows(&items)
  773. // } else {
  774. // sql += ` ORDER BY publish_time DESC LIMIT ?,? `
  775. // _, err = o.Raw(sql, userId, pars, startSize, pageSize).QueryRows(&items)
  776. // }
  777. //
  778. // return
  779. //}
  780. func GetArticleResearchList(condition string, pars []interface{}, startSize, pageSize, userId int, needYanxuanSpecial bool) (items []*ArticleCollectionResp, err error) {
  781. o := orm.NewOrm()
  782. sql := `SELECT
  783. a.article_id,
  784. a.title,
  785. a.publish_date AS publish_time,
  786. a.article_type_id,
  787. d.nick_name,
  788. d.department_id,
  789. 0 AS is_special,
  790. 0 as pv,
  791. 0 as collect_num,
  792. 0 AS special_type,
  793. 0 AS user_id,
  794. '' AS company_tags,
  795. '' AS industry_tags,
  796. a.top_time
  797. FROM
  798. cygx_article AS a
  799. INNER JOIN cygx_article_department AS d ON d.department_id = a.department_id
  800. WHERE
  801. 1 = 1 AND a.publish_status = 1
  802. `
  803. if condition != "" {
  804. sql += condition
  805. }
  806. sql += ` GROUP BY a.article_id `
  807. if needYanxuanSpecial {
  808. sql += `UNION ALL
  809. SELECT
  810. a.id AS article_id,
  811. a.title AS title,
  812. a.publish_time AS publish_time,
  813. -1 AS article_type_id,
  814. b.nick_name AS nick_name,
  815. a.user_id AS department_id,
  816. 1 AS is_special,
  817. a.pv,
  818. a.article_collect_num as collect_num,
  819. a.type AS special_type,
  820. a.user_id AS user_id,
  821. a.company_tags AS company_tags,
  822. a.industry_tags AS industry_tags,
  823. 0 as top_time
  824. FROM
  825. cygx_yanxuan_special AS a
  826. JOIN cygx_yanxuan_special_author AS b ON a.user_id = b.user_id
  827. WHERE
  828. 1 = 1 AND a.status = 3 `
  829. }
  830. sql += ` ORDER BY top_time DESC, publish_time DESC LIMIT ?,? `
  831. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  832. return
  833. }
  834. // 用户收藏榜start
  835. type IndustrialManagementHotResp struct {
  836. IndustrialManagementId int `orm:"column(industrial_management_id);pk" description:"产业id"`
  837. IndustryName string `description:"产业名称"`
  838. IsFollw bool `description:"是否关注"`
  839. FollowType int `description:"1,重点关注,3不感兴趣,0默认接受推送"`
  840. FllowNum int `description:"关注数量"`
  841. IsNew bool `description:"是否新标签"`
  842. IsHot bool `description:"是否新标签"`
  843. IsRed bool `description:"是否标记红点"`
  844. Readnum int `description:"阅读数量"`
  845. PublishDate string `description:"发布时间"`
  846. MinReportTime string `description:"报告最早发布时间"`
  847. ArticleReadNum int `description:"文章阅读数量"`
  848. Source int `description:"来源 1:弘则资源包(报告)、2:研选主题(报告)"`
  849. TimeLineData string `description:"时间线所关联最新三篇文章的json数据"`
  850. ListTimeLine []TimeLineReportResp `description:"时间线所关联最新三篇文章列表"`
  851. IndustrialSubjectList []*IndustrialSubject `description:"标的列表"`
  852. IndustryVideo *MicroVideoSimpleInfo `description:"产业视频"`
  853. AuthInfo *UserPermissionAuthInfo
  854. }
  855. type IndustrialManagementHotListResp struct {
  856. Paging *paging.PagingItem `description:"分页数据"`
  857. List []*IndustrialManagementHotResp
  858. }
  859. // 产业列表
  860. func GetThemeHeatList(userId int, condition, conditionOrder string, startSize, pageSize int) (items []*IndustrialManagementHotResp, err error) {
  861. o := orm.NewOrm()
  862. sql := `SELECT
  863. m.industry_name,
  864. m.industrial_management_id,
  865. m.article_read_num,
  866. MAX( a.publish_date ) AS publish_date,
  867. MIN(a.publish_date) AS min_report_time,
  868. ( 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,
  869. m.yanxuan_article_read_num + m.activity_num AS sum_num
  870. FROM
  871. cygx_industrial_management AS m
  872. LEFT JOIN cygx_industrial_article_group_management AS mg ON mg.industrial_management_id = m.industrial_management_id
  873. LEFT JOIN cygx_article AS a ON a.article_id = mg.article_id
  874. LEFT JOIN cygx_industrial_activity_group_management as ag ON ag.industrial_management_id = mg.industrial_management_id
  875. WHERE
  876. 1 = 1
  877. AND publish_status = 1 ` + condition + ` GROUP BY m.industrial_management_id ` + conditionOrder + ` , last_updated_time DESC LIMIT ?,?`
  878. _, err = o.Raw(sql, userId, startSize, pageSize).QueryRows(&items)
  879. return
  880. }
  881. // 获取数量
  882. func GetThemeHeatListCount(condition string) (count int, err error) {
  883. o := orm.NewOrm()
  884. sql := `SELECT COUNT( DISTINCT m.industrial_management_id ) FROM
  885. cygx_industrial_management AS m
  886. LEFT JOIN cygx_industrial_article_group_management AS mg ON mg.industrial_management_id = m.industrial_management_id
  887. LEFT JOIN cygx_article AS a ON a.article_id = mg.article_id
  888. LEFT JOIN cygx_industrial_activity_group_management as ag ON ag.industrial_management_id = mg.industrial_management_id
  889. WHERE
  890. 1 = 1
  891. AND a.publish_status = 1 ` + condition
  892. err = o.Raw(sql).QueryRow(&count)
  893. return
  894. }
  895. // 标的列表
  896. func GetThemeHeatSubjectList(condition string) (items []*IndustrialSubject, err error) {
  897. o := orm.NewOrm()
  898. sql := `SELECT
  899. m.subject_name,
  900. m.industrial_management_id,
  901. m.industrial_subject_id
  902. FROM
  903. cygx_article AS a
  904. INNER JOIN cygx_industrial_article_group_subject AS mg ON mg.article_id = a.article_id
  905. INNER JOIN cygx_industrial_subject AS m ON m.industrial_subject_id = mg.industrial_subject_id
  906. WHERE
  907. 1 = 1`
  908. if condition != "" {
  909. sql += condition
  910. }
  911. sql += ` AND publish_status = 1
  912. GROUP BY
  913. m.industrial_subject_id
  914. ORDER BY
  915. publish_date DESC`
  916. _, err = o.Raw(sql).QueryRows(&items)
  917. return
  918. } //end
  919. // Kol sratr
  920. type DepartmentResp struct {
  921. DepartmentId int `description:"作者Id"`
  922. NickName string `description:"作者昵称"`
  923. ImgUrl string `description:"图片链接"`
  924. IsFollw bool `description:"是否关注"`
  925. IsHot bool `description:"是否关注"`
  926. FllowNum int `description:"关注数量"`
  927. List []*IndustrialDepartmentListResp
  928. }
  929. type DepartmentListResp struct {
  930. Paging *paging.PagingItem `description:"分页数据"`
  931. List []*DepartmentResp
  932. }
  933. type IndustrialDepartmentListResp struct {
  934. IndustrialManagementId int `description:"产业Id"`
  935. IndustryName string `description:"产业名称"`
  936. DepartmentId int `description:"作者Id"`
  937. }
  938. // 作者列表
  939. func GetDepartmentList(condition, conditionOrder string, userId, startSize, pageSize int) (items []*DepartmentResp, err error) {
  940. o := orm.NewOrm()
  941. sql := `SELECT
  942. d.nick_name,
  943. d.department_id,
  944. d.img_url,
  945. MAX( a.publish_date ) AS publish_date,
  946. ( 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,
  947. ( SELECT count( 1 ) FROM cygx_article_department_follow AS f WHERE f.department_id = d.department_id AND f.type= 1 ) AS sum_num
  948. FROM
  949. cygx_article_department AS d
  950. INNER JOIN cygx_article AS a ON d.department_id = a.department_id
  951. WHERE
  952. 1 = 1
  953. AND publish_status = 1 ` + condition + `
  954. GROUP BY
  955. d.department_id ` + conditionOrder + ` , last_updated_time DESC LIMIT ?,?`
  956. _, err = o.Raw(sql, userId, startSize, pageSize).QueryRows(&items)
  957. return
  958. }
  959. // 获取数量
  960. func GetDepartmentlistCount(condition string) (count int, err error) {
  961. o := orm.NewOrm()
  962. sql := `SELECT
  963. count(*) AS count
  964. FROM
  965. (
  966. SELECT
  967. COUNT( 1 ) AS count
  968. FROM
  969. cygx_article_department AS d
  970. INNER JOIN cygx_article AS a ON d.department_id = a.department_id
  971. WHERE
  972. 1 = 1
  973. AND a.article_type_id > 0
  974. AND publish_status = 1
  975. GROUP BY
  976. d.department_id
  977. ) c `
  978. err = o.Raw(sql).QueryRow(&count)
  979. return
  980. }
  981. // 作者文章所关联的产业列表
  982. func GetIndustrialDepartmentList() (items []*IndustrialDepartmentListResp, err error) {
  983. o := orm.NewOrm()
  984. sql := `SELECT
  985. m.industrial_management_id,
  986. m.industry_name,
  987. d.department_id
  988. FROM
  989. cygx_article_department AS d
  990. INNER JOIN cygx_article AS a ON d.department_id = a.department_id
  991. INNER JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = a.article_id
  992. INNER JOIN cygx_industrial_management AS m ON m.industrial_management_id = mg.industrial_management_id
  993. WHERE
  994. 1 = 1
  995. AND a.article_type_id > 0
  996. AND publish_status = 1
  997. ORDER BY
  998. a.publish_date DESC`
  999. _, err = o.Raw(sql).QueryRows(&items)
  1000. return
  1001. }
  1002. // 主题详情start
  1003. type GetThemeDetailListResp struct {
  1004. ArticleId int `description:"文章id"`
  1005. Title string `description:"标题"`
  1006. PublishDate string `description:"发布时间"`
  1007. SubjectName string `description:"标的名称"`
  1008. IndustrialSubjectId int `description:"标的id"`
  1009. DepartmentId int `description:"作者Id"`
  1010. NickName string `description:"作者昵称"`
  1011. Pv int `description:"PV"`
  1012. CollectNum int `description:"收藏人数"`
  1013. IndustrialManagementId int `description:"产业Id"`
  1014. IndustryName string `description:"产业名称"`
  1015. FllowNum int `description:"关注数量"`
  1016. MyCollectNum int `description:"本人是否收藏"`
  1017. IsCollect bool `description:"本人是否收藏"`
  1018. }
  1019. type GetThemeAericleListResp struct {
  1020. ArticleId int `description:"文章id"`
  1021. Title string `description:"标题"`
  1022. PublishDate string `description:"发布时间"`
  1023. SubjectName string `description:"标的名称"`
  1024. IndustrialSubjectId int `description:"标的ID"`
  1025. DepartmentId int `description:"作者Id"`
  1026. NickName string `description:"作者昵称"`
  1027. Pv int `description:"PV"`
  1028. CollectNum int `description:"收藏人数"`
  1029. FllowNum int `description:"关注数量"`
  1030. MyCollectNum int `description:"本人是否收藏"`
  1031. IsCollect bool `description:"本人是否收藏"`
  1032. }
  1033. type GetThemeAericleListBuSubjectResp struct {
  1034. SubjectName string `description:"标的名称"`
  1035. List []*GetThemeAericleListResp
  1036. }
  1037. // 主题详情start
  1038. type GetThemeDetailResp struct {
  1039. IndustrialManagementId int `description:"产业Id"`
  1040. IndustryName string `description:"产业名称"`
  1041. IsFollw bool `description:"是否关注"`
  1042. FollowType int `description:"1,重点关注,3不感兴趣,0默认接受推送"`
  1043. ListSubject []*IndustrialSubject `description:"标的列表"`
  1044. List []*GetThemeAericleListResp
  1045. }
  1046. // 列表
  1047. func GetThemeDetail(userId, industrialManagementId int, condition string) (items []*GetThemeDetailListResp, err error) {
  1048. o := orm.NewOrm()
  1049. sql := `SELECT
  1050. a.article_id,
  1051. a.title,
  1052. date_format( a.publish_date, '%Y-%m-%d' ) AS publish_date,
  1053. m.industry_name,
  1054. m.industrial_management_id,
  1055. d.nick_name,
  1056. d.department_id,
  1057. s.industrial_subject_id,
  1058. s.subject_name,
  1059. ( SELECT count( 1 ) FROM cygx_article_history_record_newpv AS h WHERE h.article_id = a.article_id ) AS pv,
  1060. ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id ) AS collect_num,
  1061. ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id and user_id = ? ) AS my_collect_num,
  1062. ( 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
  1063. FROM
  1064. cygx_article AS a
  1065. INNER JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = a.article_id
  1066. LEFT JOIN cygx_industrial_management AS m ON m.industrial_management_id = mg.industrial_management_id
  1067. LEFT JOIN cygx_article_department AS d ON d.department_id = a.department_id
  1068. LEFT JOIN cygx_industrial_article_group_subject AS sg ON sg.article_id = a.article_id
  1069. LEFT JOIN cygx_industrial_subject AS s ON s.industrial_subject_id = sg.industrial_subject_id
  1070. WHERE
  1071. 1 = 1
  1072. AND m.industrial_management_id = ?
  1073. AND publish_status = 1 ` + condition + ` GROUP BY article_id
  1074. ORDER BY
  1075. publish_date DESC`
  1076. _, err = o.Raw(sql, userId, userId, industrialManagementId).QueryRows(&items)
  1077. return
  1078. } //end
  1079. // 用户收藏榜start
  1080. type DepartmentDetailResp struct {
  1081. DepartmentId int `description:"作者Id"`
  1082. NickName string `description:"作者昵称"`
  1083. ImgUrl string `description:"图片链接"`
  1084. FllowNum int `description:"多少人关注"`
  1085. ArticleNum int `description:"文章数量"`
  1086. CollectNum int `description:"收藏人数"`
  1087. IsFllow bool `description:"是否关注"`
  1088. List []*ArticleCollectionResp
  1089. ListIndustrial []*IndustrialManagementNewResp
  1090. }
  1091. type DepartmentDetail struct {
  1092. DepartmentId int `description:"作者Id"`
  1093. NickName string `description:"作者昵称"`
  1094. ImgUrl string `description:"图片链接"`
  1095. FllowNum int `description:"多少人关注"`
  1096. ArticleNum int `description:"文章数量"`
  1097. CollectNum int `description:"收藏人数"`
  1098. IsFllow bool `description:"是否关注"`
  1099. MyFllowNum int `description:"本人是否关注"`
  1100. }
  1101. // 列表
  1102. func GetDepartmentDetail(userId, departmentId int, condition string) (item DepartmentDetail, err error) {
  1103. o := orm.NewOrm()
  1104. sql := `SELECT
  1105. d.department_id,
  1106. d.nick_name,
  1107. d.img_url,
  1108. ( 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,
  1109. ( SELECT count( 1 ) FROM cygx_article_department_follow AS f WHERE f.department_id = d.department_id AND f.type= 1 ) AS fllow_num,
  1110. ( SELECT count( 1 ) FROM cygx_article AS a WHERE a.department_id = d.department_id ` + condition + ` ) AS article_num,
  1111. ( SELECT count( 1 ) FROM cygx_article_collect AS c WHERE c.article_id IN (SELECT article_id FROM cygx_article AS a WHERE a.department_id = d.department_id ` + condition + ` )) AS collect_num
  1112. FROM
  1113. cygx_article_department AS d
  1114. WHERE
  1115. d.department_id = ?`
  1116. err = o.Raw(sql, userId, departmentId).QueryRow(&item)
  1117. return
  1118. } //end
  1119. // 报告搜索start
  1120. type ReoprtSearchResp struct {
  1121. ListYx []*ArticleCollectionResp `description:"研选报告"`
  1122. ListHz []*ArticleCollectionResp `description:"弘则报告"`
  1123. }
  1124. //// 列表
  1125. //func GetReoprtSearchList(condition string, userId int) (items []*ArticleCollectionResp, err error) {
  1126. // o := orm.NewOrm()
  1127. // sql := `SELECT
  1128. // a.article_id,
  1129. // a.title,
  1130. // date_format( a.publish_date, '%Y-%m-%d' ) AS publish_date,
  1131. // m.industry_name,
  1132. // m.industrial_management_id,
  1133. // ( SELECT count( 1 ) FROM cygx_article_history_record_newpv AS h WHERE h.article_id = a.article_id ) AS pv,
  1134. // ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id ) AS collect_num,
  1135. // ( SELECT count( 1 ) FROM cygx_article_collect AS ac WHERE ac.article_id = a.article_id AND user_id = ?) AS my_collect_num
  1136. // FROM
  1137. // cygx_article AS a
  1138. // LEFT JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = a.article_id
  1139. // LEFT JOIN cygx_industrial_management AS m ON m.industrial_management_id = mg.industrial_management_id
  1140. // WHERE
  1141. // 1 = 1 `
  1142. // if condition != "" {
  1143. // sql += condition
  1144. // }
  1145. // _, err = o.Raw(sql, userId).QueryRows(&items)
  1146. // return
  1147. //} //end
  1148. // 列表
  1149. func GetReoprtSearchList(condition string, userId int) (items []*ArticleCollectionResp, err error) {
  1150. o := orm.NewOrm()
  1151. sql := `SELECT
  1152. a.article_id,
  1153. a.report_id,
  1154. a.title,
  1155. date_format( a.publish_date, '%Y-%m-%d' ) AS publish_date,
  1156. m.industry_name,
  1157. m.industrial_management_id
  1158. FROM
  1159. cygx_article AS a
  1160. LEFT JOIN cygx_industrial_article_group_management AS mg ON mg.article_id = a.article_id
  1161. LEFT JOIN cygx_industrial_management AS m ON m.industrial_management_id = mg.industrial_management_id
  1162. WHERE
  1163. 1 = 1 `
  1164. if condition != "" {
  1165. sql += condition
  1166. }
  1167. _, err = o.Raw(sql).QueryRows(&items)
  1168. return
  1169. } //end
  1170. // 搜索资源包 start
  1171. type SearchResourceResp struct {
  1172. ListHz []*IndustrialManagementHotResp `description:"弘则"`
  1173. ListYx []*IndustrialManagementHotResp `description:"研选"`
  1174. }
  1175. // 搜索资源包 start
  1176. type SearchReportAndResourceResp struct {
  1177. ListHzResource []*IndustrialManagement `description:"弘则资源包"`
  1178. ListYxResource []*IndustrialManagementHotResp `description:"研选资源包"`
  1179. ListYxReport []*ArticleCollectionResp `description:"研选报告"`
  1180. ListHzReport []*ArticleCollectionResp `description:"弘则报告"`
  1181. }
  1182. // 产业列表
  1183. func GetSearchResourceList(userId int, condition string, startSize, pageSize int) (items []*IndustrialManagementHotResp, err error) {
  1184. o := orm.NewOrm()
  1185. sql := `SELECT
  1186. m.time_line_data,
  1187. m.industry_name,
  1188. m.industrial_management_id,
  1189. MAX( a.publish_date ) as publish_date_order,
  1190. MIN(a.publish_date) AS min_report_time,
  1191. date_format( MAX( a.publish_date ), '%Y-%m-%d' ) AS publish_date,
  1192. (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
  1193. FROM
  1194. cygx_industrial_management AS m
  1195. INNER JOIN cygx_industrial_article_group_management AS mg ON mg.industrial_management_id = m.industrial_management_id
  1196. INNER JOIN cygx_article AS a ON a.article_id = mg.article_id AND a.article_type != 'lyjh'
  1197. WHERE
  1198. 1 = 1
  1199. AND publish_status = 1 ` + condition + ` GROUP BY m.industrial_management_id ORDER BY publish_date_order DESC `
  1200. if startSize > 0 || pageSize > 0 {
  1201. sql += ` LIMIT ` + strconv.Itoa(startSize) + "," + strconv.Itoa(pageSize)
  1202. }
  1203. _, err = o.Raw(sql).QueryRows(&items)
  1204. return
  1205. }
  1206. // 列表
  1207. func GetSearchResourceListcondition(condition string, startSize, pageSize int) (items []*IndustrialManagement, err error) {
  1208. o := orm.NewOrm()
  1209. sql := `SELECT
  1210. m.time_line_data,
  1211. m.industry_name,
  1212. m.chart_permission_id,
  1213. m.industrial_management_id,
  1214. MAX( a.publish_date ) as publish_date_order,
  1215. MIN( a.publish_date ) AS min_report_time,
  1216. date_format( MAX( a.publish_date ), '%Y-%m-%d' ) AS publish_date
  1217. FROM
  1218. cygx_industrial_management AS m
  1219. INNER JOIN cygx_industrial_article_group_management AS mg ON mg.industrial_management_id = m.industrial_management_id
  1220. INNER JOIN cygx_article AS a ON a.article_id = mg.article_id AND a.article_type != 'lyjh'
  1221. WHERE
  1222. 1 = 1
  1223. AND publish_status = 1 ` + condition + ` GROUP BY m.industrial_management_id ORDER BY publish_date_order DESC `
  1224. if startSize > 0 || pageSize > 0 {
  1225. sql += ` LIMIT ` + strconv.Itoa(startSize) + "," + strconv.Itoa(pageSize)
  1226. }
  1227. _, err = o.Raw(sql).QueryRows(&items)
  1228. return
  1229. }
  1230. // 切换列表
  1231. type ReportBillboardTableResp struct {
  1232. Name string `description:"名称"`
  1233. Source int `description:"类型"`
  1234. List []*ChartPermission
  1235. }
  1236. // 切换列表
  1237. type ReportBillboardTableListResp struct {
  1238. List []*ReportBillboardTableResp
  1239. }
  1240. // 报告榜单start
  1241. type ArticleReportBillboardResp struct {
  1242. ArticleId int `description:"文章id"`
  1243. Title string `description:"标题"`
  1244. PublishDate string `description:"发布时间"`
  1245. PermissionName string `description:"行业名称"`
  1246. DepartmentId int `description:"作者Id"`
  1247. NickName string `description:"作者昵称"`
  1248. IsCollect bool `description:"本人是否收藏"`
  1249. Pv int `description:"PV"`
  1250. CollectNum int `description:"收藏人数"`
  1251. Source int `description:"来源 1:弘则资源包(报告)、2:研选主题(报告)"`
  1252. IsRoadShow bool `description:"是否是路演精华"`
  1253. CategoryId int `description:"分类ID"`
  1254. IsResearch bool `description:"是否属于研选"`
  1255. ArticleTypeId int `description:"文章类型ID"`
  1256. ArticleTypeName string `description:"文章类型名称"`
  1257. IsSpecial int `description:"是否为研选专栏"`
  1258. SpecialTags string `description:"研选专栏标签"`
  1259. MyCollectNum int `description:"本人是否收藏"`
  1260. SpecialType int `description:"专栏类型 1:笔记,2:观点"`
  1261. UserId int `description:"作者id"`
  1262. List []*IndustrialManagementIdInt
  1263. }
  1264. type ArticleReportBillboardLIstResp struct {
  1265. List []*ArticleReportBillboardResp
  1266. }
  1267. type ArticleReportBillboardLIstPageResp struct {
  1268. List []*ArticleReportBillboardResp
  1269. Paging *paging.PagingItem
  1270. }
  1271. // 报告收藏榜单列表
  1272. func GetReportCollectionBillboardList(limit int, pars []interface{}, condition string) (items []*ArticleReportBillboardResp, err error) {
  1273. o := orm.NewOrm()
  1274. sql := `SELECT
  1275. ac.id,
  1276. a.article_id,
  1277. a.title,
  1278. date_format(a.publish_date, '%Y-%m-%d') AS publish_date,
  1279. m.chart_permission_name AS permission_name,
  1280. COUNT(ac.id) AS collection_num
  1281. FROM
  1282. cygx_article AS a
  1283. INNER JOIN cygx_report_mapping AS m ON m.category_id = a.category_id
  1284. INNER JOIN cygx_article_collect AS ac ON ac.article_id = a.article_id
  1285. WHERE
  1286. 1 = 1
  1287. AND a.publish_status = 1 `
  1288. if condition != "" {
  1289. sql += condition
  1290. }
  1291. sql += ` GROUP BY a.article_id ORDER BY collection_num DESC, ac.id DESC, a.publish_date DESC`
  1292. sql += ` LIMIT ?`
  1293. _, err = o.Raw(sql, pars, limit).QueryRows(&items)
  1294. return
  1295. }
  1296. // 报告阅读榜单列表
  1297. func GetReportPvBillboardList(pars []interface{}, condition string) (items []*ArticleReportBillboardResp, err error) {
  1298. o := orm.NewOrm()
  1299. sql := `SELECT
  1300. a.article_id,
  1301. a.title,
  1302. date_format( a.publish_date, '%Y-%m-%d' ) AS publish_date
  1303. FROM
  1304. cygx_article AS a
  1305. INNER JOIN cygx_report_mapping AS m ON m.category_id = a.category_id
  1306. WHERE
  1307. 1 = 1
  1308. AND a.publish_status = 1 `
  1309. if condition != "" {
  1310. sql += condition
  1311. }
  1312. _, err = o.Raw(sql, pars).QueryRows(&items)
  1313. return
  1314. }
  1315. // 获取产业报告+晨会点评数量
  1316. func GetTimeLineReportIndustrialCount(industrialManagementId int) (count int, err error) {
  1317. o := orm.NewOrm()
  1318. sql := `SELECT SUM(count) AS count FROM (
  1319. SELECT
  1320. COUNT( 1 ) count
  1321. FROM
  1322. cygx_article AS a
  1323. INNER JOIN cygx_industrial_article_group_management AS man_g ON man_g.article_id = a.article_id
  1324. WHERE
  1325. a.publish_status = 1
  1326. AND a.is_class = 1
  1327. AND man_g.industrial_management_id = ?
  1328. UNION ALL
  1329. SELECT
  1330. COUNT( 1 ) count
  1331. FROM
  1332. cygx_morning_meeting_review_chapter AS mmc
  1333. INNER JOIN cygx_morning_meeting_reviews AS mm
  1334. WHERE
  1335. mm.id = mmc.meeting_id
  1336. AND mm.status = 1
  1337. AND mmc.industry_id = ? UNION ALL
  1338. SELECT
  1339. COUNT( 1 ) count
  1340. FROM
  1341. cygx_product_interior AS p
  1342. INNER JOIN cygx_product_interior_industrial_group_management AS pm
  1343. WHERE
  1344. p.product_interior_id = pm.product_interior_id
  1345. AND p.visible_range = 1
  1346. AND pm.industrial_management_id = ? ) AS t `
  1347. err = o.Raw(sql, industrialManagementId, industrialManagementId, industrialManagementId).QueryRow(&count)
  1348. return
  1349. }
  1350. type TimeLineReportItem struct {
  1351. Id int `description:"文章或晨报点评id"`
  1352. Title string `description:"标题"`
  1353. PublishTime string `description:"发布时间"`
  1354. Content string `description:"内容"`
  1355. VideoUrl string `description:"视频链接"`
  1356. VoiceUrl string `description:"音频链接"`
  1357. VoicePlaySeconds string `description:"音频时长"`
  1358. IsHaveVideo bool `description:"是否包含视频"`
  1359. ImgUrlPc string `description:"pc图片"`
  1360. SubCategoryName string `description:"二级分类"`
  1361. IsRed bool `description:"是否标红"`
  1362. Readnum int `description:"阅读数量"`
  1363. Resource int `description:"来源类型,1:文章、2:产品内测、3:晨报点评 4:活动回放视频 5:活动回放音频 "`
  1364. LinkArticleId int `description:"晨会精华报告ID链接"`
  1365. ListSubject []*CygxIndustrialSubject `description:"标的列表"`
  1366. }
  1367. // 获取产业报告+晨会点评列表
  1368. func GetTimeLineReportIndustrialList(userId, industrialManagementId, startSize, pageSize int) (items []*TimeLineReportItem, err error) {
  1369. o := orm.NewOrm()
  1370. sql := `SELECT
  1371. *
  1372. FROM
  1373. (
  1374. SELECT
  1375. a.article_id AS id,
  1376. a.title,
  1377. a.publish_date AS publish_time,
  1378. a.video_url,
  1379. '' AS voice_url,
  1380. a.sub_category_name,
  1381. '' AS content,
  1382. 1 AS resource,
  1383. '' AS voice_play_seconds,
  1384. ( 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
  1385. FROM
  1386. cygx_article AS a
  1387. INNER JOIN cygx_industrial_article_group_management AS man_g ON man_g.article_id = a.article_id
  1388. WHERE
  1389. a.publish_status = 1
  1390. AND a.is_class = 1
  1391. AND man_g.industrial_management_id = ? GROUP BY id UNION ALL
  1392. SELECT
  1393. mmc.id,
  1394. mmc.title,
  1395. mm.publish_time AS publish_time,
  1396. '' AS video_url,
  1397. '' AS voice_url,
  1398. '时间线' AS sub_category_name,
  1399. mmc.content,
  1400. 3 AS resource,
  1401. '' AS voice_play_seconds,
  1402. 0 AS readnum
  1403. FROM
  1404. cygx_morning_meeting_review_chapter AS mmc
  1405. INNER JOIN cygx_morning_meeting_reviews AS mm
  1406. WHERE
  1407. mm.id = mmc.meeting_id
  1408. AND mm.STATUS = 1
  1409. AND mmc.industry_id = ? UNION ALL
  1410. SELECT
  1411. p.product_interior_id AS id,
  1412. p.title,
  1413. p.publish_time,
  1414. '' AS video_url,
  1415. '' AS voice_url,
  1416. '' AS sub_category_name,
  1417. '' AS content,
  1418. 2 AS resource,
  1419. '' AS voice_play_seconds,
  1420. 0 AS readnum
  1421. FROM
  1422. cygx_product_interior AS p
  1423. INNER JOIN cygx_product_interior_industrial_group_management AS pm
  1424. WHERE
  1425. p.product_interior_id = pm.product_interior_id
  1426. AND p.visible_range = 1
  1427. AND pm.industrial_management_id = ? UNION ALL
  1428. SELECT
  1429. ca.activity_id AS id,
  1430. cav.video_name AS title,
  1431. ca.activity_time AS publish_time,
  1432. cav.video_url AS video_url,
  1433. '' AS voice_url,
  1434. '' AS sub_category_name,
  1435. '' AS content,
  1436. 4 AS resource,
  1437. '' AS voice_play_seconds,
  1438. ( SELECT COUNT( 1 ) FROM cygx_activity_video_history AS rec WHERE rec.user_id = ` + strconv.Itoa(userId) + ` AND rec.activity_id = ca.activity_id ) AS readnum
  1439. FROM
  1440. cygx_activity AS ca
  1441. INNER JOIN cygx_activity_video AS cav ON ca.activity_id = cav.activity_id
  1442. INNER JOIN cygx_industrial_activity_group_management AS cam ON ca.activity_id=cam.activity_id
  1443. WHERE
  1444. cam.industrial_management_id = ? AND cam.source = 1 UNION ALL
  1445. SELECT
  1446. ca.activity_id AS id,
  1447. cavo.voice_name AS title,
  1448. ca.activity_time AS publish_time,
  1449. '' AS video_url,
  1450. cavo.voice_url AS voice_url,
  1451. '' AS sub_category_name,
  1452. '' AS content,
  1453. 5 AS resource,
  1454. cavo.voice_play_seconds AS voice_play_seconds,
  1455. ( SELECT COUNT( 1 ) FROM cygx_activity_voice_history AS rec WHERE rec.user_id = ` + strconv.Itoa(userId) + ` AND rec.activity_id = ca.activity_id ) AS readnum
  1456. FROM
  1457. cygx_activity AS ca
  1458. INNER JOIN cygx_activity_voice AS cavo ON ca.activity_id = cavo.activity_id
  1459. INNER JOIN cygx_industrial_activity_group_management AS cam ON ca.activity_id=cam.activity_id
  1460. WHERE
  1461. cam.industrial_management_id = ? AND cam.source = 1
  1462. ) AS t
  1463. `
  1464. sql += ` ORDER BY
  1465. t.publish_time DESC LIMIT ?,? `
  1466. _, err = o.Raw(sql, industrialManagementId, industrialManagementId, industrialManagementId, industrialManagementId, industrialManagementId, startSize, pageSize).QueryRows(&items)
  1467. return
  1468. }
  1469. type ArticleIdReq struct {
  1470. ArticleId int `description:"文章id"`
  1471. PlaySeconds int `description:"播放时长"`
  1472. PageRouter string `description:"页面路径"`
  1473. }
  1474. type IndustrialReadNum struct {
  1475. IndustrialManagementId int `description:"产业id"`
  1476. Readnum int `description:"阅读次数"`
  1477. }
  1478. // 获取该产业下文章的用户阅读次数-小红点用
  1479. func GetReportIndustrialReadNumList(userId int, industrialIds string, createtime time.Time) (items []*IndustrialReadNum, err error) {
  1480. o := orm.NewOrm()
  1481. sql := `SELECT a.industrial_management_id, MIN(a.readnum) AS readnum FROM (
  1482. SELECT man_g.industrial_management_id,( 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
  1483. FROM
  1484. cygx_article AS a
  1485. INNER JOIN cygx_industrial_article_group_management as man_g ON man_g.article_id = a.article_id
  1486. WHERE
  1487. a.publish_status = 1
  1488. AND a.is_class = 1
  1489. AND man_g.industrial_management_id IN (` + industrialIds + `)
  1490. AND a.publish_date > ?
  1491. GROUP BY a.article_id ORDER BY publish_date DESC
  1492. ) AS a GROUP BY industrial_management_id`
  1493. _, err = o.Raw(sql, createtime).QueryRows(&items)
  1494. return
  1495. }
  1496. // 获取行业报告列表
  1497. func GetReportAndproductIndustrylListimgZhouqi(condition string, startSize, pageSize int) (items []*HomeArticle, total int, err error) {
  1498. o := orm.NewOrm()
  1499. sql := `SELECT
  1500. art.article_id,
  1501. art.report_id,
  1502. art.body,
  1503. art.annotation,
  1504. art.abstract,
  1505. art.category_id,
  1506. art.title,
  1507. art.publish_date,
  1508. 1 AS resource
  1509. FROM
  1510. cygx_article AS art
  1511. WHERE
  1512. art.publish_status = 1 AND category_name = '周期' ` + condition
  1513. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  1514. err = o.Raw(totalSql).QueryRow(&total)
  1515. sql += ` ORDER BY publish_date DESC LIMIT ?,? `
  1516. _, err = o.Raw(sql, startSize, pageSize).QueryRows(&items)
  1517. return
  1518. }