123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "app.yhyue.com/moapp/jyInfo/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: "/jyinfo/publish/biddingInfo",
- Handler: pubInfoHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/publish/supplyInfo",
- Handler: pubSupplyInfoHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/supplyInfoDetail",
- Handler: supplyInfoDetailHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/supplySearch",
- Handler: supplySearchHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/publishStatus",
- Handler: pubInfoCountHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/pushedRelated",
- Handler: assProjecctHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/getArea",
- Handler: getProvinceHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/getIndustry",
- Handler: getIndustryHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/myPublishList",
- Handler: myPublishListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/myPublishDetail",
- Handler: myPublishDetailHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/delMyPublish",
- Handler: delMyPublishHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/reviewStatus",
- Handler: reviewStatusHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/infoFile/upload",
- Handler: uploadHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/manage/infoList",
- Handler: infoListHandler(serverCtx),
- },
- {
- Method: http.MethodGet,
- Path: "/jyinfo/manage/infoDetail",
- Handler: infoDetailHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/manage/infoDetail",
- Handler: infoDetailHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/manage/infoExamine",
- Handler: infoExamineHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jyinfo/manage/organFrozen",
- Handler: organFrozenHandler(serverCtx),
- },
- },
- )
- }
|