24 lines
466 B
Objective-C
24 lines
466 B
Objective-C
//
|
|
// XuanduoHuliModel.m
|
|
// Ifish
|
|
//
|
|
// Created by Alex on 2019/4/24.
|
|
// Copyright © 2019 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "XuanduoHuliModel.h"
|
|
|
|
@implementation XuanduoHuliModel
|
|
|
|
- (NSString *)description
|
|
{
|
|
self.messagetype=@"00";
|
|
self.massagelegth=@"12";
|
|
self.functionCode=@"0d";
|
|
|
|
return [NSString stringWithFormat:@"%@%@%@%@%@", self.messagetype,self.functionCode,self.sendmacId,self.resavemacId,self.massagelegth];
|
|
|
|
}
|
|
|
|
@end
|