// // OrderCell.h // jiaPei // // Created by apple on 16/6/7. // Copyright © 2016年 JCZ. All rights reserved. // #import @interface OrderCell : UITableViewCell { UILabel *orderNumLabel; UILabel *lineLabel; UILabel *nameLabel; UILabel *beginTimeLabel; UILabel *endTimeLabel; UILabel *priceLabel; UILabel *staticLabel; UILabel *contentLab; UIButton *orbitButton; UIButton *refershBtn; UIButton *commentBtn; UIButton *complainBtn; UIButton *payBtn; } @property (nonatomic, strong) NSString *type; @property (nonatomic, strong) UIViewController *skipVC; @property (nonatomic, strong) NSDictionary *dataDic; +(OrderCell *)cellForTabelView:(UITableView*)tableView; @end