暫無描述

FKTopicRequest.h 887B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // FKTopicRequest.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/10/12.
  6. // Copyright © 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #define TOPIC_LIST_REQ 2000
  10. #define TOPIC_LIST_MORE_REQ 2001
  11. @interface FKTopicRequest : NSObject
  12. + (void)requestTopicListWithTopicId:(NSString *)topicId
  13. startRow:(NSUInteger)startRow
  14. pageSize:(NSUInteger)pageSize
  15. updateTime:(NSString *)updateTime
  16. deleagate:(id<FLNetworkDelegate>)delegate;
  17. + (void)requestRelatedTopicList:(int)identify
  18. topicID:(NSString *)topicID
  19. deleagate:(id<FLNetworkDelegate>)delegate;
  20. + (void)requestShareTarget:(int)identify
  21. topicID:(NSString *)topicID
  22. deleagate:(id<FLNetworkDelegate>)delegate;
  23. @end