report_selection.go 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type CygxReportSelectionRep struct {
  7. ArticleId int `orm:"column(article_id);pk"description:"报告id"`
  8. Title string `description:"标题"`
  9. Department string `description:"作者"`
  10. PublishDate string `description:"发布时间"`
  11. CreateTime string `description:"创建时间"`
  12. Abstract string `description:"摘要/更新说明"`
  13. UpdateDescription string `description:"更新说明"`
  14. IsRed bool `description:"是否标记红点"`
  15. ReadNum int `description:"阅读次数"`
  16. SubjectName string `description:"标的名称"`
  17. Periods string `description:"期数"`
  18. MarketStrategy string `description:"市场策略核心逻辑汇总"`
  19. }
  20. type CygxReportSelectionListPublicRep struct {
  21. Paging *paging.PagingItem `description:"分页数据"`
  22. List []*CygxReportSelectionRep
  23. }
  24. type DetailCygxReportSelectionRep struct {
  25. ArticleId int `description:"报告Id"`
  26. Title string `description:"标题"`
  27. Department string `description:"作者"`
  28. PublishDate string `description:"发布时间"`
  29. CreateTime string `description:"创建时间"`
  30. LastUpdatedTime string `description:"最后一次更新时间"`
  31. Periods int `description:"期数"`
  32. VideoUrl string `description:"链接"`
  33. VideoPlaySeconds string `description:"时长"`
  34. VideoName string `description:"音频名称"`
  35. ProductDescription string `description:"产品说明"`
  36. UpdateDescription string `description:"更新说明"`
  37. FocusOn string `description:"近期重点关注方向"`
  38. MarketStrategy string `description:"市场策略核心逻辑汇总"`
  39. ReportLink string `description:"报告链接"`
  40. CeLueArticleId int `description:"策略报告详情"`
  41. VisibleRange int `description:"设置可见范围1全部,0内部"`
  42. }
  43. type ReportSelectionLetailResp struct {
  44. Detail *DetailCygxReportSelectionRep
  45. HasPermission int `description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,已提交过申请,4:无该行业权限,未提交过申请,5:潜在客户,未提交过申请,6:潜在客户,已提交过申请"`
  46. List []*ReportSelectionChartPermission
  47. ListPermissionSubject []*ReportSelectionChartLogPermission `description:"行业列表"`
  48. IsShow bool `description:"是否展示"`
  49. }
  50. type ReportSelectionChartPermission struct {
  51. PermissionName string `description:"权限名称"`
  52. IcoLink string `orm:"column(image_url)"description:"图标链接"`
  53. List []*CygxReportSelectionLogDetail
  54. BodyChartSummary string `description:"行业核心逻辑汇总"`
  55. }
  56. type ReportSelectionChartLogPermission struct {
  57. PermissionName string `description:"权限名称"`
  58. ListSubject []*ReportSelectionChartLogSubjectName `description:"标的列表"`
  59. }
  60. type ReportSelectionChartLogSubjectName struct {
  61. SubjectName string `description:"标的名称"`
  62. IndustrialSubjectId int `description:"标的ID"`
  63. IsNew bool `description:"是否展示新标签"`
  64. }
  65. type CygxReportSelectionLogDetail struct {
  66. IndustrialManagementId string `description:"产业Id"`
  67. IndustrialSubjectId int `description:"标的ID"`
  68. SubjectName string `description:"标的名称"`
  69. IsNew bool `description:"是否展示新标签"`
  70. Body string `description:"内容"`
  71. CompanyLabel []string `description:"公司标签"`
  72. Label string `description:"公司标签"`
  73. OverviewArticleId int `description:"综述报告Id"`
  74. List []*IndustriaReportSelection
  75. }
  76. type IndustriaReportSelection struct {
  77. IndustrialManagementId int `description:"产业Id"`
  78. IndustryName string `description:"产业名称"`
  79. }
  80. type ReportSelectionId struct {
  81. ArticleId int `description:"报告I"`
  82. }
  83. // 获取数量
  84. func GetCygxReportSelectionPublic(condition, tbdb string, pars []interface{}) (count int, err error) {
  85. sqlCount := ` SELECT COUNT(1) AS count FROM ` + tbdb + ` as art WHERE 1= 1 AND art.publish_status = 1 `
  86. if condition != "" {
  87. sqlCount += condition
  88. }
  89. o := orm.NewOrm()
  90. err = o.Raw(sqlCount, pars).QueryRow(&count)
  91. return
  92. }
  93. // 获取数量
  94. func GetCygxReportSelectionCount(condition string, pars []interface{}) (count int, err error) {
  95. sqlCount := ` SELECT COUNT(1) AS count FROM cygx_report_selection as art WHERE 1= 1 AND art.publish_status = 1 `
  96. if condition != "" {
  97. sqlCount += condition
  98. }
  99. o := orm.NewOrm()
  100. err = o.Raw(sqlCount, pars).QueryRow(&count)
  101. return
  102. }
  103. // 列表
  104. func GetReportSelectionList(condition string, pars []interface{}, startSize, pageSize int) (items []*CygxReportSelectionRep, err error) {
  105. o := orm.NewOrm()
  106. sql := `SELECT * FROM cygx_report_selection as art WHERE 1= 1 AND art.publish_status = 1 `
  107. if condition != "" {
  108. sql += condition
  109. }
  110. sql += ` LIMIT ?,?`
  111. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  112. return
  113. }
  114. // 通过ID获取详情
  115. func GetCygxReportSelectionInfoById(articleId int) (item *DetailCygxReportSelectionRep, err error) {
  116. o := orm.NewOrm()
  117. sql := `SELECT * FROM cygx_report_selection WHERE article_id=? AND publish_status = 1 `
  118. err = o.Raw(sql, articleId).QueryRow(&item)
  119. return
  120. }
  121. // 通过期数获取详情
  122. func GetCygxReportSelectionInfoByperiods(periods int) (item *DetailCygxReportSelectionRep, err error) {
  123. o := orm.NewOrm()
  124. sql := `SELECT * FROM cygx_report_selection WHERE periods=? `
  125. err = o.Raw(sql, periods).QueryRow(&item)
  126. return
  127. }
  128. // 列表
  129. func GetReportSelectionListPublic(condition, readSql, tbdb string, pars []interface{}, startSize, pageSize int) (items []*CygxReportSelectionRep, err error) {
  130. o := orm.NewOrm()
  131. sql := `SELECT * ,` + readSql + ` FROM ` + tbdb + ` as art WHERE 1= 1 AND art.publish_status = 1 `
  132. if condition != "" {
  133. sql += condition
  134. }
  135. sql += ` ORDER BY art.publish_date DESC LIMIT ?,?`
  136. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  137. return
  138. }
  139. // 列表
  140. func GetReportSelectionListHome(condition, tbdb string, pars []interface{}, startSize, pageSize int) (items []*CygxReportSelectionRep, err error) {
  141. o := orm.NewOrm()
  142. sql := `SELECT * FROM ` + tbdb + ` as art WHERE 1= 1 AND art.publish_status = 1 `
  143. if condition != "" {
  144. sql += condition
  145. }
  146. sql += ` ORDER BY art.publish_date DESC LIMIT ?,?`
  147. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  148. return
  149. }
  150. // 列表
  151. func GetReportSelectionlogListAll(articleId int) (items []*CygxReportSelectionLog, err error) {
  152. o := orm.NewOrm()
  153. sql := `SELECT c.permission_name ,c.image_url,s.subject_name , l.* ,l.company_label as label
  154. FROM
  155. cygx_report_selection_log AS l
  156. INNER JOIN chart_permission AS c ON c.chart_permission_id = l.chart_permission_id
  157. INNER JOIN cygx_industrial_subject AS s ON s.industrial_subject_id = l.industrial_subject_id
  158. WHERE l.article_id = ? `
  159. _, err = o.Raw(sql, articleId).QueryRows(&items)
  160. return
  161. }
  162. // 列表
  163. func GetReportSelectionlogSonListAll(articleId, chartPermissionId int) (items []*CygxReportSelectionLogDetail, err error) {
  164. o := orm.NewOrm()
  165. sql := `SELECT c.permission_name , l.* ,l.company_label as label
  166. FROM
  167. cygx_report_selection_log AS l
  168. INNER JOIN chart_permission AS c ON c.chart_permission_id = l.chart_permission_id
  169. LEFT JOIN cygx_industrial_subject AS s ON s.industrial_subject_id = l.industrial_subject_id
  170. WHERE l.article_id = ? AND l.chart_permission_id =?`
  171. _, err = o.Raw(sql, articleId, chartPermissionId).QueryRows(&items)
  172. return
  173. }
  174. func GetIndustrialByIds(industrialManagementIds string) (items []*IndustriaReportSelection, err error) {
  175. o := orm.NewOrm()
  176. sql := `SELECT * FROM cygx_industrial_management WHERE industrial_management_id IN (` + industrialManagementIds + `)`
  177. _, err = o.Raw(sql).QueryRows(&items)
  178. return
  179. }
  180. type AddReportSelectionStopTimeRep struct {
  181. ArticleId int `description:"文章ID"`
  182. StopTime int `description:"停留时间"`
  183. OutType int `description:"退出方式,1正常退出,2强制关闭"`
  184. Source int `description:"来源,1:报告精选、2:本周研究汇总、3:上周纪要汇总"`
  185. }