49 lines
1.1 KiB
Objective-C
49 lines
1.1 KiB
Objective-C
//
|
|
// XutoBackMsgModel.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/4/22.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface XutoBackMsgModel : NSObject
|
|
//气泵
|
|
@property(nonatomic,copy) NSString *gaspump;
|
|
//灯1
|
|
@property(nonatomic,copy) NSString *light1;
|
|
|
|
//灯2
|
|
@property(nonatomic,copy) NSString *light2;
|
|
|
|
//水泵
|
|
@property(nonatomic,copy) NSString *waterpump;
|
|
|
|
//护理灯
|
|
@property(nonatomic,copy) NSString *hulilight;
|
|
|
|
@property(nonatomic,copy)NSString*timer1;
|
|
@property(nonatomic,copy)NSString*timer2;
|
|
@property(nonatomic,copy)NSString*timer3;
|
|
@property(nonatomic,copy)NSString*timer4;
|
|
@property(nonatomic,copy)NSString*timer5;
|
|
@property(nonatomic,copy)NSString*timer6;
|
|
|
|
//加热棒状态
|
|
@property(nonatomic,copy) NSString *heatStickState;
|
|
// 水温度
|
|
@property(nonatomic,copy) NSString *wendu;
|
|
// 加热温度
|
|
@property(nonatomic,copy) NSString *heatTemperature;
|
|
|
|
@property(nonatomic,copy) NSString *baojingSwitch;
|
|
|
|
@property(nonatomic,copy) NSString *miniTp;
|
|
|
|
@property(nonatomic,copy) NSString *maxTp;
|
|
|
|
@property(nonatomic,copy) NSString *funcCode;
|
|
|
|
@end
|