1234567891011121314151617181920212223242526272829 |
- //
- // ReserveCell.h
- // jiaPei
- //
- // Created by apple on 16/6/29.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface ReserveCell : UITableViewCell
- {
- UILabel *RDatelabel, *nameLabel, *dateLabel, *timeLabel, *countLabel, *kmLabel, *priceLabel, *stateLabel, *reasonLabel;
-
- UIButton *cancelBtn;
-
- BlockTypeVo clkBlock;
- }
- ///**
- // * type:1无原因 2是有拒绝原因的
- // */
- //@property (copy, nonatomic) NSString *type;
- @property (retain, nonatomic) NSDictionary *dataDic;
- -(void)click:(BlockTypeVo)block;
- @end
|