report.go 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. package report
  2. import (
  3. "hongze/hongze_open_api/models/tables/rddp/classify"
  4. "hongze/hongze_open_api/models/tables/rddp/report"
  5. "hongze/hongze_open_api/utils"
  6. "time"
  7. )
  8. // PermissionCheckInfo 权限校验完成后的结果
  9. type PermissionCheckInfo struct {
  10. Name string `json:"name" description:"销售名称"`
  11. Mobile string `json:"mobile" description:"手机号"`
  12. Type string `json:"type" description:"校验失败,没有权限,需要让前端处理的类型,枚举值:apply,contact"`
  13. HzPhone string `json:"hz_phone" description:"弘则公司电话"`
  14. CustomerInfo CustomerInfo `json:"customer_info" description:"客户信息"`
  15. }
  16. // CustomerInfo 客户信息
  17. type CustomerInfo struct {
  18. CompanyName string `json:"company_name" description:"客户(公司)名称"`
  19. Name string `json:"name" description:"联系人名称"`
  20. Mobile string `json:"mobile" description:"手机号"`
  21. Status string `json:"status" description:"状态"`
  22. IsSuspend int `json:"is_suspend" description:"启用与否字段:1:暂停,0:启用"`
  23. HasApply bool `json:"has_apply" description:"是否有申请过"`
  24. }
  25. // ReportClassifyListResp 分类列表接口
  26. type ReportClassifyListResp struct {
  27. List []*classify.ClassifyList `description:"列表" json:"list"`
  28. }
  29. // ReportListResp 报告列表接口
  30. type ReportListResp struct {
  31. List []*report.ReportList `description:"列表" json:"list"`
  32. Paging *utils.PagingItem `description:"分页数据" json:"paging"`
  33. }
  34. type ReportChapterList []*ReportChapterListItem
  35. func (r ReportChapterList) Len() int {
  36. return len(r)
  37. }
  38. func (r ReportChapterList) Less(i, j int) bool {
  39. return r[i].Sort < r[j].Sort
  40. }
  41. func (r ReportChapterList) Swap(i, j int) {
  42. r[i], r[j] = r[j], r[i]
  43. }
  44. // ReportDetail 报告详情
  45. type ReportDetail struct {
  46. ReportInfo ReportItem `json:"report_info"`
  47. ReportChapterList []*ReportChapterListItem `json:"report_chapter_list"`
  48. PermissionCheck PermissionCheckInfo `json:"permission_check"`
  49. AuthOk bool `json:"auth_ok"`
  50. LikeNum int64 `description:"点赞总数" json:"-"`
  51. LikeEnabled int8 `description:"是否已点赞: 0-未点赞 1-已点赞" json:"-"`
  52. ReportShowType int `descritpion:"展示形式:1-列表 2-专栏" json:"report_show_type"`
  53. }
  54. // ReportItem 报告详情返回数据
  55. type ReportItem struct {
  56. ReportId int `json:"report_id"`
  57. ClassifyNameFirst string `description:"一级分类名称" json:"classify_name_first"`
  58. ClassifyNameSecond string `description:"二级分类名称" json:"classify_name_second"`
  59. Title string `description:"标题" json:"title"`
  60. Abstract string `description:"摘要" json:"abstract"`
  61. Author string `description:"作者" json:"author"`
  62. Frequency string `description:"频度" json:"frequency"`
  63. PublishTime time.Time `description:"发布时间" json:"publish_time"`
  64. Stage int `description:"期数" json:"stage"`
  65. Content string `description:"内容" json:"content"`
  66. VideoUrl string `description:"音频文件URL" json:"video_url"`
  67. VideoName string `description:"音频文件名称" json:"video_name"`
  68. VideoSize string `description:"音频文件大小,单位M" json:"video_size"`
  69. VideoPlaySeconds string `description:"音频播放时长" json:"video_play_seconds"`
  70. VideoImg string `description:"音频播放条的图片" json:"video_img"`
  71. ContentSub string `description:"内容前两个章节" json:"content_sub"`
  72. BannerUrl string `description:"详情页banner" json:"banner_url"`
  73. }
  74. // ReportChapterListItem 报告详情章节返回结构体
  75. type ReportChapterListItem struct {
  76. ReportChapterId int `json:"report_chapter_id"`
  77. ReportId int `json:"report_id"`
  78. Title string `json:"title"`
  79. TypeId int `json:"type_id"`
  80. TypeName string `json:"type_name"`
  81. Trend string `json:"trend"`
  82. ReportChapterTypeKey string `json:"report_chapter_type_key"`
  83. ReportChapterTypeThumb string `json:"report_chapter_type_thumb"`
  84. ReportChapterTypeName string `json:"report_chapter_type_name"`
  85. Sort int `json:"sort"`
  86. PublishTime time.Time `json:"publish_time"`
  87. HttpUrl string `json:"http_url"`
  88. }
  89. // ReportChapterDetail 报告章节详情
  90. type ReportChapterDetail struct {
  91. ReportChapterItem ReportChapterItem `json:"report_chapter_item"`
  92. PermissionCheck PermissionCheckInfo `json:"permission_check"`
  93. ReportChapterMenuList []ReportChapterMenu `json:"report_chapter_menu_list"`
  94. AuthOk bool `json:"auth_ok"`
  95. TickerDataParams string `json:"ticker_data_param" description:"指标数据参数"`
  96. LikeNum int64 `description:"点赞总数" json:"-"`
  97. LikeEnabled int8 `description:"是否已点赞: 0-未点赞 1-已点赞" json:"-"`
  98. }
  99. // ReportChapterMenu 报告章节里面的菜单
  100. type ReportChapterMenu struct {
  101. ReportChapterId int `json:"report_chapter_id"`
  102. ReportId int `json:"report_id"`
  103. ReportChapterTypeName string `json:"report_chapter_type_name"`
  104. ReportChapterTypeThumb string `json:"report_chapter_type_thumb"`
  105. PcSelectedThumb string `json:"pc_selected_thumb"`
  106. PcUnselectedThumb string `json:"pc_unselected_thumb"`
  107. Sort int `json:"sort"`
  108. HttpUrl string `json:"http_url"`
  109. }
  110. // ReportChapterItem 报告章节详情
  111. type ReportChapterItem struct {
  112. ReportChapterId int `json:"report_chapter_id"`
  113. ReportId int `json:"report_id"`
  114. Title string `json:"title"`
  115. Abstract string `json:"abstract"`
  116. TypeId int `json:"type_id"`
  117. TypeName string `json:"type_name"`
  118. Trend string `json:"trend"`
  119. ReportChapterTypeName string `json:"report_chapter_type_name"`
  120. PublishTime time.Time `json:"publish_time"`
  121. Content string `description:"内容" json:"content"`
  122. ContentSub string `description:"内容前两个章节" json:"content_sub"`
  123. VideoUrl string `json:"video_url"` //音频文件URL
  124. VideoName string `json:"video_name"` //音频文件名称
  125. VideoPlaySeconds string `json:"video_play_seconds"` //音频播放时长
  126. VideoSize string `json:"video_size"`
  127. VideoImg string `description:"音频播放条的图片" json:"video_img"`
  128. Author string `description:"作者" json:"author"`
  129. Stage int `description:"期数" json:"stage"`
  130. ClassifyIdFirst int `description:"一级分类id" json:"classify_id_first"`
  131. ClassifyNameFirst string `description:"一级分类名称" json:"classify_name_first"`
  132. }
  133. type ReportChapterMenuList []ReportChapterMenu
  134. func (rc ReportChapterMenuList) Len() int {
  135. return len(rc)
  136. }
  137. func (rc ReportChapterMenuList) Less(i, j int) bool {
  138. return rc[i].Sort < rc[j].Sort
  139. }
  140. func (rc ReportChapterMenuList) Swap(i, j int) {
  141. rc[i], rc[j] = rc[j], rc[i]
  142. }
  143. // TickerDataItem 指标数据
  144. type TickerDataItem struct {
  145. Date string `json:"date"`
  146. Ticker string `json:"ticker"`
  147. BaseColumnName string `json:"base_column_name"`
  148. TickerValue float64 `json:"ticker_value"`
  149. LastValue float64 `json:"last_value"`
  150. DdValue float64 `json:"dd_value"`
  151. WwValue float64 `json:"ww_value"`
  152. MmValue float64 `json:"mm_value"`
  153. }
  154. // TickerTitleData 指标标题数据
  155. type TickerTitleData struct {
  156. TickerTitle string `json:"ticker_title"`
  157. ReportChapterTypeId int `json:"report_chapter_type_id"`
  158. ReportChapterTypeName string `json:"report_chapter_type_name"`
  159. DataTableImage string `json:"data_table_image"`
  160. }
  161. // TickerData 指标数据返回
  162. type TickerData struct {
  163. List []TickerDataItem `json:"list"`
  164. TickerTitle TickerTitleData `json:"ticker_title"`
  165. }