ht_report.go 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package ht
  2. import (
  3. "eta/eta_mini_ht_api/models"
  4. "time"
  5. )
  6. const (
  7. Publish = 3
  8. )
  9. type HTReport struct {
  10. Id int `gorm:"primary_key;auto_increment"`
  11. PlateId int `grom:"plate_id"`
  12. PlateName string `gorm:"column:plate_name"`
  13. PermissionName string `gorm:"column:permission_name"`
  14. PublishUserName string `gorm:"column:publish_user_name"`
  15. ReportName string `gorm:"column:report_name"`
  16. PublishTime int `gorm:"column:publish_time"`
  17. PublishedTime string `gorm:"column:published_time"`
  18. IsDelete int `gorm:"column:is_delete"`
  19. Status int `gorm:"column:status"`
  20. }
  21. func GetHTReports(id int) (reports []HTReport, err error) {
  22. db := models.HT()
  23. sql := "select tirtp.plate_id as plate_id, tip.plate_name as plate_name, t.id as id ,t.report_name as report_name,t.publish_user_name as publish_user_name,t.publish_time as publish_time,t.is_delete as is_delete,t.status as status from t_iirp_report_to_plate tirtp left join t_iirp_report_info t on t.id=tirtp.report_id left JOIN t_iirp_plate tip on tip.id=tirtp.plate_id where t.is_delete =0 and t.`status` =3 and t.report_file_path<>'' and t.id > ? order by t.id asc"
  24. err = db.Model(&HTReport{}).Raw(sql, id).Scan(&reports).Error
  25. return
  26. }
  27. func GetUpdateHTReports() (reports []HTReport, err error) {
  28. duration := time.Now().Add(-30 * time.Second)
  29. updateTime := duration.UnixMilli()
  30. db := models.HT()
  31. sql := "select tirtp.plate_id as plate_id, tip.plate_name as plate_name, t.id as id ,t.report_name as report_name,t.publish_user_name as publish_user_name,t.publish_time as publish_time,t.is_delete as is_delete,t.status as status from t_iirp_report_to_plate tirtp left join t_iirp_report_info t on t.id=tirtp.report_id left JOIN t_iirp_plate tip on tip.id=tirtp.plate_id where t.report_file_path<>'' and t.update_time > ? order by t.id asc"
  32. err = db.Model(&HTReport{}).Raw(sql, updateTime).Scan(&reports).Error
  33. return
  34. }
  35. func GetPDFUrl(id int) (url string, err error) {
  36. db := models.HT()
  37. sql := "select report_file_path from t_iirp_report_info where id=?"
  38. err = db.Model(&HTReport{}).Raw(sql, id).Scan(&url).Error
  39. return
  40. }
  41. type HtQuery struct {
  42. Plate string
  43. Permission string
  44. }
  45. func GetHTReportIdsByPermissionIds(query []HtQuery) (ids []int, err error) {
  46. return
  47. }