dao.go 555 B

123456789101112131415161718192021222324252627282930313233343536
  1. package academy
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/conf"
  5. "go-common/library/database/elastic"
  6. "go-common/library/database/sql"
  7. )
  8. // Dao define
  9. type Dao struct {
  10. c *conf.Config
  11. db *sql.DB
  12. es *elastic.Elastic
  13. }
  14. // New init dao
  15. func New(c *conf.Config) (d *Dao) {
  16. d = &Dao{
  17. c: c,
  18. db: sql.NewMySQL(c.DB.Creative),
  19. es: elastic.NewElastic(nil),
  20. }
  21. return
  22. }
  23. // Ping db
  24. func (d *Dao) Ping(c context.Context) (err error) {
  25. return d.db.Ping(c)
  26. }
  27. // Close db
  28. func (d *Dao) Close() (err error) {
  29. return d.db.Close()
  30. }