dao.go 857 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package appeal
  2. import (
  3. "go-common/app/interface/main/creative/conf"
  4. httpx "go-common/library/net/http/blademaster"
  5. )
  6. // Dao define
  7. type Dao struct {
  8. // config
  9. c *conf.Config
  10. // http client
  11. client *httpx.Client
  12. // appeal list
  13. list string
  14. detail string
  15. addappeal string
  16. addreply string
  17. appealstar string
  18. appealstate string
  19. appealStarInfo string
  20. }
  21. // New init dao
  22. func New(c *conf.Config) (d *Dao) {
  23. d = &Dao{
  24. c: c,
  25. // http client
  26. client: httpx.NewClient(c.HTTPClient.Normal),
  27. list: c.Host.API + _list,
  28. detail: c.Host.API + _detail,
  29. addappeal: c.Host.API + _addappeal,
  30. addreply: c.Host.API + _addreply,
  31. appealstar: c.Host.API + _appealstar,
  32. appealstate: c.Host.API + _appealstate,
  33. appealStarInfo: c.Host.API + _appealStarInfo,
  34. }
  35. return
  36. }