
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
44 lines
859 B
Objective-C
44 lines
859 B
Objective-C
//
|
|
// XPMineGamePartnerInfoModel.m
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/7/10.
|
|
//
|
|
|
|
#import "XPMineGamePartnerInfoModel.h"
|
|
|
|
@implementation XPMineGamePartnerInfoTagModel
|
|
|
|
|
|
|
|
@end
|
|
|
|
@implementation XPMineGameOrderRecoredModel
|
|
|
|
|
|
|
|
@end
|
|
|
|
@implementation XPMineGamePartnerInfoModel
|
|
+ (NSDictionary *)objectClassInArray{
|
|
return @{
|
|
@"tags":XPMineGamePartnerInfoTagModel.class
|
|
};
|
|
}
|
|
|
|
+ (XPMineGamePartnerInfoModel *)modelFromRecord:(XPMineGameOrderRecoredModel *)record {
|
|
XPMineGamePartnerInfoModel *model = [[XPMineGamePartnerInfoModel alloc] init];
|
|
model.background = record.gamePic;
|
|
model.gameId = record.gameId;
|
|
model.gameName = record.gameName;
|
|
model.logo = record.gameLogo;
|
|
model.pic = record.gamePic;
|
|
model.price = record.price;
|
|
model.uid = record.toUid;
|
|
model.inning = record.inning;
|
|
return model;
|
|
}
|
|
@end
|
|
|
|
|