// 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: "/crmApplication/clue/add", Handler: clueAddHandler(serverCtx), }, { Method: http.MethodPost, Path: "/crmApplication/saleChance/add", Handler: saleChanceAddHandler(serverCtx), }, { Method: http.MethodPost, Path: "/crmApplication/employ/operate", Handler: infoOperateHandler(serverCtx), }, { Method: http.MethodPost, Path: "/crmApplication/information/transfer", Handler: transferHandler(serverCtx), }, { Method: http.MethodPost, Path: "/crmApplication/ignore/operate", Handler: ignoreOperateHandler(serverCtx), }, { Method: http.MethodPost, Path: "/crmApplication/employ/info", Handler: infoEmployinfoHandler(serverCtx), }, { Method: http.MethodPost, Path: "/crmApplication/custom/add", Handler: customAddHandler(serverCtx), }, { Method: http.MethodPost, Path: "/crmApplication/file/upload", Handler: fileUploadHandler(serverCtx), }, }, ) }