resource_data.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. "time"
  6. )
  7. type CygxResourceData struct {
  8. Id int `orm:"column(id);pk"`
  9. SourceId int `description:"资源ID"`
  10. Source string `description:"资源类型 报告 :article 、图表 :newchart、微路演 :roadshow、活动 :activity、活动视频:activityvideo、活动音频:activityvoice、专项调研活动:activityspecial"`
  11. Title string `description:"标题"`
  12. Annotation string `description:"核心观点"`
  13. CreateTime time.Time `description:"创建时间"`
  14. PublishDate string `description:"发布时间"`
  15. Abstract string `description:"摘要"`
  16. }
  17. type CygxResourceDataResp struct {
  18. Id int `orm:"column(id);pk"`
  19. BodyHighlight []string `description:"搜索高亮展示结果"`
  20. IsSummary int `description:"是否是纪要"`
  21. SourceId int `description:"资源ID"`
  22. Source string `description:"资源类型 报告 :article 、图表 :newchart、微路演 :roadshow、活动 :activity、活动视频:activityvideo、活动音频:activityvoice、专项调研活动:activityspecial"`
  23. PublishDate string `description:"发布时间"`
  24. Article *HomeArticle `description:"文章"`
  25. Newchart *HomeChartListResp `description:"图表"`
  26. Roadshow *MicroRoadShowPageList `description:"微路演"`
  27. Activity *ActivityDetail `description:"活动"`
  28. Activityvideo *MicroRoadShowPageList `description:"活动视频"`
  29. Activityvoice *MicroRoadShowPageList `description:"活动音频"`
  30. Activityspecial *CygxActivitySpecialDetail `description:"专项调研活动"`
  31. Researchsummary *CygxReportSelectionRep `description:"本周研究汇总"`
  32. Minutessummary *CygxReportSelectionRep `description:"上周纪要汇总"`
  33. Meetingreviewchapt *CygxMorningMeetingGatherDetailListResp `description:"晨会精华"`
  34. ProductInterior *CygxProductInteriorResp `description:"产品内测"`
  35. IndustrialResource *IndustrialManagementHotResp `description:"产业资源包"`
  36. ReportSelection *CygxReportSelectionRep `description:"重点公司(原报告精选)"`
  37. }
  38. // Source string `description:"资源类型 报告 :article 、图表 :newchart、微路演 :roadshow、活动 :activity、活动视频:activityvideo、活动音频:activityvoice、专项调研活动:activityspecial"`
  39. type HomeResourceDataListResp struct {
  40. Paging *paging.PagingItem
  41. List []*CygxResourceDataResp `description:"列表"`
  42. }
  43. // 列表
  44. func GetResourceDataList(condition string, pars []interface{}, startSize, pageSize int) (items []*CygxResourceData, err error) {
  45. o := orm.NewOrm()
  46. sql := `SELECT * FROM cygx_resource_data WHERE 1= 1 `
  47. if condition != "" {
  48. sql += condition
  49. }
  50. sql += ` ORDER BY publish_date DESC , id DESC LIMIT ?,? `
  51. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  52. return
  53. }
  54. // 获取用户报名成功数量
  55. func GetResourceDataCount(condition string, pars []interface{}) (count int, err error) {
  56. sqlCount := `SELECT COUNT(1) AS count FROM cygx_resource_data WHERE 1= 1 ` + condition
  57. o := orm.NewOrm()
  58. err = o.Raw(sqlCount, pars).QueryRow(&count)
  59. return
  60. }
  61. // 添加
  62. func AddCygxResourceData(item *CygxResourceData) (lastId int64, err error) {
  63. o := orm.NewOrm()
  64. lastId, err = o.Insert(item)
  65. return
  66. }
  67. // 删除数据
  68. func DeleteResourceData(sourceId int, source string) (err error) {
  69. o := orm.NewOrm()
  70. sql := ` DELETE FROM cygx_resource_data WHERE source_id = ? AND source =? `
  71. _, err = o.Raw(sql, sourceId, source).Exec()
  72. return
  73. }
  74. // 修改数据
  75. func UpdateResourceData(sourceId int, source, publishDate string) (err error) {
  76. o := orm.NewOrm()
  77. sql := `UPDATE cygx_resource_data SET publish_date=? WHERE source_id=? AND source =? `
  78. _, err = o.Raw(sql, publishDate, sourceId, source).Exec()
  79. return
  80. }
  81. // 批量删除
  82. func DeleteResourceDataList(condition string, pars []interface{}) (err error) {
  83. if condition == "" {
  84. return
  85. }
  86. o := orm.NewOrm()
  87. sql := `DELETE FROM cygx_resource_data WHERE 1=1 ` + condition
  88. _, err = o.Raw(sql, pars).Exec()
  89. return
  90. }