You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
541 B
26 lines
541 B
// |
|
// ClockAndOtherTableViewCell.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/12/5. |
|
// |
|
|
|
#import "ZZTableViewCell.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@class AlarmModel; |
|
@interface ClockAndOtherTableViewCell : ZZTableViewCell |
|
|
|
/// 类型区分 1:设备闹钟,2:上课禁用 |
|
@property (nonatomic ,assign) NSInteger viewType; |
|
|
|
@property (nonatomic ,strong) AlarmModel *alarmModel; |
|
|
|
@property (nonatomic ,assign) NSInteger rows; |
|
|
|
@property (nonatomic ,strong) void(^isUpdataSucceed)(NSInteger row ,BOOL status); |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|