1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- // 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/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),
- },
- },
- )
- }
|