一键CRUD功能针对大小写问题处理
This commit is contained in:
parent
fd2086ce90
commit
ae67fb2119
@ -1,17 +1,25 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
// | 控制台配置
|
// | 控制台配置
|
||||||
|
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
||||||
// 指令定义
|
// 指令定义
|
||||||
|
|
||||||
'commands' => [
|
'commands' => [
|
||||||
'crud' => 'app\crud\Command\Crud',
|
'crud' => 'app\crud\command\Crud',
|
||||||
'crud-c' => 'app\crud\Command\CrudController',
|
'crud-c' => 'app\crud\command\CrudController',
|
||||||
'crud-m' => 'app\crud\Command\CrudModel',
|
'crud-m' => 'app\crud\command\CrudModel',
|
||||||
'crud-v' => 'app\crud\Command\CrudValidate',
|
'crud-v' => 'app\crud\command\CrudValidate',
|
||||||
'crud-l' => 'app\crud\Command\CrudList',
|
'crud-l' => 'app\crud\command\CrudList',
|
||||||
'crud-a' => 'app\crud\Command\CrudAdd',
|
'crud-a' => 'app\crud\command\CrudAdd',
|
||||||
'crud-e' => 'app\crud\Command\CrudEdit',
|
'crud-e' => 'app\crud\command\CrudEdit',
|
||||||
'crud-r' => 'app\crud\Command\CrudRead',
|
'crud-r' => 'app\crud\command\CrudRead',
|
||||||
],
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user