1234567891011121314151617181920 |
- //
- // KDPBalanceModel.m
- // KuDianProject
- //
- // Created by 学丽 on 2019/7/10.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import "KDPBalanceModel.h"
- @implementation KDPBalanceModel
- + (NSDictionary<NSString *,id> *)modelCustomPropertyMapper {
- return @{@"Id":@"id"};
- }
- -(void)setValue:(id)value forUndefinedKey:(NSString *)key
- {
-
- }
- @end
|