PlayerRebindApply.php 313 B

1234567891011121314
  1. <?php
  2. namespace app\common\model;
  3. /**
  4. * 游戏玩家换绑申请表
  5. * @author Administrator
  6. */
  7. class PlayerRebindApply extends \think\Model
  8. {
  9. protected $pk = 'id';
  10. protected $table = 'nw_player_rebind_apply';
  11. protected $dateFormat = false; //时间戳格式不自动转换
  12. }