12345678910111213141516171819202122232425262728293031323334353637 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "bp.jydev.jianyu360.cn/BaseService/entManageApplication/api/internal/svc"
- "github.com/zeromicro/go-zero/rest"
- )
- func RegisterHandlers(engine *rest.Server, serverCtx *svc.ServiceContext) {
- engine.AddRoutes(
- []rest.Route{
- {
- Method: http.MethodPost,
- Path: "/entManageApplication/buyProductList",
- Handler: BuyProductListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/entManageApplication/usePersonList",
- Handler: UsePersonListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/entManageApplication/addUsePerson",
- Handler: AddUsePersonHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/entManageApplication/delUsePerson",
- Handler: DelUsePersonHandler(serverCtx),
- },
- },
- )
- }
|