Sin descripción

FKWantBuyRequest.h 916B

123456789101112131415161718192021222324252627282930
  1. //
  2. // FKWantBuyRequest.h
  3. // FirstLink
  4. //
  5. // Created by 施昌鹏 on 16/8/18.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. extern const int REQ_WANT_BUY_DETAIL_IDENTIFY;
  10. extern const int REQ_WANT_BUY_NEXT_PAGE;
  11. extern const int REQ_WANT_BUY_RETURN_DATA;
  12. extern const int REQ_WANT_BUY_DELETE_DATA;
  13. @interface FKWantBuyRequest : NSObject
  14. +(void)reqWantBuyDetailWithStartRow:(NSInteger)startRow
  15. identify:(int)identify
  16. delegate:(id<FLNetworkDelegate>)delegate;
  17. +(void)reqWantBuyWithUrl:(NSString *)url
  18. identify:(int)identify
  19. delegate:(id<FLNetworkDelegate>)delegate
  20. userInfo:(NSDictionary *)userInfo;
  21. +(void)reqWantBuyDeleteWithUrl:(NSString *)url
  22. identify:(int)identify
  23. delegate:(id<FLNetworkDelegate>)delegate;
  24. @end