30 lines
817 B
Objective-C
30 lines
817 B
Objective-C
//
|
|
// IfishHotBarVo.h
|
|
// Ifish
|
|
//
|
|
// Created by 罗艺 on 2018/8/22.
|
|
// Copyright © 2018年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "IfishHeaterVo.h"
|
|
|
|
@interface IfishHotBarVo : NSObject
|
|
@property(nonatomic,copy)NSString*title;
|
|
@property(nonatomic,copy)NSString*subTitle;
|
|
@property(nonatomic,assign)BOOL isShowArrow;
|
|
@property(nonatomic,copy)NSString*iconUrl;
|
|
@property(nonatomic,strong)NSArray* phs;//历史
|
|
@property(nonatomic,strong)IfishHeaterVo*heater ;
|
|
|
|
@property(nonatomic,copy)NSString*heaterNum;
|
|
@property(nonatomic,copy)NSString*upTeamp;
|
|
@property(nonatomic,copy)NSString*downTeamp;
|
|
@property(nonatomic,copy)NSString*wornCode;
|
|
|
|
@property(nonatomic,copy)NSString*remindDay;
|
|
@property(nonatomic,copy)NSString*remaindTime;
|
|
@property(nonatomic,assign)UInt64 phv;
|
|
|
|
@end
|