NYGetjobStartRuleCell.h 875 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // NYGetjobStartRuleCell.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2023/6/9.
  6. // Copyright © 2023 JCZ. All rights reserved.
  7. //
  8. #import "RQCommonCollectionViewCell.h"
  9. #import "NYGetjobStartRuleViewModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface NYGetjobStartRuleCell : RQCommonCollectionViewCell
  12. @property (weak, nonatomic) IBOutlet QMUIButton *k1_button;
  13. @property (weak, nonatomic) IBOutlet QMUIButton *k2_button;
  14. @property (weak, nonatomic) IBOutlet QMUIButton *k3_button;
  15. @property (weak, nonatomic) IBOutlet QMUIButton *k4_button;
  16. @property (weak, nonatomic) IBOutlet UILabel *time_Label;
  17. @property (weak, nonatomic) IBOutlet UIButton *time_Button;
  18. @property (strong, nonatomic) UIButton *current_Button;
  19. //默认 科1 科2 对应 5678
  20. @property (nonatomic,assign) NSInteger type;
  21. - (void)cellUpdateView:(NSArray*)subject_array;
  22. @end
  23. NS_ASSUME_NONNULL_END