123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "bp.jydev.jianyu360.cn/CRM/networkManage/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/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/pr/monitor/list",
- Handler: PrMonitorListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/pr/collect/list",
- Handler: PrCollectListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/init/findInitInfo",
- Handler: findInitInfoHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/init/updateInitInfo",
- Handler: updateInitInfoHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/networkManage/deleteCache",
- Handler: deleteCacheHandler(serverCtx),
- },
- {
- Method: http.MethodGet,
- Path: "/networkManage/getEntNameList",
- Handler: entNameListHandler(serverCtx),
- },
- },
- )
- }
|