123456789101112131415161718192021222324252627 |
- //
- // FKBookRequest.h
- // FirstLink
- //
- // Created by jack on 16/4/28.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKBookRequest : NSObject
- + (void)reqBookListWithIdentify:(int)identify
- brandID:(NSString *)brandID
- startRow:(NSUInteger)startRow
- serveTime:(NSString *)serveTime
- delegate:(id<FLNetworkDelegate>)delegate;
- + (void)reqRecBookListWithIdentify:(int)identify
- delegate:(id<FLNetworkDelegate>)delegate;
- + (void)reqBookBrand:(NSString *)brandID
- isCancel:(BOOL)cancel
- identify:(int)identify
- delegate:(id<FLNetworkDelegate>)delegate;
- @end
|