30 lines
821 B
Objective-C
30 lines
821 B
Objective-C
//
|
|
// IfishHeaterVo.h
|
|
// Ifish
|
|
//
|
|
// Created by 罗艺 on 2018/9/23.
|
|
// Copyright © 2018年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
//heaterId : ID
|
|
//heaterMacAddress : mac地址
|
|
//heaterVolume : 鱼缸容积
|
|
//heaterLong : 鱼缸长
|
|
//heaterWidth : 鱼缸宽
|
|
//heaterHeight : 鱼缸高
|
|
//heaterCycle : 换水提醒周期
|
|
//heaterReminderTime : 提醒时间
|
|
@interface IfishHeaterVo : NSObject
|
|
@property(nonatomic,copy)NSString*heaterId;
|
|
@property(nonatomic,copy)NSString*heaterMacAddress;
|
|
@property(nonatomic,copy)NSString*heaterVolume;
|
|
@property(nonatomic,copy)NSString*heaterLong;
|
|
@property(nonatomic,copy)NSString*heaterWidth;
|
|
@property(nonatomic,copy)NSString*heaterHeight;
|
|
@property(nonatomic,copy)NSString*heaterCycle;
|
|
@property(nonatomic,copy)NSString*heaterReminderTime;
|
|
@end
|