12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "jyBXBase/api/internal/svc"
- "github.com/zeromicro/go-zero/rest"
- )
- func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
- server.AddRoutes(
- []rest.Route{
- {
- Method: http.MethodPost,
- Path: "/bidcoll/isColl",
- Handler: IsCollActionHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/bidcoll/action",
- Handler: BCActionHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/bidcoll/label",
- Handler: LabelActionHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/bidcoll/getLabel",
- Handler: GetLabelActionHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/bidcoll/list",
- Handler: ListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/bidcoll/addLabel",
- Handler: AddLabelHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/search/showSearchScreen",
- Handler: ShowSearchScreenHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/search/addSearchScreen",
- Handler: AddSearchScreenHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/search/checkSearch",
- Handler: CheckSearchScreenHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/search/delSearch",
- Handler: DelSearchScreenHandler(serverCtx),
- },
- },
- )
- }
|