packageRoolModel.m 844 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // packageRoolModel.m
  3. // shiku_im
  4. //
  5. // Created by 123 on 2020/4/30.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import "packageRoolModel.h"
  9. @implementation packageRoolModel
  10. -(void)setValue:(id)value forUndefinedKey:(NSString *)key{}
  11. +(NSDictionary *)mj_objectClassInArray{
  12. return @{@"questions":[QustionJX class],@"rules":[RulesJX class]};
  13. }
  14. @end
  15. @implementation QustionJX
  16. -(void)setValue:(id)value forUndefinedKey:(NSString *)key{}
  17. +(NSDictionary *)mj_objectClassInArray{
  18. return @{@"options":[OptionsJX class]};
  19. }
  20. @end
  21. @implementation RulesJX
  22. -(void)setValue:(id)value forUndefinedKey:(NSString *)key{}
  23. @end
  24. @implementation OptionsJX
  25. -(void)setValue:(id)value forUndefinedKey:(NSString *)key{}
  26. @end
  27. @implementation awarJpModel
  28. -(void)setValue:(id)value forUndefinedKey:(NSString *)key{}
  29. @end