enter.go 519 B

123456789101112131415161718192021
  1. package service
  2. import (
  3. "server/service/admin"
  4. "server/service/crm"
  5. "server/service/example"
  6. "server/service/storehouse"
  7. "server/service/system"
  8. "server/service/workflow"
  9. )
  10. type ServiceGroup struct {
  11. SystemServiceGroup system.ServiceGroup
  12. ExampleServiceGroup example.ServiceGroup
  13. AdminServiceGroup admin.ServiceGroup
  14. WorkflowServiceGroup workflow.ServiceGroup
  15. StorehouseServiceGroup storehouse.ServiceGroup
  16. CRMServiceGroup crm.ServiceGroup
  17. }
  18. var ServiceGroupApp = new(ServiceGroup)