| 1234567891011121314151617181920 |
- //
- // EnumModel.h
- // enumsort
- //
- // Created by Jack on 2017/10/26.
- // Copyright © 2017年 Jack. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface EnumModel : NSObject
- @property (nonatomic,assign) BOOL check;
- @property (nonatomic,assign) NSInteger value_id;
- @property (nonatomic,copy) NSString *value;
- @property (nonatomic,assign) NSInteger sort_id;
- - (void)setJsonValue:(NSDictionary *)json forSortId:(NSInteger)sortId;
- @end
|