23 lines
474 B
Objective-C
23 lines
474 B
Objective-C
//
|
|
// RuSunGuiDeng.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/1/5.
|
|
// Copyright © 2017年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import "RuSunGuiDeng.h"
|
|
|
|
@implementation RuSunGuiDeng
|
|
|
|
-(NSString*)description{
|
|
self.messagetype=@"00";
|
|
self.functionCode=@"0d";
|
|
self.crc16Str=@"0000";
|
|
self.massagelegth=@"12";
|
|
return [NSString stringWithFormat:@"%@%@%@%@%@", self.messagetype,self.functionCode,self.sendmacId,self.resavemacId,self.massagelegth];
|
|
|
|
}
|
|
|
|
@end
|