NetHttpsManager+Store.h 539 B

1234567891011121314151617181920
  1. //
  2. // NetHttpsManager+Store.h
  3. // BuguLive
  4. //
  5. // Created by qitewei on 2025/8/20.
  6. // Copyright © 2025 xfg. All rights reserved.
  7. //
  8. #import "NetHttpsManager.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NetHttpsManager (Store)
  11. - (void)storeGETWithPath:(NSString *)path SuccessBlock:(SuccessBlock)GetSuccess FailureBlock:(FailureBlock)GetFailure;
  12. - (void)storePOSTWithPath:(NSString *)path paramDict:(NSMutableDictionary *)paramDict SuccessBlock:(SuccessBlock)PostSuccess FailureBlock:(FailureBlock)PostFailure;
  13. @end
  14. NS_ASSUME_NONNULL_END