// // FKWantBuyRequest.h // FirstLink // // Created by 施昌鹏 on 16/8/18. // Copyright © 2016年 FirstLink. All rights reserved. // #import 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)delegate; +(void)reqWantBuyWithUrl:(NSString *)url identify:(int)identify delegate:(id)delegate userInfo:(NSDictionary *)userInfo; +(void)reqWantBuyDeleteWithUrl:(NSString *)url identify:(int)identify delegate:(id)delegate; @end