dao.go 545 B

12345678910111213141516171819202122232425262728293031
  1. package cpm
  2. import (
  3. "go-common/app/service/main/resource/conf"
  4. httpx "go-common/library/net/http/blademaster"
  5. )
  6. // Dao define db struct
  7. type Dao struct {
  8. c *conf.Config
  9. // cpt
  10. httpClient *httpx.Client
  11. cpmPCURL string
  12. cpmAppURL string
  13. }
  14. const (
  15. _cpmPCURL = "/bce/api/bce/pc"
  16. _cpmAppURL = "/bce/api/bce/wise"
  17. )
  18. // New init mysql db
  19. func New(c *conf.Config) (d *Dao) {
  20. d = &Dao{
  21. c: c,
  22. httpClient: httpx.NewClient(c.HTTPClient),
  23. cpmPCURL: c.Host.Ad + _cpmPCURL,
  24. cpmAppURL: c.Host.Ad + _cpmAppURL,
  25. }
  26. return
  27. }