12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // NYClassRoomPeiCell.h
- // jiaPei
- //
- // Created by Ning.ge on 2024/2/4.
- // Copyright © 2024 JCZ. All rights reserved.
- //
- #import "CollectionViewCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface NYClassRoomPeiCell : RQCommonCollectionViewCell
- @property (weak, nonatomic) IBOutlet UIView *px00_view;
- @property (weak, nonatomic) IBOutlet UIView *px01_view;
- @property (weak, nonatomic) IBOutlet UILabel *coach_name_label;
- @property (weak, nonatomic) IBOutlet UILabel *stu_name_label;
- @property (weak, nonatomic) IBOutlet UILabel *cat_type_label;
- @property (weak, nonatomic) IBOutlet UILabel *cat_num_label;
- @property (weak, nonatomic) IBOutlet UILabel *room_name_label;
- @property (weak, nonatomic) IBOutlet UILabel *school_name_label;
- @property (weak, nonatomic) IBOutlet UILabel *sign_time_label;
- @property (weak, nonatomic) IBOutlet UILabel *pei_type_label;
- @property (weak, nonatomic) IBOutlet UIButton *submit_btn;
- //照片 图片 - collectionView
- @property (weak, nonatomic) IBOutlet UIView *imageArrayView;
- @property (nonatomic ,strong) UICollectionView *collectionView;
- @end
- NS_ASSUME_NONNULL_END
|