enter.go 450 B

1234567891011121314151617
  1. package crm
  2. import "server/service"
  3. type ApiGroup struct {
  4. CustomerApi
  5. CustomerGenreApi
  6. ProgressApi
  7. DemandApi
  8. }
  9. var (
  10. customerService = service.ServiceGroupApp.CRMServiceGroup.CustomerService
  11. customerGenreService = service.ServiceGroupApp.CRMServiceGroup.CustomerGenreService
  12. progressService = service.ServiceGroupApp.CRMServiceGroup.ProgressService
  13. demandService = service.ServiceGroupApp.CRMServiceGroup.DemandService
  14. )