78 lines
1.9 KiB
Go
78 lines
1.9 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/tag_product_list",
|
|
Handler: GetTagProductListHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/get_model_by_pid",
|
|
Handler: GetModelByPidHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/get_product_step_price",
|
|
Handler: GetProductStepPriceHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodPost,
|
|
Path: "/api/product/calculate_product_price",
|
|
Handler: CalculateProductPriceHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/get_size_by_pid",
|
|
Handler: GetSizeByPidHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/get_template_by_pid",
|
|
Handler: GetTemplateByPidHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/get_fitting_by_pid",
|
|
Handler: GetFittingByPidHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/get_light_by_pid",
|
|
Handler: GetLightByPidHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/get_render_setting_by_pid",
|
|
Handler: GetRenderSettingByPidHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/recommend",
|
|
Handler: GetRecommendProductListHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/home_page_recommend",
|
|
Handler: HomePageRecommendProductListHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product/get_product_detail",
|
|
Handler: GetProductDetailHandler(serverCtx),
|
|
},
|
|
},
|
|
)
|
|
}
|