12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2020-02-12 08:05:26
- ////////////////////
- /**
- * Static Model pvp_leaguescore
- */
- class sm_pvp_leaguescore
- {
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。
- */
- public $id;
- /**
- * @var String 区间段名称
- */
- public $leagueName;
- /**
- * @var String 区间段使用图标
- */
- public $leagueIcon;
- /**
- * @var Int32 区间段的一级分类
- */
- public $leagueType;
- /**
- * @var Int32 区间段的 子分类(棣属于一级分类)
- */
- public $subType;
- /**
- * @var Int32 区间段的最低分数值
- */
- public $minScore;
- /**
- * @var Int32 区间段的最高分数值
- */
- public $maxScore;
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。
- */
- public $faild;
- /**
- * @var Int32 要求场次
- */
- public $changci;
- /**
- * @var Int32 要求胜率
- */
- public $shenglv;
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。
- */
- public $xiajiang;
- }
|