porder.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package archive
  2. import (
  3. "context"
  4. "go-common/app/service/main/videoup/model/archive"
  5. "go-common/library/database/sql"
  6. "go-common/library/log"
  7. "time"
  8. )
  9. //私单业务
  10. const (
  11. _inPorderSQL = `INSERT INTO archive_porder (aid,industry_id,brand_id,brand_name,official,show_type,show_front,advertiser,agent,state) VALUES (?,?,?,?,?,?,1,?,?,0) ON DUPLICATE KEY UPDATE industry_id=?,brand_id=?,brand_name=?,official=?,show_type=?,advertiser=?,agent=?`
  12. _selPorderSQL = `select industry_id,brand_id,brand_name,official,show_type,advertiser,agent,state from archive_porder where aid=?`
  13. _pconfigSQL = `select id, type, name from porder_config where state = 0 order by rank desc,type asc`
  14. _parcsSQL = `select aid,industry_id,brand_id,brand_name,official,show_type,advertiser,agent,state,show_front,ctime,mtime from archive_porder WHERE ctime BETWEEN ? AND ? order by id desc`
  15. )
  16. // TxUpPorder add or update archive_porder
  17. func (d *Dao) TxUpPorder(tx *sql.Tx, aid int64, ap *archive.ArcParam) (rows int64, err error) {
  18. if ap.Porder.Official == 1 {
  19. ap.Porder.BrandName = ""
  20. }
  21. res, err := tx.Exec(_inPorderSQL, aid, ap.Porder.IndustryID, ap.Porder.BrandID, ap.Porder.BrandName, ap.Porder.Official, ap.Porder.ShowType, ap.Porder.Advertiser, ap.Porder.Agent, ap.Porder.IndustryID, ap.Porder.BrandID, ap.Porder.BrandName, ap.Porder.Official, ap.Porder.ShowType, ap.Porder.Advertiser, ap.Porder.Agent)
  22. if err != nil {
  23. log.Error("d.TxUpPorder.Exec error(%v)", err)
  24. return
  25. }
  26. rows, err = res.RowsAffected()
  27. return
  28. }
  29. // Porder get archive Proder
  30. func (d *Dao) Porder(c context.Context, aid int64) (p *archive.Porder, err error) {
  31. row := d.rddb.QueryRow(c, _selPorderSQL, aid)
  32. p = &archive.Porder{}
  33. if err = row.Scan(&p.IndustryID, &p.BrandID, &p.BrandName, &p.Official, &p.ShowType, &p.Advertiser, &p.Agent, &p.State); err != nil {
  34. if err != sql.ErrNoRows {
  35. log.Error("row.Scan error(%v)", err)
  36. return
  37. }
  38. err = nil
  39. }
  40. return
  41. }
  42. // PorderCfgList fn
  43. func (d *Dao) PorderCfgList(c context.Context) (pcfgs []*archive.Pconfig, err error) {
  44. rows, err := d.rddb.Query(c, _pconfigSQL)
  45. if err != nil {
  46. log.Error("d.db.Query(%s)|error(%v)", _pconfigSQL, err)
  47. return
  48. }
  49. defer rows.Close()
  50. for rows.Next() {
  51. cfg := &archive.Pconfig{}
  52. if err = rows.Scan(&cfg.ID, &cfg.Tp, &cfg.Name); err != nil {
  53. log.Error("rows.Scan error(%v)", err)
  54. return
  55. }
  56. pcfgs = append(pcfgs, cfg)
  57. }
  58. return
  59. }
  60. // PorderArcList fn
  61. func (d *Dao) PorderArcList(c context.Context, begin, end time.Time) (res []*archive.PorderArc, err error) {
  62. res = []*archive.PorderArc{}
  63. rows, err := d.rddb.Query(c, _parcsSQL, begin, end)
  64. if err != nil {
  65. log.Error("PorderArcList error(%v)", err)
  66. return
  67. }
  68. defer rows.Close()
  69. for rows.Next() {
  70. r := &archive.PorderArc{}
  71. if err = rows.Scan(&r.AID, &r.IndustryID, &r.BrandID, &r.BrandName, &r.Official, &r.ShowType, &r.Advertiser, &r.Agent, &r.State, &r.ShowFront, &r.Ctime, &r.Mtime); err != nil {
  72. log.Error("row.Scan() error(%v)", err)
  73. res = nil
  74. return
  75. }
  76. res = append(res, r)
  77. }
  78. err = rows.Err()
  79. return
  80. }