base_service.go 250 B

1234567891011121314151617
  1. package service
  2. import (
  3. "go-template/business/dao"
  4. "go-template/business/third"
  5. )
  6. // dao
  7. var (
  8. reportDao = dao.NewReportPeccancyDao()
  9. )
  10. // third
  11. var (
  12. cityService = third.NewCityConfigThird()
  13. factoryService = third.NewEbikeFactoryApi()
  14. )