<?php
namespace app\model;
use think\Model;

class User extends Model
{
	protected $pk = 'id';
	// protected $table = 'think_user';
}

