12345678910111213141516171819202122 |
- //
- // KXHotList.m
- // QBCS
- //
- // Created by kuxuan on 2017/6/8.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import "KXHotList.h"
- @implementation KXHotList
- + (NSDictionary *)modelCustomPropertyMapper {
- return @{@"Id" : @"id",@"Description":@"description"};
- }
- - (void)encodeWithCoder:(NSCoder *)aCoder {
- [self yy_modelEncodeWithCoder:aCoder];
- }
- - (instancetype)initWithCoder:(NSCoder *)aDecoder {
- return [self yy_modelInitWithCoder:aDecoder];
- }
- @end
|