EnumModel.m 402 B

12345678910111213141516171819202122
  1. //
  2. // EnumModel.m
  3. // enumsort
  4. //
  5. // Created by Jack on 2017/10/26.
  6. // Copyright © 2017年 Jack. All rights reserved.
  7. //
  8. #import "EnumModel.h"
  9. @implementation EnumModel
  10. - (void)setValue:(id)value forUndefinedKey:(NSString *)key {
  11. }
  12. - (void)setJsonValue:(NSDictionary *)json forSortId:(NSInteger)sortId {
  13. [self setValuesForKeysWithDictionary:json];
  14. // self.sort_id = sortId;
  15. }
  16. @end