123456789101112131415161718192021 |
- //
- // FKPriceWarnListRequest.h
- // FirstLink
- //
- // Created by jack on 16/5/27.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKPriceWarnListRequest : NSObject
- + (void)reqWarnListWithIdentify:(int)identify
- startRow:(NSInteger)startRow
- delegate:(id<FLNetworkDelegate>)delegate;
- + (void)reqRemoveWarnWithIdentify:(int)identify
- goodsID:(NSString *)goodsID
- delegate:(id<FLNetworkDelegate>)delegate;
- @end
|