43 lines
982 B
Go
43 lines
982 B
Go
// Code generated by goctl. DO NOT EDIT.
|
|
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"fusenapi/server/product-template/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-template/detail",
|
|
Handler: GetTemplatevDetailHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/product-template/base-map-list",
|
|
Handler: GetBaseMapListHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodPost,
|
|
Path: "/api/product-template/base-map-update",
|
|
Handler: SaveBaseMapHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodPost,
|
|
Path: "/api/product-template/base-map-add",
|
|
Handler: AddBaseMapHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodPost,
|
|
Path: "/api/product-template/update-template",
|
|
Handler: UpdateTemplateHandler(serverCtx),
|
|
},
|
|
},
|
|
)
|
|
}
|