| 12345678910111213141516171819202122232425 | <?phpnamespace app\admin\model;use support\Db;use support\Model;/** * 就诊人信息模型 * Class Users * @package app\admin\model */class UserVisit extends Model{    /**     * The table associated with the model.     *     * @var string     */    protected $table = 'user_visit';    public $timestamps = false;}
 |