23 lines
550 B
Objective-C
Executable File
23 lines
550 B
Objective-C
Executable File
//
|
||
// AFNetworkRequset.h
|
||
// JiushiMarking
|
||
//
|
||
// Created by 小收 on 2019/8/16.
|
||
// Copyright © 2019 小收. All rights reserved.
|
||
//
|
||
|
||
#import <Foundation/Foundation.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface AFNetworkRequset : NSObject
|
||
|
||
+ (instancetype)shared;
|
||
|
||
///项目统一的网络请求,使用默认baseURL
|
||
- (void)postRequestWithParams:(nullable NSDictionary *)params Path:(NSString *)path Loading:(BOOL)loading Hud:(BOOL)showHud Success:(void(^)(id responseDic))success Failure:(void(^)(id errorData))failure;
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|