创建第一个CRUD API 
下面我们来创建第一个 CRUD API,用于管理 Student 数据
新建模块 
首先,创建一个模块,名称为demo-student。有两种创建模块的方式:
1. Cli 命令 
bash
$ vona :create:module demo-student --suite=2. 菜单命令 
TIP
右键菜单 - [项目路径/src/module]: Vona Create/Module
依据提示输入模块的名称demo-student,VSCode 插件会自动创建模块的代码骨架
WARNING
请确认已经安装了 Vscode 插件:Vona - Official
新建CRUD 
然后,我们使用 Vona 内置的代码生成器来创建 CRUD 的代码骨架。同样有两种方式:
1. Cli命令 
bash
$ vona :tools:crud student --module=demo-student2. 菜单命令 
TIP
右键菜单 - [模块路径]: Vona Tools/Generate Crud
依据提示输入资源名称student,VSCode 插件会自动创建 CRUD 的代码骨架
Swagger/Rapidoc 
我们可以使用 Swagger/Rapidoc 来查看和运行 Student 的 CRUD API
当启动开发服务后,系统自动在终端输出 Swagger/Rapidoc 的 URL 路径:
bash
[a-swagger] swagger: http://localhost:7102/swagger
[a-swagger] rapidoc: http://localhost:7102/rapidoc