新疆框架

This commit is contained in:
History
2025-06-30 09:33:34 +08:00
commit 593b22626d
1291 changed files with 107611 additions and 0 deletions
@@ -0,0 +1,36 @@
//
// 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