installRegion(); } /** * 写入默认区域数据 * @return void * @throws \think\db\exception\DbException */ private function installRegion() { // 检查数据 $table = 'base_postage_region'; $result = $this->fetchRow("select count(1) _count from $table"); if (isset($result['_count']) && $result['_count'] > 0) return; // 写入数据 $this->execute(<<