123456789101112131415161718192021222324 |
- //
- // FenceSiteCell.h
- // jiaPei
- //
- // Created by apple on 2017/8/16.
- // Copyright © 2017年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FenceSiteVC.h"
- @interface FenceSiteCell : UITableViewCell
- {
- UIImageView *headImg;
- UILabel *nameLabel, *timeLabel, *areaLabel, *carTypeLabel, *carModelLabel, *remarkLabel, *adressLabel, *lineLabel, *principalLabel, *mobileLabel, *telLabel;
- UIButton *lookMoreBtn, *lookMapBtn, *mobileBtn, *telBtn;
- }
- @property (nonatomic, strong) NSDictionary *dataDic;
- @property (nonatomic, strong) FenceSiteVC *superVC;
- @end
|