1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // FVAccount.m
- // lolbox
- //
- // Created by luxiaoming on 2017/1/11.
- // Copyright © 2017年 duowan. All rights reserved.
- //
- #import "WHGAccount.h"
- #import "YYModel.h"
- @implementation WHGAccount
- + (NSDictionary *)modelCustomPropertyMapper {
- return @{
- @"uid": @"id",
- };
- }
- - (instancetype)initWithCoder:(NSCoder *)aDecoder {
- return [super yy_modelInitWithCoder:aDecoder];
- }
- - (void)encodeWithCoder:(NSCoder *)aCoder {
- [self yy_modelEncodeWithCoder:aCoder];
- }
- @end
- @implementation MTSimpleUserModel
- + (NSDictionary *)modelCustomPropertyMapper {
- return @{
- @"uid": @"id",
- };
- }
- @end
|