1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- // 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),
- },
- },
- rest.WithMaxBytes(104857600),
- )
- }
|