88 lines
2.1 KiB
Go
88 lines
2.1 KiB
Go
// Code generated by goctl. DO NOT EDIT.
|
|
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"fusenapi/server/product/internal/svc"
|
|
|
|
"github.com/zeromicro/go-zero/rest"
|
|
)
|
|
|
|
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
|
|
server.AddRoutes(
|
|
[]rest.Route{
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/list",
|
|
Handler: GetProductListHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/success-recommand",
|
|
Handler: GetSuccessRecommandHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/get-size-by-product",
|
|
Handler: GetSizeByProductHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/design",
|
|
Handler: GetProductDesignHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodPost,
|
|
Path: "/api/product/design-gather",
|
|
Handler: DesignGatherHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/info",
|
|
Handler: GetProductInfoHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodPost,
|
|
Path: "/api/product/save-design",
|
|
Handler: SaveDesignHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/other-list",
|
|
Handler: OtherProductListHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/recommand",
|
|
Handler: GetRecommandProductListHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/tag_product_list",
|
|
Handler: GetTagProductListHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/render_design",
|
|
Handler: GetRenderDesignHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/get_model_by_pid",
|
|
Handler: GetModelByPidHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/get_price_by_pid",
|
|
Handler: GetPriceByPidHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/get_size_by_pid",
|
|
Handler: GetSizeByPidHandler(serverCtx),
|
|
},
|
|
},
|
|
)
|
|
}
|