59 lines
1.2 KiB
Objective-C
59 lines
1.2 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;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|