12345678910111213141516171819202122232425262728293031323334 |
- import { _decorator, Component, Node } from 'cc';
- const { ccclass, property } = _decorator;
-
- /**
- * 场次信息
- */
- @ccclass('BatchInfoVo')
- export class BatchInfoVo {
- /**
- * 单次消耗游戏币
- */
- cost?: number;
- /**
- * 结束时间 按照此数据显示倒计时
- */
- endTime?: string;
- /**
- * 当前用户游戏币余额
- */
- gameCurrcy?: number;
- /**
- * 游戏批次日期
- */
- gameDay?: string;
- /**
- * 开始时间
- */
- startTime?: string;
- /**
- * 批次uuid
- */
- uuid?: string;
- }
|