12345678910111213141516171819202122 |
- //
- // JZHomeListModel.m
- // JIZHANG
- //
- // Created by kuxuan on 2017/10/24.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import "JZHomeListModel.h"
- @implementation JZHomeListModel
- + (NSDictionary *)modelCustomPropertyMapper {
- return @{@"Id" : @"id"};
- }
- + (NSDictionary *)modelContainerPropertyGenericClass {
- return @{@"bill_data" : [JZBillDataModel class]};
- }
- @end
|