report.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package controllers
  2. import (
  3. "eta/eta_mini_api/models"
  4. "eta/eta_mini_api/services"
  5. )
  6. type ReportController struct {
  7. BaseAuthController
  8. }
  9. // @Title 日评详情
  10. // @Description 日评详情接口
  11. // @Param ReportId query int true "报告id"
  12. // @Success 200 {object} models.ReportDetailResp
  13. // @router /detail [get]
  14. func (this *ReportController) Detail() {
  15. br := new(models.BaseResponse).Init()
  16. defer func() {
  17. this.Data["json"] = br
  18. this.ServeJSON()
  19. }()
  20. reportId, _ := this.GetInt("ReportId")
  21. if reportId <= 0 {
  22. br.Msg = "报告不存在"
  23. return
  24. }
  25. result, err := services.GetReportDetail(reportId)
  26. if err != nil {
  27. br.Msg = "查询报告详情失败"
  28. br.ErrMsg = "查询报告失败,系统异常,Err:" + err.Error()
  29. return
  30. }
  31. if result.Ret != 200 {
  32. br.Msg = "查询报告详情失败"
  33. br.ErrMsg = result.ErrMsg
  34. return
  35. }
  36. br.Msg = "查询成功"
  37. br.Success = true
  38. br.Ret = 200
  39. br.Data = result
  40. }
  41. // @Title 研报列表
  42. // @Description 研报列表
  43. // @Param ReportId query int true "报告id"
  44. // @Param chartPermissionId query int true "品种ID"
  45. // @Param PageSize query int true "每页数据条数"
  46. // @Param CurrentIndex query int true "当前页页码,从1开始"
  47. // @Success 200 {object} models.ReportDetailResp
  48. // @router /list [get]
  49. func (this *ReportController) List() {
  50. br := new(models.BaseResponse).Init()
  51. defer func() {
  52. this.Data["json"] = br
  53. this.ServeJSON()
  54. }()
  55. pageSize, _ := this.GetInt("PageSize")
  56. currentIndex, _ := this.GetInt("CurrentIndex")
  57. chartPermissionId, _ := this.GetInt("ChartPermissionId")
  58. reports, err := services.GetReportList(chartPermissionId, currentIndex, pageSize)
  59. if err != nil {
  60. br.Msg = "研报列表查询失败"
  61. br.ErrMsg = "研报列表查询失败,系统异常,Err:" + err.Error()
  62. return
  63. }
  64. br.Data = reports.Data
  65. br.Msg = "查询成功"
  66. br.Ret = 200
  67. br.Success = true
  68. }
  69. // @Title 研报列表
  70. // @Description 研报列表
  71. // @Param ReportId query int true "报告id"
  72. // @Param chartPermissionId query int true "品种ID"
  73. // @Param PageSize query int true "每页数据条数"
  74. // @Param CurrentIndex query int true "当前页页码,从1开始"
  75. // @Success 200 {object} models.ReportDetailResp
  76. // @router /daily/list [get]
  77. func (this *ReportController) DailyList() {
  78. br := new(models.BaseResponse).Init()
  79. defer func() {
  80. this.Data["json"] = br
  81. this.ServeJSON()
  82. }()
  83. pageSize, _ := this.GetInt("PageSize")
  84. currentIndex, _ := this.GetInt("CurrentIndex")
  85. reports, err := services.GetReportDailyList(currentIndex, pageSize)
  86. if err != nil {
  87. br.Msg = "研报列表查询失败"
  88. br.ErrMsg = "研报列表查询失败,系统异常,Err:" + err.Error()
  89. return
  90. }
  91. br.Data = reports.Data
  92. br.Msg = "查询成功"
  93. br.Ret = 200
  94. br.Success = true
  95. }