enter.go 368 B

123456789101112131415
  1. package storehouse
  2. import "server/service"
  3. type ApiGroup struct {
  4. GoodsGenreApi
  5. ManifestApi
  6. GoodsApi
  7. }
  8. var (
  9. goodsGenreService = service.ServiceGroupApp.StorehouseServiceGroup.GoodsGenreService
  10. manifestService = service.ServiceGroupApp.StorehouseServiceGroup.ManifestService
  11. goodsService = service.ServiceGroupApp.StorehouseServiceGroup.GoodsService
  12. )