12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2025-03-13 10:00:14
- ////////////////////
- /**
- * Static Model pet_exploreoutput 灵宠的探索产出数据表
- */
- class sm_pet_exploreoutput
- {
- /**
- * @var Int32 唯一
- */
- public $id;
- /**
- * @var Int32 对应pet表里的type字段 default(0)
- */
- public $typeId;
- /**
- * @var Int32 宠物品阶 default(0)
- */
- public $qual;
- /**
- * @var String 探索区域id,产出,时间;探索区域id,产出,时间
- */
- public $exploreOutput;
- }
|