1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2024-03-20 15:21:16
- ////////////////////
- /**
- * Static Model activity_tiligift 活动: 体力加油站
- */
- class sm_activity_tiligift
- {
- /**
- * @var Int32 自动编号
- */
- public $id;
- /**
- * @var String 名称
- */
- public $name;
- /**
- * @var TimeSpan 起始时间
- */
- public $start_time;
- /**
- * @var TimeSpan 结束时间
- */
- public $end_time;
- /**
- * @var Int32 获得体力
- */
- public $tili;
- /**
- * @var Int32 补领消耗钻石
- */
- public $late_cost;
- }
|