23 lines
520 B
Objective-C
23 lines
520 B
Objective-C
//
|
|
// GuidengKaiGuanModel.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/3/15.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "GuidengKaiGuanModel.h"
|
|
//柜光灯开关
|
|
@implementation GuidengKaiGuanModel
|
|
-(NSString*)description{
|
|
self.messagetype=@"00";
|
|
self.functionCode=@"0d";//13
|
|
|
|
self.crc16Str=@"0000";
|
|
self.massagelegth=@"12";
|
|
return [NSString stringWithFormat:@"%@%@%@%@%@", self.messagetype,self.functionCode,self.sendmacId,self.resavemacId,self.massagelegth];
|
|
|
|
|
|
}
|
|
@end
|