41 lines
605 B
Mathematica
41 lines
605 B
Mathematica
![]() |
//
|
||
|
// 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
|