outside_report_attachment.go 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // @Author gmy 2024/9/19 15:13:00
  2. package models
  3. import (
  4. "eta/eta_report/global"
  5. "github.com/beego/beego/v2/client/orm"
  6. )
  7. type OutsideReportAttachment struct {
  8. //OutsideReportAttachmentId int `orm:"column(outside_report_attachment_id);pk" description:"外部报告附件ID"`
  9. OutsideReportAttachmentId int `gorm:"column:outside_report_attachment_id;primaryKey" description:"外部报告附件ID"`
  10. OutsideReportId int `orm:"column(outside_report_id)" description:"报告id"`
  11. Title string `orm:"column(title)" description:"附件名称"`
  12. Url string `orm:"column(url)" description:"附件地址"`
  13. CreateTime string `orm:"column(create_time)" description:"附件新增时间"`
  14. FileSize int64 `orm:"column(file_size)" description:"附件大小"`
  15. }
  16. // 在 init 函数中注册模型
  17. func init() {
  18. orm.RegisterModel(new(OutsideReportAttachment))
  19. }
  20. // GetOutsideReportAttachmentListByReportId 根据报告id获取附件列表
  21. func GetOutsideReportAttachmentListByReportId(outsideReportId int) (attachmentList []*OutsideReportAttachment, err error) {
  22. //o := orm.NewOrm()
  23. // 改写成通过ql查询
  24. sql := `select * from outside_report_attachment where outside_report_id = ?`
  25. //_, err = o.Raw(sql, outsideReportId).QueryRows(&attachmentList)
  26. err = global.DEFAULT_DB.Raw(sql, outsideReportId).Find(&attachmentList).Error
  27. if err != nil {
  28. return nil, err
  29. }
  30. return attachmentList, nil
  31. }