feat: add order module

This commit is contained in:
Rogee
2025-01-10 16:54:33 +08:00
parent 2ba8ed7dbd
commit ca1b4cdd12
17 changed files with 456 additions and 40 deletions

View File

@@ -31,7 +31,7 @@ func (r *Routes) Register(router fiber.Router) {
// 注册路由组: Controller
router.Get("/t/:tenant", Func2(
r.controller.Index,
QueryParam[string]("tenant"),
PathParam[string]("tenant"),
Local[*jwt.Claims]("claim"),
))