Files
xj-ios/XinjiangProject/XinjiangProject/Project/SOS/Model/SOSCenterModel.m
T
2025-06-30 09:33:34 +08:00

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