12345678910111213141516171819202122232425 |
- //
- // FKHomeOrderEntranceCell.h
- // FirstLink
- //
- // Created by jack on 15/12/25.
- // Copyright © 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- //typedef NS_ENUM(NSInteger, kEntranceType) {
- // kEntranceTypeUnKown = - 1,
- // kEntranceTypeWaitPay = 0,
- // kEntranceTypeUnderWay,
- // kEntranceTypeFinish,
- // kEntranceTypeAllOrder
- //};
- @interface FKHomeOrderEntranceCell : UITableViewCell
- @property (nonatomic, copy) void (^enterOrderAction)(FKPersonOrderClassify entryType);
- @property (nonatomic, strong) NSString *waitPayStr;
- @end
|