1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| //
| // PBExamineListTableViewCell.h
| // IphoneBIMe
| //
| // Created by zjf on 2018/11/26.
| // Copyright © 2018 ProBIM. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
| @class PBExamineListModel;
| NS_ASSUME_NONNULL_BEGIN
|
| @interface PBExamineListTableViewCell : UITableViewCell
| @property (nonatomic, strong) PBExamineListModel *examineListModel;
| @end
|
| NS_ASSUME_NONNULL_END
|
|