17 lines
321 B
Objective-C
17 lines
321 B
Objective-C
//
|
|
// GuidengKaiGuanModel.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/3/15.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "baseModel.h"
|
|
|
|
@interface GuidengKaiGuanModel : baseModel
|
|
// 开关状态
|
|
@property(nonatomic,copy)NSString*onOff;
|
|
//crc16 验证码
|
|
@property(nonatomic,copy)NSString*crc16Str;
|
|
@end
|