// // 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