1234567891011121314151617181920 |
- //
- // ZBTypeModel.m
- // ZBProject
- //
- // Created by 学丽 on 2019/4/19.
- // Copyright © 2019 ZB. All rights reserved.
- //
- #import "ZBTypeModel.h"
- @implementation ZBTypeModel
- -(void)setValue:(id)value forUndefinedKey:(NSString *)key
- {
-
- }
- + (NSDictionary *)modelCustomPropertyMapper {
- return @{@"Id" : @"id"};
- }
- @end
|