1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // FKCirDetailRequest.h
- // FirstLink
- //
- // Created by jack on 16/6/16.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKCirDetailRequest : NSObject
- + (void)reqCirDetailWithID:(NSString *)shareId
- identify:(int)identify
- delegate:(id <FLNetworkDelegate>)delegate;
- + (void)reqCirRelativeListWithID:(NSString *)shareId
- startRow:(NSUInteger)startRow
- identify:(int)identify
- delegate:(id <FLNetworkDelegate>)delegate;
- + (void)reqCommentWithID:(NSString *)shareId
- replyToUserID:(NSString *)replyToUserID
- content:(NSString *)content
- identify:(int)identify
- delegate:(id <FLNetworkDelegate>)delegate;
- + (void)reqRmoveCommentWithID:(NSString *)commentID
- identify:(int)identify
- delegate:(id <FLNetworkDelegate>)delegate;
- + (void)reqLike:(BOOL)like
- identify:(int)identify
- itemID:(NSString *)itemID
- delegate:(id <FLNetworkDelegate>)delegate;
- + (void)reqShareUrlWithIdentify:(int)identify
- shareID:(NSString *)shareID
- deleagate:(id<FLNetworkDelegate>)delegate;
- @end
|