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