feat: 添加角色分页/详情/新增/更新/删除接口

This commit is contained in:
2025-02-25 18:14:52 +08:00
parent 2bdfb24505
commit 43b4332d57
9 changed files with 321 additions and 4 deletions

View File

@@ -31,9 +31,9 @@ class CreateSysRole extends Migrator
$table->addColumn('pid', 'integer', ['null' => false, 'default' => 0, 'comment' => '父级ID'])
->addColumn('name', 'string', ['limit' => 64, 'null' => false, 'comment' => '角色名称'])
->addColumn('desc', 'string', ['limit' => 255, 'null' => false, 'comment' => '角色描述'])
->addColumn('status', 'boolean', ['null' => false, 'default' => 1, 'comment' => '-1为禁用, 1为启用'])
->addColumn('created_at', 'timestamp', ['null' => false, 'default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间'])
->addColumn('updated_at', 'timestamp', ['null' => false, 'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP', 'comment' => '更新时间'])
->addColumn('deleted_at', 'timestamp', ['null' => true, 'default' => null, 'comment' => '删除时间'])
->create();
}
}