report_selection_subject_history.go 1018 B

123456789101112131415161718192021222324252627282930
  1. package cygx
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "time"
  5. )
  6. type CygxReportSelectionSubjectHistory struct {
  7. Id int `orm:"column(id);pk"`
  8. ArticleId int `description:"文章ID"`
  9. UserId int `description:"用户ID"`
  10. CreateTime time.Time `description:"创建时间"`
  11. ModifyTime time.Time `description:"修改时间"`
  12. Mobile string `description:"手机号"`
  13. Email string `description:"邮箱"`
  14. CompanyId int `description:"公司id"`
  15. CompanyName string `description:"公司名称"`
  16. IndustrialSubjectId string `description:"标的ID"`
  17. }
  18. // 列表
  19. func GetCygxReportSelectionSubjectHistoryList(articleId int) (items []*CygxReportSelectionSubjectHistory, err error) {
  20. o := orm.NewOrmUsingDB("hz_cygx")
  21. sql := `SELECT *
  22. FROM
  23. cygx_report_selection_subject_history AS l
  24. WHERE l.article_id = ? `
  25. _, err = o.Raw(sql, articleId).QueryRows(&items)
  26. return
  27. }