/** * @brief 构造函数 * @param string $name 表名 */ public function __construct($name) { //$this->tablePre = isset(IWeb::$app->config['DB']['tablePre'])?IWeb::$app->config['DB']['tablePre']:''; $this->table = $name; $this->db = DbFactory::getInstance(); }
public function __construct($tableName) { $this->db = DbFactory::getInstance(); $this->tableName = $this->tablePre . $tableName; }