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