23 lines
481 B
Objective-C
23 lines
481 B
Objective-C
//
|
|
// IfishHistroyVo.m
|
|
// Ifish
|
|
//
|
|
// Created by 罗艺 on 2018/9/23.
|
|
// Copyright © 2018年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "IfishHistroyVo.h"
|
|
|
|
@implementation IfishHistroyVo
|
|
-(void)setHeaterGatheringTime:(NSString *)heaterGatheringTime{
|
|
_heaterGatheringTime=heaterGatheringTime;
|
|
_heaterGatheringTime_int=heaterGatheringTime.integerValue;
|
|
}
|
|
|
|
-(void)setHeaterPh:(NSString *)heaterPh{
|
|
_heaterPh=heaterPh;
|
|
_heaterPh_int=heaterPh.integerValue;
|
|
}
|
|
|
|
@end
|