123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // 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_subject_label;
- @property (weak, nonatomic) IBOutlet UILabel *stu_name_label;
- @property (weak, nonatomic) IBOutlet UILabel *cat_num_label;
- @property (weak, nonatomic) IBOutlet UILabel *room_name_label;
- @property (weak, nonatomic) IBOutlet UILabel *course_ptime_label;
- @property (weak, nonatomic) IBOutlet UILabel *sign_time_label;
- @property (weak, nonatomic) IBOutlet UILabel *exit_ptime_label;
- @property (weak, nonatomic) IBOutlet UIButton *submit_btn;
- //照片 图片 - collectionView
- @property (weak, nonatomic) IBOutlet UIView *imageArrayView;
- @property (nonatomic ,strong) UICollectionView *collectionView;
- //暂无数据 - view
- @property (weak, nonatomic) IBOutlet UIView *not_data_view;
- @property (nonatomic, readwrite, weak) UIButton *signInOrsignOutItem;
- //签到 in 签退
- - (void)gotoSignInOrsignOut;
- @end
- NS_ASSUME_NONNULL_END
|