12345678910111213141516171819202122 |
- //
- // FKCollectRequest.h
- // FirstLink
- //
- // Created by ascii on 15/10/15.
- // Copyright © 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #define REQUEST_LIST 1
- #define REQUEST_NEXT_PAGE 2
- @interface FKCollectRequest : NSObject
- + (void)requestItems:(int)identify
- startRow:(NSString *)startRow
- pageSize:(NSString *)pageSize
- deleagate:(id<FLNetworkDelegate>)delegate;
- @end
|