You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1011 B
Go
39 lines
1011 B
Go
1 year ago
|
package dictionary_admin
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"git.noahlan.cn/noahlan/ntool-biz/zero/statusz"
|
||
|
"github.com/zeromicro/go-zero/rest/httpx"
|
||
|
|
||
|
"git.noahlan.cn/n-admin/n-admin-server/api/internal/logic/dictionary_admin"
|
||
|
"git.noahlan.cn/n-admin/n-admin-server/api/internal/svc"
|
||
|
"git.noahlan.cn/n-admin/n-admin-server/api/internal/types"
|
||
|
)
|
||
|
|
||
|
// swagger:route get /api/admin/dictionary dictionary_admin GetDictionaryAdmin
|
||
|
//
|
||
|
// Get dictionary | 获取字典
|
||
|
//
|
||
|
// Get dictionary | 获取字典
|
||
|
//
|
||
|
// Responses:
|
||
|
// 200: DictionaryInfo
|
||
|
|
||
|
func GetDictionaryAdminHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||
|
const transErr = true
|
||
|
var req types.DictionaryReq
|
||
|
if err := httpx.Parse(r, &req); err != nil {
|
||
|
statusz.ResponseHandler(r, w, transErr, nil, err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
l := dictionary_admin.NewGetDictionaryAdminLogic(r, r.Context(), svcCtx)
|
||
|
resp, err := l.GetDictionaryAdmin(&req)
|
||
|
|
||
|
statusz.ResponseHandler(r, w, transErr, resp, err)
|
||
|
|
||
|
}
|
||
|
}
|