protocol.go 916 B

123456789101112131415161718192021222324252627
  1. package like
  2. import (
  3. "context"
  4. lmdl "go-common/app/interface/main/activity/model/like"
  5. "go-common/library/database/sql"
  6. "go-common/library/log"
  7. )
  8. const (
  9. _actProtocolSQL = "select id,sid,protocol,mtime,ctime,types,tags,pubtime,deltime,editime,hot,bgm_id,paster_id,oids,screen_set from act_subject_protocol where sid = ? limit 1"
  10. )
  11. // RawActSubjectProtocol .
  12. func (dao *Dao) RawActSubjectProtocol(c context.Context, sid int64) (res *lmdl.ActSubjectProtocol, err error) {
  13. row := dao.db.QueryRow(c, _actProtocolSQL, sid)
  14. res = new(lmdl.ActSubjectProtocol)
  15. if err = row.Scan(&res.ID, &res.Sid, &res.Protocol, &res.Mtime, &res.Ctime, &res.Types, &res.Tags, &res.Pubtime, &res.Deltime, &res.Editime, &res.Hot, &res.BgmID, &res.PasterID, &res.Oids, &res.ScreenSet); err != nil {
  16. if err == sql.ErrNoRows {
  17. err = nil
  18. } else {
  19. log.Error("RawActSubjectProtocol:row.Scan error(%v)", err)
  20. }
  21. }
  22. return
  23. }