dao.go 814 B

1234567891011121314151617181920212223242526272829303132333435
  1. package usersuit
  2. import (
  3. "go-common/app/interface/main/account/conf"
  4. bm "go-common/library/net/http/blademaster"
  5. )
  6. // Dao struct.
  7. type Dao struct {
  8. c *conf.Config
  9. http *bm.Client
  10. orderURL string
  11. orderHistory string
  12. groupURL string
  13. entryGroupURL string
  14. vipGroupURL string
  15. pendantURL string
  16. packageURL string
  17. }
  18. // New new a Dao
  19. func New(c *conf.Config) (d *Dao) {
  20. d = &Dao{
  21. c: c,
  22. http: bm.NewClient(c.HTTPClient.Normal),
  23. groupURL: c.Host.API + _groupInfo,
  24. orderURL: c.Host.API + _orderInfo,
  25. orderHistory: c.Host.API + _orderHistory,
  26. entryGroupURL: c.Host.API + _entryGroup,
  27. vipGroupURL: c.Host.API + _vipGroup,
  28. pendantURL: c.Host.API + _pendantInfo,
  29. packageURL: c.Host.API + _packageInfo,
  30. }
  31. return
  32. }