12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "jyBXSubscribe/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/subscribe/:userType/list",
- Handler: subscribeListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/:userType/someInfo",
- Handler: someInfoHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/:userType/update",
- Handler: subscribeUpdateHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/:userType/byPushHistory",
- Handler: ByPushHistoryHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/:userType/setRead",
- Handler: SetReadHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/:userType/getKey",
- Handler: getKeyHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/:userType/distributor",
- Handler: distributorHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/:userType/viewStatus",
- Handler: viewStatusHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/msgDistributor",
- Handler: msgDistributorHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/getUser",
- Handler: getUserHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/setUser",
- Handler: setUserHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/getPushSet",
- Handler: getPushSetHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/setPushSet",
- Handler: setPushSetHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/getStaffSubscribe",
- Handler: getStaffSubscribeListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/getStaffSubscribeDetail",
- Handler: getStaffSubscribeDetailHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/bidDistributor",
- Handler: bidDistributorHandler(serverCtx),
- },
- },
- )
- }
|