34 lines
791 B
Go
34 lines
791 B
Go
// Code scaffolded by goctl. Safe to edit.
|
|
// goctl 1.10.1
|
|
|
|
package dict
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/zeromicro/go-zero/rest/httpx"
|
|
"sundynix-micro-go/app/system/api/internal/logic/dict"
|
|
"sundynix-micro-go/app/system/api/internal/svc"
|
|
"sundynix-micro-go/app/system/api/internal/types"
|
|
"sundynix-micro-go/common/response"
|
|
)
|
|
|
|
// 字典列表
|
|
func GetDictListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
var req types.DictListReq
|
|
if err := httpx.Parse(r, &req); err != nil {
|
|
response.Fail(w, err.Error())
|
|
return
|
|
}
|
|
|
|
l := dict.NewGetDictListLogic(r.Context(), svcCtx)
|
|
resp, err := l.GetDictList(&req)
|
|
if err != nil {
|
|
response.Fail(w, err.Error())
|
|
} else {
|
|
response.OkWithData(w, resp)
|
|
}
|
|
}
|
|
}
|