123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- // 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: employOperateHandler(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: employInfoHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/custom/add",
- Handler: customAddHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/file/upload",
- Handler: fileUploadHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/employ/distribute",
- Handler: employDistributeHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/ent/info",
- Handler: entinfoHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/info/push",
- Handler: pushMsgHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/info/canAdd",
- Handler: canAddReqHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/owner/list",
- Handler: ownerListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/network/project/list",
- Handler: projectListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/pr/pname/ass",
- Handler: PrPnameAssHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/pr/project/analyse",
- Handler: CoopHistoryListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/network/addOrUpdate",
- Handler: addOrUpdateHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/network/associate",
- Handler: associateHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/network/allProject",
- Handler: allProjectHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/network/networkList",
- Handler: networkListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/ignore/action",
- Handler: ignoreActionHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/infomation/detail",
- Handler: infoDetailHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/pr/project/history",
- Handler: projectHistoryHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/owner/route",
- Handler: ownerRouteHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/owner/cooperate",
- Handler: ownerCooperateHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/crmApplication/candidate/channel/list",
- Handler: candidateChannelListHandler(serverCtx),
- },
- },
- )
- }
|