FenceSiteCell.h 591 B

123456789101112131415161718192021222324
  1. //
  2. // FenceSiteCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 2017/8/16.
  6. // Copyright © 2017年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FenceSiteVC.h"
  10. @interface FenceSiteCell : UITableViewCell
  11. {
  12. UIImageView *headImg;
  13. UILabel *nameLabel, *timeLabel, *areaLabel, *carTypeLabel, *carModelLabel, *remarkLabel, *adressLabel, *lineLabel, *principalLabel, *mobileLabel, *telLabel;
  14. UIButton *lookMoreBtn, *lookMapBtn, *mobileBtn, *telBtn;
  15. }
  16. @property (nonatomic, strong) NSDictionary *dataDic;
  17. @property (nonatomic, strong) FenceSiteVC *superVC;
  18. @end