12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // NYGetjobStartRuleCell.h
- // jiaPei
- //
- // Created by Ning.ge on 2023/6/9.
- // Copyright © 2023 JCZ. All rights reserved.
- //
- #import "RQCommonCollectionViewCell.h"
- #import "NYGetjobStartRuleViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface NYGetjobStartRuleCell : RQCommonCollectionViewCell
- @property (weak, nonatomic) IBOutlet QMUIButton *k1_button;
- @property (weak, nonatomic) IBOutlet QMUIButton *k2_button;
- @property (weak, nonatomic) IBOutlet QMUIButton *k3_button;
- @property (weak, nonatomic) IBOutlet QMUIButton *k4_button;
- @property (weak, nonatomic) IBOutlet UILabel *time_Label;
- @property (weak, nonatomic) IBOutlet UIButton *time_Button;
- @property (strong, nonatomic) UIButton *current_Button;
- //默认 科1 科2 对应 5678
- @property (nonatomic,assign) NSInteger type;
- - (void)cellUpdateView:(NSArray*)subject_array;
- @end
- NS_ASSUME_NONNULL_END
|