report_pdf.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package models
  2. import (
  3. "time"
  4. "github.com/beego/beego/v2/client/orm"
  5. )
  6. type ReportPdf struct {
  7. ReportPdfId int `orm:"pk" description:"id"`
  8. PdfUrl string `description:"pdf文件URL"`
  9. Title string `description:"pdf文件标题"`
  10. Author string `description:"作者"`
  11. Abstract string `description:"摘要"`
  12. ClassifyIdFirst int `description:"一级分类id"`
  13. ClassifyNameFirst string `description:"一级分类名称"`
  14. ClassifyIdSecond int `description:"二级分类id"`
  15. ClassifyNameSecond string `description:"二级分类名称"`
  16. Stage int `description:"期数"`
  17. PublishTime time.Time `description:"发布时间"`
  18. ModifyTime time.Time `description:"更新时间"`
  19. Pv int `description:"pv"`
  20. Uv int `description:"uv"`
  21. SysUserId int `description:"创建人id"`
  22. SysRealName string `description:"创建人姓名"`
  23. State int `description:"状态:1-已发布;2-未发布"`
  24. }
  25. type ReportPdfView struct {
  26. ReportPdfId int `orm:"pk" description:"id"`
  27. PdfUrl string `description:"pdf文件URL"`
  28. Title string `description:"pdf文件标题"`
  29. Author string `description:"作者"`
  30. Abstract string `description:"摘要"`
  31. ClassifyIdFirst int `description:"一级分类id"`
  32. ClassifyNameFirst string `description:"一级分类名称"`
  33. ClassifyIdSecond int `description:"二级分类id"`
  34. ClassifyNameSecond string `description:"二级分类名称"`
  35. Stage int `description:"期数"`
  36. PublishTime time.Time `description:"发布时间"`
  37. ModifyTime time.Time `description:"更新时间"`
  38. Pv int `description:"pv"`
  39. Uv int `description:"uv"`
  40. SysUserId int `description:"创建人id"`
  41. SysRealName string `description:"创建人姓名"`
  42. State int `description:"状态:1-已发布;2-未发布"`
  43. IsPublic bool `description:"是否公开"`
  44. IsCollect bool `description:"是否收藏"`
  45. }
  46. func GetReportPdfListByCondition(condition string, pars []interface{}, startSize, pageSize int) (reportPdfs []*ReportPdf, err error) {
  47. o := orm.NewOrm()
  48. sql := `SELECT * FROM report_pdf WHERE 1=1 `
  49. if condition != "" {
  50. sql += condition
  51. }
  52. sql += ` ORDER BY publish_time DESC LIMIT ?,?`
  53. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&reportPdfs)
  54. return
  55. }
  56. func GetReportPdfDailyList() (reportPdfs []*ReportPdf, err error) {
  57. o := orm.NewOrm()
  58. sql := `SELECT * FROM report_pdf WHERE 1=1 AND state=1 AND DATE(publish_time) = DATE(NOW()) ORDER BY publish_time DESC `
  59. _, err = o.Raw(sql).QueryRows(&reportPdfs)
  60. return
  61. }
  62. func GetReportPdfCountByCondition(condition string, pars []interface{}) (count int, err error) {
  63. o := orm.NewOrm()
  64. sql := `SELECT COUNT(*) AS count FROM report_pdf WHERE 1=1 `
  65. if condition != "" {
  66. sql += condition
  67. }
  68. err = o.Raw(sql, pars).QueryRow(&count)
  69. return
  70. }
  71. func GetReportPdfCountById(id int) (count int, err error) {
  72. o := orm.NewOrm()
  73. sql := `SELECT COUNT(*) AS count FROM report_pdf WHERE report_pdf_id = ? `
  74. err = o.Raw(sql, id).QueryRow(&count)
  75. return
  76. }
  77. func GetReportPdfById(id int) (item *ReportPdfView, err error) {
  78. o := orm.NewOrm()
  79. sql := `SELECT * FROM report_pdf WHERE report_pdf_id = ? `
  80. err = o.Raw(sql, id).QueryRow(&item)
  81. return
  82. }
  83. // 更新pv
  84. func UpdateReportPdfPv(id int) (err error) {
  85. o := orm.NewOrm()
  86. sql := `UPDATE report_pdf SET pv = pv + 1 WHERE report_pdf_id = ?`
  87. _, err = o.Raw(sql, id).Exec()
  88. return
  89. }
  90. // 更新uv和pv
  91. func UpdateReportPdfUvAndPv(id int) (err error) {
  92. o := orm.NewOrm()
  93. sql := `UPDATE report_pdf SET uv = uv + 1, pv = pv + 1 WHERE report_pdf_id = ?`
  94. _, err = o.Raw(sql, id).Exec()
  95. return
  96. }