RQDictInfoModel.m 477 B

123456789101112131415161718192021
  1. //
  2. // RQDictInfoModel.m
  3. // YYXC
  4. //
  5. // Created by 张嵘 on 2022/7/14.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQDictInfoModel.h"
  9. @implementation Params
  10. @end
  11. @implementation RQDictInfoModel
  12. // 返回容器类中的所需要存放的数据类型 (以 Class 或 Class Name 的形式)。
  13. + (NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass {
  14. return @{
  15. @"params" : [Params class],
  16. };
  17. }
  18. @end