32 lines
706 B
Objective-C
32 lines
706 B
Objective-C
//
|
|
// ZeroControlBackmsgModel.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/2/24.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "baseModel.h"
|
|
// 无控设备返回信息 模型 返回28 字节
|
|
@interface ZeroControlBackmsgModel : baseModel
|
|
//温度
|
|
@property(nonatomic,copy)NSString*wendu;
|
|
//PH值
|
|
@property(nonatomic,copy)NSString*Ph;
|
|
// 湿度
|
|
@property(nonatomic,copy)NSString*shidu;
|
|
|
|
//背光灯亮度
|
|
@property(nonatomic,copy)NSString*brightness;
|
|
//柜灯开关
|
|
@property(nonatomic,copy)NSString*tankLight;
|
|
|
|
// 报警开关
|
|
@property(nonatomic,copy)NSString*baojingSwitch;
|
|
//最低温
|
|
@property(nonatomic,copy)NSString*miniTp;
|
|
// 最高温
|
|
@property(nonatomic,copy)NSString*maxTp;
|
|
|
|
@end
|