重构 orm 代码生成逻辑,实现 bill 接口,优化请求字段检查与 list total 查询逻辑

This commit is contained in:
2025-04-11 17:36:34 +08:00
parent c1b4f8d605
commit 636bdcdb87
36 changed files with 794 additions and 193 deletions

View File

@@ -41,6 +41,10 @@ func ApplyRouters(app *fiber.App) {
trade := api.Group("/trade")
trade.Post("/create", handlers.CreateTrade)
// 账单
bill := api.Group("/bill")
bill.Post("/list", handlers.ListBill)
// 临时
app.Get("/collect", handlers.CreateChannelGet)
app.Get("/temp", handlers.Temp)