23 lines
485 B
Objective-C
23 lines
485 B
Objective-C
//
|
|
// SOngNuoGuiDeng.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/8/16.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import "SOngNuoGuiDeng.h"
|
|
|
|
@implementation SOngNuoGuiDeng
|
|
-(NSString*)description{
|
|
self.messagetype=@"00";
|
|
self.functionCode=@"03";
|
|
|
|
self.crc16Str=@"0000";
|
|
self.massagelegth=@"13";
|
|
return [NSString stringWithFormat:@"%@%@%@%@%@", self.messagetype,self.functionCode,self.sendmacId,self.resavemacId,self.massagelegth];
|
|
|
|
}
|
|
|
|
@end
|