123456789101112131415161718 |
- //
- // KDPClassModel.m
- // KuDianProject
- //
- // Created by admin on 2019/7/10.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import "KDPClassModel.h"
- @implementation KDPClassModel
- + (NSDictionary<NSString *,id> *)modelCustomPropertyMapper {
- return @{@"Id":@"id"};
- }
- @end
|