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