ActorModel.m 425 B

12345678910111213141516171819202122
  1. //
  2. // ActorModel.m
  3. // 千模
  4. //
  5. // Created by MUMEI on 2018/6/11.
  6. // Copyright © 2018年 MUMEI. All rights reserved.
  7. //
  8. #import "ActorModel.h"
  9. @implementation ActorModel
  10. - (void)setValue:(id)value forUndefinedKey:(NSString *)key
  11. {
  12. }
  13. +(JSONKeyMapper *)keyMapper{
  14. return [[JSONKeyMapper alloc]initWithDictionary:@{@"stage":@"name"}];
  15. }
  16. +(BOOL)propertyIsOptional:(NSString *)propertyName{
  17. return YES;
  18. }
  19. @end