123456789101112131415161718192021222324252627282930 |
- //
- // FKWantBuyRequest.h
- // FirstLink
- //
- // Created by 施昌鹏 on 16/8/18.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- extern const int REQ_WANT_BUY_DETAIL_IDENTIFY;
- extern const int REQ_WANT_BUY_NEXT_PAGE;
- extern const int REQ_WANT_BUY_RETURN_DATA;
- extern const int REQ_WANT_BUY_DELETE_DATA;
- @interface FKWantBuyRequest : NSObject
- +(void)reqWantBuyDetailWithStartRow:(NSInteger)startRow
- identify:(int)identify
- delegate:(id<FLNetworkDelegate>)delegate;
- +(void)reqWantBuyWithUrl:(NSString *)url
- identify:(int)identify
- delegate:(id<FLNetworkDelegate>)delegate
- userInfo:(NSDictionary *)userInfo;
- +(void)reqWantBuyDeleteWithUrl:(NSString *)url
- identify:(int)identify
- delegate:(id<FLNetworkDelegate>)delegate;
- @end
|