123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- //
- // FKRecommendRequest.h
- // FirstLink
- //
- // Created by jack on 15/12/8.
- // Copyright © 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- extern const int REC_INITIAL_DATA_REQ;
- extern const int REC_MORE_DATA_REQ;
- extern const int REC_TAB_PAGE_REQ;
- extern const int REC_REQUEST_ACTIVITY_URL;
- extern const int REC_SIGN_STATE;
- extern const int REC_DYNAMIC_MESSAGE;
- extern const int REC_POINT_MESSAGE;
- extern const int REC_BOOK_BRAND_INFO;
- extern const int REC_RANDOM_BRAND;
- extern const int REC_SCAN_DATA_REQ;
- extern const int REC_USER_DATA_REQ;
- extern const int REC_ACTIVITY_SHARE;
- extern const int REC_PROMOTION_INFO;
- @interface FKRecommendRequest : NSObject
- + (void)requestTabPagesWithIdentify:(int)identify delegate:(id<FLNetworkDelegate>)delegate;
- + (void)requestRecommendDataWithDelegate:(id <FLNetworkDelegate>)delegate;
- /**
- * 根据用户ID做推荐
- *
- */
- + (void)requestUserRecommendDataWithDelegate:(id <FLNetworkDelegate>)delegate;
- /**
- * 根据用户的购买记录推荐的商品
- *
- */
- + (void)requestScanRecommendDataWithDelegate:(id <FLNetworkDelegate>)delegate;
- + (void)requestRandomBrandWithDelegate:(id <FLNetworkDelegate>)delegate;
- + (void)requestActivityShareWithDelegate:(id <FLNetworkDelegate>)delegate;
- + (void)requestPromotionInfoWithDelegate:(id <FLNetworkDelegate>)delegate;
- + (void)requestMoreDataWithStartRow:(NSUInteger)startRow
- updateTime:(NSString *)updateTime
- delegate:(id <FLNetworkDelegate>)delegate;
- + (void)requestActivityURL:(int)identify
- deleagate:(id<FLNetworkDelegate>)delegate;
- + (void)requestSignState:(int)identify
- deleagate:(id<FLNetworkDelegate>)delegate;
- // 积分提示
- + (void)requestPointMessage:(int)identify
- delegate:(id<FLNetworkDelegate>)delegate;
- //+ (void)requestMessage:(int)identify
- // delegate:(id<FLNetworkDelegate>)delegate;
- + (void)requestBookInfoWithServeTime:(NSString *)serveTime
- identify:(int)identify
- deleagate:(id<FLNetworkDelegate>)delegate;
- // 新人优惠提示,代金券过期提示,优先级高于积分提示
- + (void)requestDynamicMsgWithIdentify:(int)identify deleagate:(id<FLNetworkDelegate>)delegate;
- + (void)requestBehavior:(NSString*)areaName
- objType:(NSString *)objType
- objID:(NSString *)objID
- positionV1:(NSString *)v1
- positionV2:(NSString *)v2;
- @end
|