新版本
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
//
|
||||
// IfishHeaterVo.m
|
||||
// Ifish
|
||||
//
|
||||
// Created by 罗艺 on 2018/9/23.
|
||||
// Copyright © 2018年 lianlian. All rights reserved.
|
||||
//
|
||||
|
||||
#import "IfishHeaterVo.h"
|
||||
|
||||
@implementation IfishHeaterVo
|
||||
-(NSString*)heaterReminderTime{
|
||||
if (!_heaterReminderTime.length||_heaterReminderTime==nil) {
|
||||
return @"";
|
||||
}
|
||||
return _heaterReminderTime;
|
||||
}
|
||||
|
||||
-(NSString*)heaterVolume{
|
||||
if (!_heaterVolume.length||_heaterVolume==nil) {
|
||||
return @"";
|
||||
}
|
||||
return _heaterVolume;
|
||||
}
|
||||
|
||||
-(NSString *)heaterCycle{
|
||||
if (!_heaterCycle.length||_heaterCycle==nil) {
|
||||
return @"";
|
||||
}
|
||||
return _heaterCycle;
|
||||
}
|
||||
|
||||
-(NSString *)heaterId{
|
||||
if (!_heaterId.length||_heaterId==nil) {
|
||||
return @"";
|
||||
}
|
||||
return _heaterId;
|
||||
}
|
||||
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user