12345678910111213141516171819202122 |
- //
- // KBCategoryModel.m
- // YouHuiProject
- //
- // Created by 小花 on 2018/4/28.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "KBCategoryModel.h"
- #import "KBSecondCategoryModel.h"
- @implementation KBCategoryModel
- + (NSDictionary *)modelCustomPropertyMapper {
- return @{@"Id" : @"id"};
- }
- + (NSDictionary *)modelContainerPropertyGenericClass {
- return @{@"itemList" : [KBSecondCategoryModel class]};
- }
- @end
|