活动:首充支持礼包形式

This commit is contained in:
qiaoxin
2021-05-10 18:39:13 +08:00
parent 908b647e03
commit b268c85fa2
4 changed files with 21 additions and 6 deletions

View File

@@ -8,14 +8,14 @@ import { ActivityBase } from './activityField';
export class FirstGiftItem {
index: number; // 第几天从1开始
name: string; //名称
gift: number; //礼包id
reward: string; //奖励
isReceive: boolean = false; //是否领取过奖励
constructor(data: any) {
this.name = data.name;
this.index = data.index;
this.gift = data.gift;
this.reward = data.reward;
}
}