public List <CommentsList> GetCommentsListList(ref DataPage dp, CommentsList searchCommentsList)
        {
            _admin = new WeaponDesignAdminService.WeaponDesignAdminServiceClient();
            List <CommentsList> lists = new List <CommentsList>();

            try
            {
                lists = _admin.GetCommentsListList(ref dp, searchCommentsList);
                _admin.Close();
                return(lists);
            }
            catch (Exception ex)
            {
                _admin.CloseCatch(ex, "GetCommentsListList 获取评论失败");
                return(lists);
            }
        }