文档生成不正确的问题
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 6m52s

This commit is contained in:
2026-04-07 18:19:47 +08:00
parent 80c6f6c756
commit 303bffbe84

View File

@@ -14,7 +14,7 @@ func registerAdminOrderRoutes(router fiber.Router, handler *admin.OrderHandler,
Register(router, doc, basePath, "POST", "/orders", handler.Create, RouteSpec{
Summary: "创建订单",
Tags: []string{"订单管理"},
Input: new(dto.CreateOrderRequest),
Input: new(dto.CreateAdminOrderRequest),
Output: new(dto.OrderResponse),
Auth: true,
})