feat(server.tests.test5): 新增 server 实验5

This commit is contained in:
2025-11-18 13:35:30 +08:00
parent 84b4770d5a
commit d0acf5a36d
9 changed files with 1095 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
### 实验 5
- 创建数据表
```mysql
-- 插件用户表
CREATE TABLE users (
id INT AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(255) NOT NULL,
password VARCHAR(255) NOT NULL,
email VARCHAR(255) NOT NULL,
gender ENUM('male','female') NOT NULL,
hobbies TEXT,
city TEXT,
description TEXT
)
```
- 导入 api 到 apifox
apifox 导出数据: [apifox 导出数据文件](./Server.apifox.json)