ReserveCell.h 578 B

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