enter.go 361 B

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