// // UserExtendataArchaver.h // Ifish // // Created by imac on 2017/6/9. // Copyright © 2017年 lianlian. All rights reserved. // #import #import "RunSunCHControl.h" #import "RunSunControlName.h" #import "SongNuo86Name.h" #import "SongNuo128Name.h" #import "TwoControlName.h" #import "ThreeControlName.h" #import "FourControlName.h" #import "XuToControlName.h" #import "RuiMeiCHControl.h" @interface UserExtendataArchaver : NSObject //自定义水族箱名字数据 +(void)archiverRuiMeiDeviceCHInfo:(RuiMeiCHControl*)ch; +(RuiMeiCHControl*)unArchiverRuiMeiDeviceCHInfo:(NSString *)mac; //自定义水族箱名字数据 +(void)archiverDeviceCHInfo:(RunSunCHControl*)ch; +(RunSunCHControl*)unArchiverDeviceCHInfo:(NSString *)mac; // 睿芯温控 +(void)saveRuSunTmpname:(RunSunControlName *)nameModel; +(RunSunControlName *)currentRuSunTemp:(NSString *)macaddress; //松诺86 +(void)saveSongNuo86Name:(SongNuo86Name *)nameModel; +(SongNuo86Name *)currentSongNuo86:(NSString *)macaddress; //松诺128 +(void)saveSongNuo128Name:(SongNuo128Name *)nameModel; +(SongNuo128Name *)currentSongNuo128:(NSString *)macaddress; //两空 普通两空0b 闽江0d +(void)saveTwoControlName:(TwoControlName *)nameModel; +(TwoControlName *)currentTwoControlName:(NSString *)macaddress; //三控 所有三控类型 +(void)saveThreeControlName:(ThreeControlName *)nameModel; +(ThreeControlName *)currentThreeControlName:(NSString *)macaddress; //四控 +(void)saveFourControlName:(FourControlName *)nameModel; +(FourControlName *)currentFourControlName:(NSString *)macaddress; //炫多 +(void)saveXuToControlName:(XuToControlName *)nameModel; +(XuToControlName *)currentXuToControlName:(NSString *)macaddress; @end