12345678910111213141516171819 |
- //
- // FKPriceWarnRequest.h
- // FirstLink
- //
- // Created by jack on 16/5/27.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKPriceWarnRequest : NSObject
- + (void)reqPriceWarnWithGoodsId:(NSString *)goodsId
- expectPrice:(NSInteger)expectPrice
- notifyType:(NSInteger)notifyType
- identify:(int)identify
- delegate:(id <FLNetworkDelegate>)delegate;
- @end
|