118 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			2.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/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/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),
 | |
| 			},
 | |
| 			{
 | |
| 				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/get_last_product_design",
 | |
| 				Handler: GetLastProductDesignHandler(serverCtx),
 | |
| 			},
 | |
| 			{
 | |
| 				Method:  http.MethodGet,
 | |
| 				Path:    "/api/product/recommand",
 | |
| 				Handler: GetRecommandProductListHandler(serverCtx),
 | |
| 			},
 | |
| 			{
 | |
| 				Method:  http.MethodGet,
 | |
| 				Path:    "/api/product/home_page_recommend",
 | |
| 				Handler: HomePageRecommendProductListHandler(serverCtx),
 | |
| 			},
 | |
| 		},
 | |
| 	)
 | |
| }
 |