From 39f6ab859727413b474294a1e82d360d4eafaa40 Mon Sep 17 00:00:00 2001 From: zhaoxiang Date: Fri, 19 Feb 2021 19:34:04 +0800 Subject: [PATCH] =?UTF-8?q?modified=20=E5=88=9D=E5=A7=8B=E5=8C=96=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E6=9E=84=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/util/AutoBuild.php | 46 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 app/util/AutoBuild.php diff --git a/app/util/AutoBuild.php b/app/util/AutoBuild.php new file mode 100644 index 0000000..ba89479 --- /dev/null +++ b/app/util/AutoBuild.php @@ -0,0 +1,46 @@ + + */ + +namespace app\util; + + +class AutoBuild { + + private $config = [ + 'model' => 0, // 是否需要构建模型 + 'control' => 1, // 是否需要构建控制器 + 'menu' => 1, // 是否需要构建目录 + 'route' => 1, // 是否需要构建路由 + 'name' => '', // 唯一标识 + 'module' => 1, // 构建类型 1:admin;2:api + 'table' => '' // 表名称 + ]; + + public function run($config) { + + } + + private function buildControl() { + + } + + private function buildModel() { + + } + + private function createTable() { + + } + + private function buildMenu() { + + } + + private function buildRoute() { + + } +}