🎨 新增管理后台订单接口

This commit is contained in:
2025-09-01 22:37:54 +08:00
parent 80decc222f
commit ebcd089e34
5 changed files with 87 additions and 8 deletions

View File

@@ -10,7 +10,13 @@ type BalancePay struct {
type GetOrderList struct {
common.PageInfo
Status int `json:"status" form:"status"` // 订单状态
Status int `json:"status" form:"status"` // 订单状态
Title string `json:"title" form:"title"` // 订单标题
Name string `json:"name" form:"name"` // 订单名称
PayType int `json:"pay_type" form:"pay_type"`
OrderType int `json:"order_type" form:"order_type"`
StartTime string `json:"start_time" form:"start_time"`
EndTime string `json:"end_time" form:"end_time"`
}
type PayReq struct {