12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2021-12-21 14:37:37
- ////////////////////
- /**
- * Static Model expandStoreNum 背包扩容次数及消耗
- */
- class sm_expandStoreNum
- {
- /**
- * @var Int32 扩充次数 default(0)
- */
- public $id;
- /**
- * @var Int32 扩容格子数量 default(0)
- */
- public $expandNum;
- /**
- * @var String 每次扩容消耗
- */
- public $cost;
- /**
- * @var String 额外字段
- */
- public $etc;
- }
|