123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "app.yhyue.com/moapp/jyResourcesCenter/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: "/customExport/account",
- Handler: ExportChargeAccountHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/customExport/charge",
- Handler: ExportChargeHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/entAccountAdd",
- Handler: EntAccountAddHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/entAccountGiven",
- Handler: EntAccountGivenHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/entAccountRecovery",
- Handler: EntAccountRecoveryHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/entSourceNumAdd",
- Handler: EntSourceNumAddHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/findAuth",
- Handler: FindAuthHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/findBalance",
- Handler: FindBalanceHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/findPreview",
- Handler: FindPreviewHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/findRecord",
- Handler: FindRecordHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/purchaseUserBalance",
- Handler: PurchaseUserBalanceHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/updateVipTime",
- Handler: UpdateVipTimeHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/useUserDetailed",
- Handler: UseUserDetailedHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/userMerge",
- Handler: UserMergeHandler(serverCtx),
- },
- },
- )
- }
|