1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| //
| // Copyright © 2020 dahua. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| NS_ASSUME_NONNULL_BEGIN
|
| @interface LCVideotapeListCell : UICollectionViewCell
| ///缩略图
| @property (weak, nonatomic) IBOutlet UIImageView *picImgview;
| ///选择图片
| @property (weak, nonatomic) IBOutlet UIImageView *selectImg;
| ///开始时间lab
| @property (weak, nonatomic) IBOutlet UILabel *startTimeLab;
| ///持续时间Lab
| @property (weak, nonatomic) IBOutlet UILabel *durationTimeLab;
|
| ///Model
| @property (strong,nonatomic)id model;
|
| @end
|
| NS_ASSUME_NONNULL_END
|
|