public ResultPager <VueMsgInfoNotification> QueryUserNotification(QMsgUser query)
        {
            ResultPager <VueMsgInfoNotification> result = new ResultPager <VueMsgInfoNotification>();

            try
            {
                query.userId    = this.getUserId();
                result.PageData = _messageServices.QueryUserNotifictaion(query);
            }
            catch (Exception ex)
            {
                result.ErrorMsg = ex.Message;
            }
            return(result);
        }