report_mapping.go 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. )
  5. type CygxReportMapping struct {
  6. Id int `description:"id"`
  7. ChartPermissionId int `description:"行业ID"`
  8. CategoryId int `description:"分类ID"`
  9. SubCategoryId int `description:"主题"`
  10. CategoryName int `description:"主题"`
  11. ChartPermissionName string `description:"行业名称"`
  12. SubCategoryName int `description:"主题"`
  13. MatchTypeName string `description:"分类名称"`
  14. ReportType int `description:"报告类型,2产业报告,1行业报告"`
  15. Sort int `description:"排序"`
  16. IsCustom int `description:"是否属于自定义的匹配类型 ,1是,0否"`
  17. IsSummary int `description:"是否是纪要库,1是,0否"`
  18. IsReport int `description:"是否是报告,1是,0否"`
  19. PermissionType int `description:"1主观,2客观"`
  20. CategoryIdSet int `description:"分类ID手动设置的分类"`
  21. PolymerizationId string `description:"分类聚合ID"`
  22. CeLueFieldId string `description:"策略平台领域ID"`
  23. }
  24. type ReportMapping struct {
  25. CategoryId int `description:"分类ID"`
  26. CategoryIdSet int `description:"分类ID手动设置的分类"`
  27. SubCategoryName string `description:"主题"`
  28. MatchTypeName string `description:"分类名称"`
  29. ChartPermissionName string `description:"行业名称"`
  30. ChartPermissionId int `description:"行业ID"`
  31. IsRed bool `description:"是否标红"`
  32. PermissionType int `description:"1主观,2客观"`
  33. PolymerizationId string `description:"分类聚合ID"`
  34. CeLueFieldId string `description:"策略平台领域ID"`
  35. }
  36. type ReportMappingHome struct {
  37. CategoryId int `description:"分类ID"`
  38. SubCategoryName string `description:"主题名称"`
  39. MatchTypeName string `description:"匹配类型"`
  40. IsRed bool `description:"是否标红"`
  41. }
  42. type TradeReportMapping struct {
  43. CategoryId int `description:"分类ID"`
  44. CategoryIdSet int `description:"分类映射id"`
  45. PolymerizationId string `description:"分类聚合ID"`
  46. SubCategoryName string `description:"主题名称"`
  47. MatchTypeName string `description:"匹配类型"`
  48. IsRed bool `description:"是否标红"`
  49. UpdateTime string `description:"更新时间"`
  50. Readnum int `description:"阅读数量"`
  51. }
  52. type ReportMappingResp struct {
  53. List []*ReportMapping
  54. }
  55. type ReportMappingHomeResp struct {
  56. List []*ReportMappingHome
  57. }
  58. type TradeReportMappingResp struct {
  59. List []*TradeReportMapping
  60. }
  61. // 获取策略下面的所有分类
  62. func GetReportMappingStrategyAll() (items []*ReportMapping, err error) {
  63. o := orm.NewOrm()
  64. sql := `SELECT * FROM cygx_report_mapping WHERE report_type=1 AND chart_permission_id=23 ORDER BY sort ASC `
  65. _, err = o.Raw(sql).QueryRows(&items)
  66. return
  67. }
  68. // 获取策略下面的所有分类
  69. func GetReportMappingStrategyHomeAll(chartPermissionId int) (items []*ReportMappingHome, err error) {
  70. o := orm.NewOrm()
  71. sql := `SELECT
  72. re.category_id,re.sub_category_name,re.match_type_name
  73. FROM
  74. cygx_report_mapping AS re
  75. INNER JOIN cygx_article AS art ON art.category_id = re.category_id
  76. WHERE
  77. re.report_type = 1
  78. AND re.chart_permission_id = ?
  79. GROUP BY
  80. re.match_type_name
  81. ORDER BY
  82. sort DESC , art.publish_date DESC`
  83. _, err = o.Raw(sql, chartPermissionId).QueryRows(&items)
  84. return
  85. }
  86. // 行业列表
  87. func GetTradeAll(ChartPermissionId int) (items []*TradeReportMapping, err error) {
  88. o := orm.NewOrm()
  89. sql := `SELECT
  90. re.category_id,
  91. re.category_id_set,
  92. re.polymerization_id,
  93. re.sub_category_name,
  94. re.match_type_name
  95. FROM
  96. cygx_report_mapping AS re
  97. WHERE
  98. re.chart_permission_id = ?
  99. AND re.report_type = 1
  100. AND re.category_id NOT IN ( 67 )
  101. ORDER BY
  102. re.sort DESC `
  103. _, err = o.Raw(sql, ChartPermissionId).QueryRows(&items)
  104. return
  105. }
  106. type IndustrialToArticleCategoryRep struct {
  107. CategoryId int `description:"分类ID"`
  108. MatchTypeName string `description:"匹配类型"`
  109. IsRed bool `description:"是否标红"`
  110. }
  111. type IndustrialToArticleCategoryListRep struct {
  112. AuthInfo *UserPermissionAuthInfo
  113. LayoutTime string `description:"布局时间"`
  114. IndustryName string `description:"产业名称"`
  115. IndustrialManagementId int `description:"产业D"`
  116. IsShowFollowButton bool `description:"是否展示关注取关按钮"`
  117. IsFollowButton bool `description:"是否关注"`
  118. IndustryVideo *MicroVideoSimpleInfo
  119. List []*IndustrialToArticleCategoryRep
  120. }
  121. // 通过分类ID获取详情
  122. func GetdetailByCategoryId(categoryId int) (item *ReportMapping, err error) {
  123. o := orm.NewOrm()
  124. sql := `SELECT * FROM cygx_report_mapping WHERE report_type=1 AND category_id=? `
  125. err = o.Raw(sql, categoryId).QueryRow(&item)
  126. return
  127. }
  128. // 通过分类ID获取详情
  129. func GetdetailByCategoryIdSet(categoryId int) (ids string, err error) {
  130. o := orm.NewOrm()
  131. sql := `SELECT
  132. GROUP_CONCAT( DISTINCT category_id SEPARATOR ',' ) AS ids
  133. FROM
  134. cygx_report_mapping
  135. WHERE
  136. category_id_set = ? `
  137. err = o.Raw(sql, categoryId).QueryRow(&ids)
  138. return
  139. }
  140. // 通过分类ID获取详情
  141. func GetdetailByCategoryIdPush(categoryId int) (item *ReportMapping, err error) {
  142. o := orm.NewOrm()
  143. sql := `SELECT * FROM cygx_report_mapping WHERE category_id=? LIMIT 1 `
  144. err = o.Raw(sql, categoryId).QueryRow(&item)
  145. return
  146. }
  147. // 通过分类ID获取详情主观客观
  148. func GetdetailByCategoryIdSando(categoryId int) (item *ReportMapping, err error) {
  149. o := orm.NewOrm()
  150. sql := `SELECT * FROM cygx_report_mapping WHERE permission_type>0 AND category_id=? LIMIT 1`
  151. err = o.Raw(sql, categoryId).QueryRow(&item)
  152. return
  153. }
  154. // 通过分类ID获取详情
  155. func GetdetailByCategoryIdOne(categoryId int) (item *ReportMapping, err error) {
  156. o := orm.NewOrm()
  157. sql := `SELECT * FROM cygx_report_mapping WHERE category_id=? AND report_type = 2 LIMIT 1`
  158. err = o.Raw(sql, categoryId).QueryRow(&item)
  159. return
  160. }
  161. // 通过分类ID获取详情
  162. func GetdetailByCategoryIdOneByHangye(categoryId int) (item *ReportMapping, err error) {
  163. o := orm.NewOrm()
  164. sql := `SELECT * FROM cygx_report_mapping WHERE category_id=? AND report_type = 1 LIMIT 1`
  165. err = o.Raw(sql, categoryId).QueryRow(&item)
  166. return
  167. }
  168. // 判断该分类下最新的文章用户是否阅读
  169. func CheckThisCategoryNewArticleIsRead(uid, categoryId int) (count int, err error) {
  170. o := orm.NewOrm()
  171. sql := `SELECT COUNT(1) count
  172. FROM cygx_article_history_record
  173. WHERE user_id = ?
  174. AND article_id = ( SELECT article_id FROM cygx_article WHERE category_id = ? AND is_class = 1 AND is_report = 1 AND is_filter = 0 ORDER BY publish_date DESC LIMIT 1)`
  175. err = o.Raw(sql, uid, categoryId).QueryRow(&count)
  176. return
  177. }
  178. // 获取策略下面的所有分类
  179. func GetMatchTypeNamenNotNull() (items []*ReportMapping, err error) {
  180. o := orm.NewOrm()
  181. sql := `SELECT category_id,category_id_set,match_type_name FROM cygx_report_mapping WHERE match_type_name <> ''`
  182. _, err = o.Raw(sql).QueryRows(&items)
  183. return
  184. }
  185. type ReportMappingStatistical struct {
  186. CategoryId int `description:"分类ID"`
  187. SubCategoryName string `description:"主题名称"`
  188. MatchTypeName string `description:"匹配类型"`
  189. IsSummary string `description:"是否属于纪要,1 是,0否"`
  190. IsClass string `description:"是否归类,1 是,0否"`
  191. Pv int `description:"Pv"`
  192. Uv int `description:"Uv"`
  193. }
  194. // 获取报表
  195. func GetStatisticalReportArtilce(chartPermissionId int) (items []*ReportMappingStatistical, err error) {
  196. o := orm.NewOrm()
  197. sql := `SELECT
  198. m.category_id,
  199. m.chart_permission_name,
  200. a.article_id,
  201. a.title,
  202. a.is_summary,
  203. a.is_class,
  204. (SELECT count( 1 ) FROM cygx_article_history_record AS h WHERE h.article_id = a.article_id ) AS pv,
  205. (SELECT COUNT( DISTINCT h.user_id ) FROM cygx_article_history_record AS h WHERE h.article_id = a.article_id ) AS uv
  206. FROM
  207. cygx_report_mapping AS m
  208. INNER JOIN cygx_article AS a ON a.category_id = m.category_id
  209. WHERE
  210. m.chart_permission_id = ?
  211. and a.is_class= 1
  212. and a.is_report= 1
  213. and m.id !=28
  214. and a.is_filter= 0
  215. GROUP BY a.article_id`
  216. _, err = o.Raw(sql, chartPermissionId).QueryRows(&items)
  217. return
  218. }
  219. // 获取报表
  220. func GetStatisticalReportArtilceExpert() (items []*ReportMappingStatistical, err error) {
  221. o := orm.NewOrm()
  222. sql := `SELECT
  223. a.article_id,
  224. a.title,
  225. a.is_summary,
  226. a.is_class,
  227. (SELECT count( 1 ) FROM cygx_article_history_record AS h WHERE h.article_id = a.article_id ) AS pv,
  228. (SELECT COUNT( DISTINCT h.user_id ) FROM cygx_article_history_record AS h WHERE h.article_id = a.article_id ) AS uv
  229. FROM
  230. cygx_article AS a
  231. WHERE
  232. a.category_name LIKE '%研选%'`
  233. _, err = o.Raw(sql).QueryRows(&items)
  234. return
  235. }
  236. // 通过分类ID获取详情 处理路演精华的映射
  237. func GetdetailByCategoryIdLyjh(categoryId int) (item *ReportMapping, err error) {
  238. o := orm.NewOrm()
  239. sql := `SELECT
  240. *
  241. FROM
  242. cygx_report_mapping
  243. WHERE
  244. sub_category_name = '路演精华'
  245. AND chart_permission_id = ( SELECT chart_permission_id FROM cygx_report_mapping WHERE category_id = ? )
  246. LIMIT 1 `
  247. err = o.Raw(sql, categoryId).QueryRow(&item)
  248. return
  249. }
  250. // 获取分类
  251. func GetReportMappingList(condition string, pars []interface{}) (items []*ReportMapping, err error) {
  252. o := orm.NewOrm()
  253. sql := `SELECT * FROM cygx_report_mapping WHERE 1=1 `
  254. if condition != `` {
  255. sql += condition
  256. }
  257. _, err = o.Raw(sql, pars).QueryRows(&items)
  258. return
  259. }
  260. // 获取所有的报告分类
  261. func GetReportMappingByPermissionName(chartPermissionName string) (items []*ReportMapping, err error) {
  262. o := orm.NewOrm()
  263. sql := `SELECT
  264. *
  265. FROM
  266. cygx_report_mapping
  267. WHERE
  268. 1 = 1
  269. AND chart_permission_name = ? `
  270. _, err = o.Raw(sql, chartPermissionName).QueryRows(&items)
  271. return
  272. }
  273. // 获取所有的报告分类
  274. func GetReportMapping() (items []*CygxReportMapping, err error) {
  275. o := orm.NewOrm()
  276. sql := `SELECT
  277. *
  278. FROM
  279. cygx_report_mapping `
  280. _, err = o.Raw(sql).QueryRows(&items)
  281. return
  282. }