// // FKRecommendRequest.h // FirstLink // // Created by jack on 15/12/8. // Copyright © 2015年 FirstLink. All rights reserved. // #import 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)delegate; + (void)requestRecommendDataWithDelegate:(id )delegate; /** * 根据用户ID做推荐 * */ + (void)requestUserRecommendDataWithDelegate:(id )delegate; /** * 根据用户的购买记录推荐的商品 * */ + (void)requestScanRecommendDataWithDelegate:(id )delegate; + (void)requestRandomBrandWithDelegate:(id )delegate; + (void)requestActivityShareWithDelegate:(id )delegate; + (void)requestPromotionInfoWithDelegate:(id )delegate; + (void)requestMoreDataWithStartRow:(NSUInteger)startRow updateTime:(NSString *)updateTime delegate:(id )delegate; + (void)requestActivityURL:(int)identify deleagate:(id)delegate; + (void)requestSignState:(int)identify deleagate:(id)delegate; // 积分提示 + (void)requestPointMessage:(int)identify delegate:(id)delegate; //+ (void)requestMessage:(int)identify // delegate:(id)delegate; + (void)requestBookInfoWithServeTime:(NSString *)serveTime identify:(int)identify deleagate:(id)delegate; // 新人优惠提示,代金券过期提示,优先级高于积分提示 + (void)requestDynamicMsgWithIdentify:(int)identify deleagate:(id)delegate; + (void)requestBehavior:(NSString*)areaName objType:(NSString *)objType objID:(NSString *)objID positionV1:(NSString *)v1 positionV2:(NSString *)v2; @end