30 lines
741 B
Objective-C
30 lines
741 B
Objective-C
//
|
||
// Xuanduo2SettingController.h
|
||
// Ifish
|
||
//
|
||
// Created by Alex on 2019/4/28.
|
||
// Copyright © 2019 lianlian. All rights reserved.
|
||
//
|
||
|
||
#import "FatherController.h"
|
||
#import "IfishDeviceInfo.h"
|
||
#include "xuanduo3fModel.h"
|
||
#import "ReadTimerModel.h"
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@class Xuanduo2Model;
|
||
|
||
@interface XuanduoTimerSettingViewController : FatherController
|
||
|
||
@property (nonatomic,strong) UIActivityIndicatorView*indicatorView;
|
||
@property (nonatomic ,strong) id dataModel;
|
||
@property(nonatomic,strong) DeviceModel* currentdevice;
|
||
@property (nonatomic, strong) ReadTimerModel *readMode;
|
||
@property (nonatomic, assign) NSInteger timerType; //1,定时 2,循环 3,自恢复
|
||
- (void)refreshWithData:(id)model;
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|