19 lines
490 B
Objective-C
19 lines
490 B
Objective-C
//
|
|
// MineDengJi.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/3/2.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface MineDengJi : NSObject
|
|
@property(nonatomic,copy) NSString *levelCode;
|
|
@property(nonatomic,copy) NSString *levelName;
|
|
@property(nonatomic,copy) NSString *minValue;
|
|
@property(nonatomic,copy) NSString *maxValue;
|
|
@property(nonatomic,copy) NSString *remark;
|
|
- (instancetype)initWithDictionary:(NSDictionary *)dictionary;
|
|
@end
|