1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace loyalsoft;
- /**
- * Description of ZoneInfoModel
- * @version
- * 1.0.0 Created at 2017-2-14. by --gwang
- * @author gwang (mail@wanggangzero.cn)
- * @copyright ? 2017-2-14, SJZ LoyalSoft Corporation & gwang. All rights reserved.
- */
- /**
- * 分区信息
- */
- class Ins_ZoneInfo {
- /**
- * 构造函数
- * @param type $id 分区Id
- * @param type $level 在该分区的等级
- */
- public function __construct($id, $level, $playerName = "", $headImg = "") {
- $this->id = $id;
- $this->level = $level;
- $this->nickName = $playerName;
- $this->img = $headImg;
- }
- /**
- * 分区ID
- * @var String
- */
- public $id;
- /**
- * 玩家等级
- * @var int
- */
- public $level;
- /**
- *
- * @var string 昵称
- */
- public $nickName;
- /**
- * @var string 头像
- */
- public $img;
- }
|