37 lines
534 B
Objective-C
37 lines
534 B
Objective-C
//
|
|
// SOSCenterModel.m
|
|
// EscortProject
|
|
//
|
|
// Created by 仁康信息 on 2023/5/13.
|
|
//
|
|
|
|
#import "SOSCenterModel.h"
|
|
|
|
@implementation SOSTitleModel
|
|
|
|
|
|
@end
|
|
|
|
@implementation SOSResourcesModel
|
|
|
|
+ (NSDictionary *)modelCustomPropertyMapper
|
|
{
|
|
NSDictionary * dic =@{@"reaourceID" :@"id"};
|
|
return dic;
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation SOSCenterModel
|
|
|
|
+ (NSDictionary *)modelContainerPropertyGenericClass
|
|
{
|
|
|
|
|
|
return @{@"resources":[SOSResourcesModel class],
|
|
@"dicts":[SOSTitleModel class]
|
|
};
|
|
|
|
}
|
|
@end
|