完成 1.0.26 需求

This commit is contained in:
AI Health Developer
2025-04-21 13:52:13 +08:00
parent 2caa476640
commit 40311a1d85
80 changed files with 1487 additions and 574 deletions

View File

@@ -27,7 +27,7 @@ typedef NS_ENUM(NSUInteger, GiftType) {
GiftType_Lucky24 = 18, //幸运24
GiftType_CP = 19, // CP
GiftType_Custom = 20, // 定制
GiftType_Brove = 21, // 超级礼物
GiftType_Bravo = 21, // 超级礼物
};
//礼物类型

View File

@@ -57,8 +57,8 @@ MJCodingImplementation
return GiftType_Custom;
} else if ([self.key isEqualToString:@"cpGift"]) {
return GiftType_CP;
} else if ([self.key isEqualToString:@"broveGift"]) {
return GiftType_Brove;
} else if ([self.key isEqualToString:@"bravoGift"]) {
return GiftType_Bravo;
}
return GiftType_Game;

View File

@@ -37,6 +37,7 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic, assign) NSInteger giftNum;
@property (nonatomic, assign) NSInteger prizeLevel;
@property (nonatomic, assign) NSInteger giftId;
@property (nonatomic, assign) NSInteger goldPrice;
@end