...
|
...
|
@@ -523,11 +523,11 @@ func UserList(param protocol.RequestUserList) (protocol.ResponseUserList, error) |
|
|
cond = append(cond, likeCond)
|
|
|
}
|
|
|
var (
|
|
|
result []protocol.UserListItem
|
|
|
result = make([]protocol.UserListItem, 0)
|
|
|
pageInfo protocol.ResponsePageInfo
|
|
|
err error
|
|
|
responseData = protocol.ResponseUserList{
|
|
|
List: make([]protocol.UserListItem, 0),
|
|
|
List: result,
|
|
|
}
|
|
|
)
|
|
|
p := utils.NewQueryDataByPage(countSql+whereString, datasql+whereString)
|
...
|
...
|
|