一键CRUD功能针对大小写问题处理

This commit is contained in:
hdm 2022-08-26 09:00:42 +08:00
parent fd2086ce90
commit ae67fb2119

View File

@ -1,17 +1,25 @@
<?php
// +----------------------------------------------------------------------
// | 控制台配置
// +----------------------------------------------------------------------
return [
// 指令定义
'commands' => [
'crud' => 'app\crud\Command\Crud',
'crud-c' => 'app\crud\Command\CrudController',
'crud-m' => 'app\crud\Command\CrudModel',
'crud-v' => 'app\crud\Command\CrudValidate',
'crud-l' => 'app\crud\Command\CrudList',
'crud-a' => 'app\crud\Command\CrudAdd',
'crud-e' => 'app\crud\Command\CrudEdit',
'crud-r' => 'app\crud\Command\CrudRead',
'crud' => 'app\crud\command\Crud',
'crud-c' => 'app\crud\command\CrudController',
'crud-m' => 'app\crud\command\CrudModel',
'crud-v' => 'app\crud\command\CrudValidate',
'crud-l' => 'app\crud\command\CrudList',
'crud-a' => 'app\crud\command\CrudAdd',
'crud-e' => 'app\crud\command\CrudEdit',
'crud-r' => 'app\crud\command\CrudRead',
],
];