// // ImitateOrderCell.h // jiaPei // // Created by EchoShacolee on 2017/5/15. // Copyright © 2017年 JCZ. All rights reserved. // #import @interface ImitateOrderCell : UITableViewCell { UILabel * orderNumLab; // UILabel * creatTimeLab; UILabel * yuyueDateLab; UILabel * moniTimeLab; UILabel * trainLineLab; UILabel * deviceLableLab; UILabel * allPriceLab; UILabel * lineLab; UIButton * payBtn; UIButton * cancleOrderBtn; } @property (nonatomic, assign)NSInteger type; @property (nonatomic, strong) UIViewController *skipVC; @property (nonatomic, strong) NSDictionary *dataDic; @property (nonatomic, copy) MyBlockType block;//cell btn处理成功回调 +(ImitateOrderCell *)cellForTabelView:(UITableView*)tableView block:(MyBlockType)block; @end