123 lines
2.8 KiB
Objective-C
123 lines
2.8 KiB
Objective-C
//
|
||
// Xuanduo2TimerModel.h
|
||
// Ifish
|
||
//
|
||
// Created by Alex on 2019/5/3.
|
||
// Copyright © 2019 lianlian. All rights reserved.
|
||
//
|
||
|
||
#import <Foundation/Foundation.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
#if 0
|
||
01 16 807d3a42a200 807d3a42a200 25
|
||
05
|
||
03
|
||
01 00 0501 0403
|
||
02 00 060f 0e11
|
||
03 00 0f15 1410
|
||
17cc
|
||
#endif
|
||
|
||
@interface XuanduoTimerGroup : NSObject
|
||
/// 时间段
|
||
@property (nonatomic, strong) NSString *time;
|
||
/// 灯状态
|
||
@property (nonatomic, strong) NSString *status;
|
||
/// 第几组
|
||
@property (nonatomic, strong) NSString *groupNumber;
|
||
@property (nonatomic, strong) NSString *startTime;
|
||
@property (nonatomic, strong) NSString *endTime;
|
||
/// 是否跨天
|
||
@property (nonatomic, assign) BOOL isCrossDay;
|
||
|
||
|
||
@end
|
||
|
||
@interface Xuanduo2TimerModel : NSObject
|
||
|
||
/// 灯的序号
|
||
@property (nonatomic, strong) NSString *lightNumber;
|
||
@property (nonatomic, strong) NSString *groupSum;
|
||
@property (nonatomic, strong) NSMutableArray *groupModelArr;
|
||
|
||
|
||
@end
|
||
|
||
@interface XuanduoCycleModel : NSObject
|
||
|
||
/// 灯的序号
|
||
@property (nonatomic, strong) NSString *lightNumber;
|
||
@property (nonatomic, strong) NSString *lastTime;
|
||
@property (nonatomic, strong) NSString *gapTime;
|
||
@property (nonatomic, strong) NSString *status;
|
||
//设备类型新增
|
||
@property (nonatomic, strong) NSString *deviceType;
|
||
//打开持续时间 时分秒 6字节
|
||
@property (nonatomic, strong) NSString *openTime;
|
||
//关闭持续时间 时分秒 6字节
|
||
@property (nonatomic, strong) NSString *closeTime;
|
||
|
||
|
||
@end
|
||
@interface XuanduoFishFeedModel : NSObject
|
||
|
||
/// 6路灯的选择,11111100 从高到低 表示是否选择 二进制
|
||
@property (nonatomic, strong) NSString *lightChooseStatus;
|
||
//表示时间1~60
|
||
@property (nonatomic, strong) NSString *feedTime;
|
||
//6路灯的控制状态 11111100 从高到低 0关,1开。 二进制
|
||
@property (nonatomic, strong) NSString *lightOpenStatus;
|
||
|
||
|
||
|
||
@end
|
||
|
||
@interface XuanduoRecoveryModel : NSObject
|
||
|
||
/// 灯的序号
|
||
@property (nonatomic, strong) NSString *lightNumber;
|
||
@property (nonatomic, strong) NSString *lastTime;
|
||
@property (nonatomic, strong) NSString *gapTime;
|
||
@property (nonatomic, strong) NSString *status;
|
||
|
||
@end
|
||
@interface XuanduoTimerTypeModel : NSObject
|
||
|
||
/// 灯的序号
|
||
@property (nonatomic, strong) NSString *lightNumber;
|
||
//定时模式
|
||
@property (nonatomic, strong) NSString *type;
|
||
|
||
|
||
@end
|
||
@interface XuanduoTempCorrectModel : NSObject
|
||
|
||
/// 01-正偏差,02-负偏差
|
||
@property (nonatomic, strong) NSString *deviation;
|
||
//偏差值
|
||
@property (nonatomic, strong) NSString *tempDelta;
|
||
|
||
//实际值
|
||
@property (nonatomic, strong) NSString *realTemp;
|
||
|
||
|
||
|
||
@end
|
||
@interface XuanduoElectricityModel : NSObject
|
||
|
||
/// 当天电量
|
||
@property (nonatomic, strong) NSString *dayPower;
|
||
//当前功率
|
||
@property (nonatomic, strong) NSString *PowerRating;
|
||
|
||
//当前月电量
|
||
@property (nonatomic, strong) NSString *monthPower;
|
||
|
||
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|