123456789101112131415161718192021 |
- //
- // RQDictInfoModel.m
- // YYXC
- //
- // Created by 张嵘 on 2022/7/14.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQDictInfoModel.h"
- @implementation Params
- @end
- @implementation RQDictInfoModel
- // 返回容器类中的所需要存放的数据类型 (以 Class 或 Class Name 的形式)。
- + (NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass {
- return @{
- @"params" : [Params class],
- };
- }
- @end
|