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