Fantasy-field/application/model/IndexModel.class.php

23 lines
323 B
PHP
Raw Normal View History

2018-04-11 11:12:10 +00:00
<?php
namespace application\model;
use framework\core\Model;
/**
* Index模型类
*/
class IndexModel extends Model{
/**
* 返回数据库版本
*/
public function getVersion(){
return $this->mysqli->getVersion();
}
/**
* 返回数据表前缀
*/
public function getPrefix(){
return $this->prefix;
}
}