123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "bp.jydev.jianyu360.cn/CRM/application/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: "/networkManage/owner/list",
- Handler: ownerListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/network/project/list",
- Handler: projectListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/pr/pname/ass",
- Handler: PrPnameAssHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/pr/project/analyse",
- Handler: CoopHistoryListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/network/addOrUpdate",
- Handler: addOrUpdateHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/network/associate",
- Handler: associateHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/network/allProject",
- Handler: allProjectHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/network/networkList",
- Handler: networkListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/ignore/action",
- Handler: ignoreActionHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/infomation/detail",
- Handler: infoDetailHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/pr/project/history",
- Handler: projectHistoryHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/owner/route",
- Handler: ownerRouteHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/owner/cooperate",
- Handler: ownerCooperateHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/candidate/channel/list",
- Handler: candidateChannelListHandler(serverCtx),
- },
- },
- )
- }
|