新版本

This commit is contained in:
roy
2019-03-12 09:26:46 +08:00
parent cbbfcb098a
commit c08d198e11
431 changed files with 19432 additions and 9136 deletions
@@ -0,0 +1,21 @@
//
// IfishPackageHeaderVo.m
// Ifish
//
// Created by 罗艺 on 2018/9/23.
// Copyright © 2018年 lianlian. All rights reserved.
//
#import "IfishPackageHeaderVo.h"
@implementation IfishPackageHeaderVo
-(NSString*)getPackege{
return @"";
}
-(NSString*)getHeader{
return [NSString stringWithFormat:@"%@%@%@%@%@",self.msgType,self.funcCode,self.sendAdr,self.reciceAdr,self.lenth];
}
-(NSString *)description{
return [NSString stringWithFormat:@"%@%@",[self getHeader],[self getPackege]];
}
@end