1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "jyBXCore/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: "/jybx/core/:userType/searchList",
- Handler: searchListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/core/:searchType/searchLimit",
- Handler: limitSearchContentHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/core/participate/show",
- Handler: participateShowHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/core/participate/info",
- Handler: ParticipateInfoHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/core/participate/updateBidStatus",
- Handler: updateBidStatusHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/core/participate/content",
- Handler: ParticipateContentHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/core/participate/records",
- Handler: ParticipateRecordsHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/core/participate/persons",
- Handler: ParticipatePersonsHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/core/participate/setUpInfo",
- Handler: participateSetUpInfoHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/core/participate/:actionType/info",
- Handler: participateActionHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/core/participate/:identity/list",
- Handler: participateListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/core/statistics/pushStatistics",
- Handler: pushStatisticsHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/core/statistics/projectStatistics",
- Handler: projectStatisticsHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/core/polymerizeSearch",
- Handler: polymerizeSearchHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/core/statistics/projectDetails",
- Handler: statisticsProjectDetailsHandler(serverCtx),
- },
- },
- )
- }
|