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