29 lines
714 B
Go
29 lines
714 B
Go
package user
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/zeromicro/go-zero/rest/httpx"
|
|
"sundynix-micro-go/app/system/api/internal/logic/user"
|
|
"sundynix-micro-go/app/system/api/internal/svc"
|
|
"sundynix-micro-go/app/system/api/internal/types"
|
|
"sundynix-micro-go/common/response"
|
|
)
|
|
|
|
func GetUserListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
var req types.UserListReq
|
|
if err := httpx.Parse(r, &req); err != nil {
|
|
response.Fail(w, err.Error())
|
|
return
|
|
}
|
|
l := user.NewGetUserListLogic(r.Context(), svcCtx)
|
|
resp, err := l.GetUserList(&req)
|
|
if err != nil {
|
|
response.Fail(w, err.Error())
|
|
} else {
|
|
response.OkWithData(w, resp)
|
|
}
|
|
}
|
|
}
|