dkahgld

ClassModel.m 336B

1234567891011121314151617181920
  1. //
  2. // ClassModel.m
  3. // ZBProject
  4. //
  5. // Created by 学丽 on 2019/4/9.
  6. // Copyright © 2019 ZB. All rights reserved.
  7. //
  8. #import "ClassModel.h"
  9. @implementation ClassModel
  10. -(void)setValue:(id)value forUndefinedKey:(NSString *)key
  11. {
  12. }
  13. + (NSDictionary<NSString *,id> *)modelCustomPropertyMapper {
  14. return @{@"Id":@"id"};
  15. }
  16. @end