活动:首充添加一个给客户端的字段

This commit is contained in:
luying
2021-05-21 16:19:47 +08:00
parent b7bae40010
commit 253a2fb8a4

View File

@@ -9,6 +9,7 @@ export class FirstGiftItem {
index: number; // 第几天从1开始
name: string; //名称
reward: string; //奖励
goldCount: number; // 显示用的可获得元宝
isReceive: boolean = false; //是否领取过奖励
@@ -16,6 +17,7 @@ export class FirstGiftItem {
this.name = data.name;
this.index = data.index;
this.reward = data.reward;
this.goldCount = data.goldCount;
}
}