NYClassRoomPeiPhotoCell.h 640 B

123456789101112131415161718192021222324
  1. //
  2. // NYClassRoomPeiPhotoCell.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2024/2/17.
  6. // Copyright © 2024 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CultivatePhotoModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface NYClassRoomPeiPhotoCell : UICollectionViewCell
  12. @property (nonatomic ,strong) UIImageView *imagev;
  13. @property (nonatomic ,strong) UILabel *time_label;
  14. @property (nonatomic ,strong) UILabel *title_label;
  15. @property (nonatomic ,strong) UILabel *valid_label;
  16. @property (nonatomic ,strong) UILabel *valid_time_label;
  17. @property (nonatomic ,strong) CultivatePhotoModel *cultivatePhotoModel;
  18. @end
  19. NS_ASSUME_NONNULL_END