mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-05 19:41:43 +08:00
modified 初始化自动构建
This commit is contained in:
parent
7a2b5c326e
commit
39f6ab8597
46
app/util/AutoBuild.php
Normal file
46
app/util/AutoBuild.php
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @since 2021-02-18
|
||||||
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
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() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user