21 lines
448 B
Objective-C
21 lines
448 B
Objective-C
//
|
|
// SetTimerModel.m
|
|
// Ifish
|
|
//
|
|
// Created by Alex on 2019/5/2.
|
|
// Copyright © 2019 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "SetTimerModel.h"
|
|
|
|
@implementation SetTimerModel
|
|
- (NSString *)description
|
|
{
|
|
self.messagetype=@"00";
|
|
self.massagelegth=@"18";
|
|
self.functionCode=@"15";
|
|
return [NSString stringWithFormat:@"%@%@%@%@%@",self.messagetype,self.functionCode,self.sendmacId,self.resavemacId,self.massagelegth];
|
|
|
|
}
|
|
@end
|