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