23 lines
536 B
Objective-C
23 lines
536 B
Objective-C
//
|
|
// SetSelectorTime.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/10/12.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "SetSelectorTime.h"
|
|
|
|
@implementation SetSelectorTime
|
|
- (NSString *)description
|
|
{
|
|
self.messagetype=@"00";
|
|
self.massagelegth=@"16";
|
|
self.functionCode=@"04";
|
|
// self.selectorNumber=@"01";//1-9 定时器编号
|
|
// self.selectorTime=@"";
|
|
return [NSString stringWithFormat:@"%@%@%@%@%@",self.messagetype,self.functionCode,self.sendmacId,self.resavemacId,self.massagelegth];
|
|
|
|
}
|
|
@end
|