一键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 <?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',
], ],
]; ];