feat: 实现数据库迁移、搜索和分页功能

- 添加数据库迁移系统和初始用户表迁移
- 实现搜索功能模块和API
- 实现分页功能支持
- 添加相关测试文件
- 更新项目配置和文档
This commit is contained in:
2025-08-05 23:41:40 +08:00
parent c18f345475
commit cf01d557b9
26 changed files with 3578 additions and 27 deletions

View File

@@ -1,6 +1,7 @@
//! HTTP 请求处理器模块
pub mod user;
pub mod admin;
use axum::{response::Json, http::StatusCode};
use serde_json::{json, Value};