ZYLService.h 501 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // ZYLService.h
  3. // NetworkLayerBuild
  4. //
  5. // Created by 翟玉磊 on 2017/8/31.
  6. // Copyright © 2017年 翟玉磊. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "ZYLNetworkConfig.h"
  10. @interface ZYLService : NSObject
  11. + (ZYLService *)currentService;
  12. /**
  13. 切换指定环境
  14. @param environment 指定环境
  15. */
  16. + (void)switchToEnvironment:(ZYLServiceEnvironment)environment;
  17. - (NSString *)baseUrl;
  18. - (NSString *)mallBaseUrl;
  19. - (ZYLServiceEnvironment)environment;
  20. @end