This commit is contained in:
lianxiang
2018-09-12 20:30:22 +08:00
parent a2de9505ee
commit 7d0027f58d
21 changed files with 805 additions and 110 deletions
@@ -0,0 +1,24 @@
//
// QustionAnswer.m
// GIGA
//
// Created by lianxiang on 2018/9/12.
// Copyright © 2018年 com.giga.ios. All rights reserved.
//
#import "QustionAnswer.h"
@implementation QustionAnswer
+(JSONKeyMapper *)keyMapper{
return [[JSONKeyMapper alloc] initWithModelToJSONDictionary:@{@"answer_id":@"id"}];
}
+ (BOOL)propertyIsOptional:(NSString *)propertyName{
return YES;
}
@end