12345678910111213141516171819202122 |
- //
- // FKPersonOrderSummaryCell.h
- // FirstLink
- //
- // Created by ascii on 16/2/23.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FKPersonOrderCellDelegate.h"
- @interface FKPersonOrderSummaryCell : UITableViewCell
- <FKPersonOrderCellDelegate>
- @property (nonatomic, strong) UIButton *paymentButton;
- @property (nonatomic, strong) UIButton *cancelButton;
- @property (nonatomic, strong) UIButton *deleteButton;
- @property (nonatomic, strong) UIButton *uploadIDCardButton;
- @property (nonatomic, strong) UIButton *shareButton;
- @end
|