作者 唐旭辉

bug 修复 3002

@@ -526,7 +526,9 @@ func UserList(param protocol.RequestUserList) (protocol.ResponseUserList, error) @@ -526,7 +526,9 @@ func UserList(param protocol.RequestUserList) (protocol.ResponseUserList, error)
526 result []protocol.UserListItem 526 result []protocol.UserListItem
527 pageInfo protocol.ResponsePageInfo 527 pageInfo protocol.ResponsePageInfo
528 err error 528 err error
529 - responseData protocol.ResponseUserList 529 + responseData = protocol.ResponseUserList{
  530 + List: make([]protocol.UserListItem, 0),
  531 + }
530 ) 532 )
531 p := utils.NewQueryDataByPage(countSql+whereString, datasql+whereString) 533 p := utils.NewQueryDataByPage(countSql+whereString, datasql+whereString)
532 p.AddParam(cond...) 534 p.AddParam(cond...)