123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "bp.jydev.jianyu360.cn/BaseService/biService/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: "/biService/myDataAsset",
- Handler: MyDataAssetHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/addProject",
- Handler: AddProjectReqHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/getInfoId",
- Handler: GetInfoIdHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/drawClue",
- Handler: DrawClueHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/call",
- Handler: CallHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/distributeClue",
- Handler: DistributeClueHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/distributeClueShow",
- Handler: DistributeClueShowHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/clueImport",
- Handler: ClueImportHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/ClueAdd",
- Handler: ClueAddHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/clueImportTt",
- Handler: ClueImportTlHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/autoFollow",
- Handler: AutoFollowHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/sqlManage",
- Handler: sqlManageHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/myInfo",
- Handler: MyinfoHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/resEmpower",
- Handler: ResEmpowerHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/allProjectExport",
- Handler: allProjectExportHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/allInfoExport",
- Handler: allInfoExportHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/infoOperate",
- Handler: infoOperateHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/getCompanyType",
- Handler: getCompanyTypeHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/sendMail",
- Handler: sendMailHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/upFile",
- Handler: upFileHandler(serverCtx),
- },
- },
- rest.WithMaxBytes(104857600),
- )
- }
|