123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // packageRoolModel.m
- // shiku_im
- //
- // Created by 123 on 2020/4/30.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import "packageRoolModel.h"
- @implementation packageRoolModel
- -(void)setValue:(id)value forUndefinedKey:(NSString *)key{}
- +(NSDictionary *)mj_objectClassInArray{
-
- return @{@"questions":[QustionJX class],@"rules":[RulesJX class]};
- }
- @end
- @implementation QustionJX
- -(void)setValue:(id)value forUndefinedKey:(NSString *)key{}
- +(NSDictionary *)mj_objectClassInArray{
-
- return @{@"options":[OptionsJX class]};
- }
- @end
-
- @implementation RulesJX
- -(void)setValue:(id)value forUndefinedKey:(NSString *)key{}
- @end
- @implementation OptionsJX
- -(void)setValue:(id)value forUndefinedKey:(NSString *)key{}
- @end
- @implementation awarJpModel
- -(void)setValue:(id)value forUndefinedKey:(NSString *)key{}
- @end
|