21 lines
496 B
Objective-C
21 lines
496 B
Objective-C
//
|
|
// IfishConfigVo.h
|
|
// Ifish
|
|
//
|
|
// Created by 罗艺 on 2018/9/24.
|
|
// Copyright © 2018年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface IfishConfigVo : NSObject
|
|
//配置tcp连接地址(39字节) 15 数据包头
|
|
//20 tcp连接的域名
|
|
//
|
|
//2 连接环境aaaa测试环境bbbb正式环境
|
|
//2 CRC16校验码
|
|
@property(nonatomic,copy)NSString*tcpAdr;
|
|
@property(nonatomic,copy)NSString*env;
|
|
@property(nonatomic,copy)NSString*crc;
|
|
@end
|