100% 完成需求

This commit is contained in:
edwinQQQ
2024-12-18 17:12:03 +08:00
parent e82939f767
commit a0b2dea116
50 changed files with 1301 additions and 360 deletions

View File

@@ -92,6 +92,8 @@ NS_ASSUME_NONNULL_BEGIN
//联系客服
+(void)requestContactCustomerServiceCompletion:(HttpRequestHelperCompletion)completion;
+ (void)requestAllRegionInfoCompletion:(HttpRequestHelperCompletion)completion;
@end
NS_ASSUME_NONNULL_END

View File

@@ -140,4 +140,8 @@
[self makeRequest:@"charge/guide/contact" method:HttpRequestHelperMethodGET completion:completion, __FUNCTION__, nil];
}
+ (void)requestAllRegionInfoCompletion:(HttpRequestHelperCompletion)completion {
[self makeRequest:@"regionInfo/listAll" method:HttpRequestHelperMethodGET completion:completion, __FUNCTION__, nil];
}
@end