41 lines
605 B
Objective-C
41 lines
605 B
Objective-C
//
|
|
// MedalsModel.m
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/6/17.
|
|
//
|
|
|
|
#import "MedalsModel.h"
|
|
|
|
@implementation MedalVos
|
|
|
|
@end
|
|
|
|
@implementation MedalSeriesItemVo
|
|
+ (NSDictionary *)mj_objectClassInArray {
|
|
return @{
|
|
@"medalVos" : [MedalVos class]
|
|
};
|
|
}
|
|
@end
|
|
|
|
@implementation MedalSeriesVo
|
|
+ (NSDictionary *)mj_objectClassInArray {
|
|
return @{
|
|
@"medalSeries" : [MedalSeriesItemVo class]
|
|
};
|
|
}
|
|
@end
|
|
|
|
@implementation UserMedalsModel
|
|
+ (NSDictionary *)mj_objectClassInArray {
|
|
return @{
|
|
@"medalSeries" : [MedalSeriesVo class]
|
|
};
|
|
}
|
|
@end
|
|
|
|
@implementation MedalsModel
|
|
|
|
@end
|