38 lines
924 B
Objective-C
38 lines
924 B
Objective-C
//
|
|
// baseModel.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/10/12.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
//建议指令用结构体 用字节封装 沿用 老版本不想改了
|
|
//类似
|
|
// typedef struct sSDCardInfo{
|
|
// BYTE bSDCardID;
|
|
// UINT64 u64SDTotalSpace;
|
|
// UINT64 u64SDCardFreeSpace;
|
|
// }PACKED sSDCardInfo;
|
|
//详情 参见本项目 mesg.h 文件
|
|
|
|
|
|
// 数据包头
|
|
#import "DeviceModel.h"
|
|
@interface baseModel : NSObject
|
|
|
|
@property(nonatomic,copy)NSString*messagetype;
|
|
@property(nonatomic,copy)NSString*functionCode;//功能码
|
|
@property(nonatomic,copy)NSString*sendmacId;
|
|
@property(nonatomic,copy)NSString*resavemacId;
|
|
@property(nonatomic,copy)NSString*massagelegth;
|
|
@property(nonatomic)BOOL isSend;
|
|
|
|
//@property(nonatomic,strong) DeviceModel *devicemodel;
|
|
|
|
//@property(nonatomic)Byte*byte;
|
|
//@property(nonatomic)Byte version;
|
|
|
|
@end
|