21 lines
554 B
Objective-C
21 lines
554 B
Objective-C
//
|
|
// JingYanValuelist.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/3/2.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface JingYanValuelist : NSObject
|
|
|
|
@property(nonatomic,copy) NSString *addType;
|
|
@property(nonatomic,copy) NSString *addValue;
|
|
@property(nonatomic,copy) NSString *recordRemark;
|
|
@property(nonatomic,copy) NSString *ruleName;
|
|
@property(nonatomic,copy) NSString *ruleRemark;
|
|
@property(nonatomic,copy) NSString *ruleType;
|
|
- (instancetype)initWithDictionary:(NSDictionary *)dictionary;
|
|
@end
|