// // ReserveCell.h // jiaPei // // Created by apple on 16/6/29. // Copyright © 2016年 JCZ. All rights reserved. // #import @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