| 12345678910111213141516171819202122 |
- //
- // ActorModel.m
- // 千模
- //
- // Created by MUMEI on 2018/6/11.
- // Copyright © 2018年 MUMEI. All rights reserved.
- //
- #import "ActorModel.h"
- @implementation ActorModel
- - (void)setValue:(id)value forUndefinedKey:(NSString *)key
- {
-
- }
- +(JSONKeyMapper *)keyMapper{
- return [[JSONKeyMapper alloc]initWithDictionary:@{@"stage":@"name"}];
- }
- +(BOOL)propertyIsOptional:(NSString *)propertyName{
- return YES;
- }
- @end
|