feat: 完成 1.0.16 验收

This commit is contained in:
eggmanQQQ
2024-09-27 11:17:04 +08:00
parent 4d46e1505c
commit 931887fc8c
65 changed files with 913 additions and 865 deletions

View File

@@ -25,6 +25,8 @@ typedef NS_ENUM(NSUInteger, GiftType) {
GiftType_super = 16, //幸运礼物
GiftType_Country = 17, //国家礼物
GiftType_Lucky24 = 18, //幸运24
GiftType_CP = 19, // CP
GiftType_Custom = 20, // 定制
};
//礼物类型

View File

@@ -30,7 +30,12 @@ MJCodingImplementation
return GiftType_WeekStar;
} else if ([self.key isEqualToString:@"singlePopularGift"]) {
return GiftType_Anchor;
} else if ([self.key isEqualToString:@"customGift"]) {
return GiftType_Custom;
} else if ([self.key isEqualToString:@"cpGift"]) {
return GiftType_CP;
}
return GiftType_Game;
}