No Description

FKBookRequest.h 763B

123456789101112131415161718192021222324252627
  1. //
  2. // FKBookRequest.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/4/28.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKBookRequest : NSObject
  10. + (void)reqBookListWithIdentify:(int)identify
  11. brandID:(NSString *)brandID
  12. startRow:(NSUInteger)startRow
  13. serveTime:(NSString *)serveTime
  14. delegate:(id<FLNetworkDelegate>)delegate;
  15. + (void)reqRecBookListWithIdentify:(int)identify
  16. delegate:(id<FLNetworkDelegate>)delegate;
  17. + (void)reqBookBrand:(NSString *)brandID
  18. isCancel:(BOOL)cancel
  19. identify:(int)identify
  20. delegate:(id<FLNetworkDelegate>)delegate;
  21. @end