2023-09-20 15:07:12 +08:00
|
|
|
// Code generated by goctl. DO NOT EDIT.
|
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"fusenapi/server/order/internal/svc"
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/rest"
|
|
|
|
)
|
|
|
|
|
|
|
|
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
|
|
|
|
server.AddRoutes(
|
|
|
|
[]rest.Route{
|
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
|
|
|
Path: "/api/order/create",
|
|
|
|
Handler: CreateOrderHandler(serverCtx),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
|
|
|
Path: "/api/order/create-prepayment-deposit",
|
2023-09-21 12:11:15 +08:00
|
|
|
Handler: CreatePrePaymentByDepositHandler(serverCtx),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
|
|
|
Path: "/api/order/create-prepayment-balance",
|
|
|
|
Handler: CreatePrePaymentByBalanceHandler(serverCtx),
|
2023-09-20 15:07:12 +08:00
|
|
|
},
|
2023-10-07 18:36:59 +08:00
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
|
|
|
Path: "/api/order/delete",
|
|
|
|
Handler: DeleteOrderHandler(serverCtx),
|
|
|
|
},
|
2023-10-08 18:38:39 +08:00
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
|
|
|
Path: "/api/order/close",
|
|
|
|
Handler: CloseOrderHandler(serverCtx),
|
|
|
|
},
|
2023-10-17 18:32:43 +08:00
|
|
|
{
|
|
|
|
Method: http.MethodGet,
|
|
|
|
Path: "/api/order/invoice",
|
|
|
|
Handler: OrderInvoiceHandler(serverCtx),
|
|
|
|
},
|
2023-09-20 15:07:12 +08:00
|
|
|
{
|
2023-09-21 10:30:36 +08:00
|
|
|
Method: http.MethodGet,
|
2023-09-20 15:07:12 +08:00
|
|
|
Path: "/api/order/list",
|
|
|
|
Handler: OrderListHandler(serverCtx),
|
|
|
|
},
|
2023-09-21 10:30:36 +08:00
|
|
|
{
|
|
|
|
Method: http.MethodGet,
|
|
|
|
Path: "/api/order/detail",
|
|
|
|
Handler: OrderDetailHandler(serverCtx),
|
|
|
|
},
|
2023-09-20 15:07:12 +08:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|