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