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