| 12345678910111213141516171819202122 |
- //
- // EnumModel.m
- // enumsort
- //
- // Created by Jack on 2017/10/26.
- // Copyright © 2017年 Jack. All rights reserved.
- //
- #import "EnumModel.h"
- @implementation EnumModel
- - (void)setValue:(id)value forUndefinedKey:(NSString *)key {
-
- }
- - (void)setJsonValue:(NSDictionary *)json forSortId:(NSInteger)sortId {
- [self setValuesForKeysWithDictionary:json];
- // self.sort_id = sortId;
- }
- @end
|