30 lines
608 B
Objective-C
30 lines
608 B
Objective-C
//
|
|
// TFNovelDetailModel.m
|
|
// TFReader
|
|
//
|
|
// Created by 谢腾飞 on 2020/12/19.
|
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved.
|
|
//
|
|
|
|
#import "TFNovelDetailModel.h"
|
|
#import "TFBookStoreLabelModel.h"
|
|
|
|
@implementation TFNovelDetailModel
|
|
|
|
+ (NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass
|
|
{
|
|
return @{
|
|
@"label" : [TFBookStoreLabelModel class],
|
|
@"comment" : [TFCommentsListModel class],
|
|
@"advert" : [TFAdvertModel class]
|
|
};
|
|
}
|
|
|
|
+ (NSDictionary *)modelCustomPropertyMapper
|
|
{
|
|
return @{
|
|
@"bookModel" : @"book"
|
|
};
|
|
}
|
|
@end
|