12345678910111213141516171819202122232425262728293031 |
- //
- // ZYLService.h
- // NetworkLayerBuild
- //
- // Created by 翟玉磊 on 2017/8/31.
- // Copyright © 2017年 翟玉磊. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "ZYLNetworkConfig.h"
- @interface ZYLService : NSObject
- + (ZYLService *)currentService;
- /**
- 切换指定环境
- @param environment 指定环境
- */
- + (void)switchToEnvironment:(ZYLServiceEnvironment)environment;
- - (NSString *)baseUrl;
- - (NSString *)mallBaseUrl;
- - (ZYLServiceEnvironment)environment;
- @end
|