NYClassRoomPeiCell.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // NYClassRoomPeiCell.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2024/2/4.
  6. // Copyright © 2024 JCZ. All rights reserved.
  7. //
  8. #import "CollectionViewCell.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NYClassRoomPeiCell : RQCommonCollectionViewCell
  11. @property (weak, nonatomic) IBOutlet UIView *px00_view;
  12. @property (weak, nonatomic) IBOutlet UIView *px01_view;
  13. @property (weak, nonatomic) IBOutlet UILabel *coach_name_label;
  14. @property (weak, nonatomic) IBOutlet UILabel *stu_name_label;
  15. @property (weak, nonatomic) IBOutlet UILabel *cat_num_label;
  16. @property (weak, nonatomic) IBOutlet UILabel *room_name_label;
  17. @property (weak, nonatomic) IBOutlet UILabel *course_ptime_label;
  18. @property (weak, nonatomic) IBOutlet UILabel *sign_time_label;
  19. @property (weak, nonatomic) IBOutlet UILabel *exit_ptime_label;
  20. @property (weak, nonatomic) IBOutlet UIButton *submit_btn;
  21. //照片 图片 - collectionView
  22. @property (weak, nonatomic) IBOutlet UIView *imageArrayView;
  23. @property (nonatomic ,strong) UICollectionView *collectionView;
  24. //暂无数据 - view
  25. @property (weak, nonatomic) IBOutlet UIView *not_data_view;
  26. @end
  27. NS_ASSUME_NONNULL_END