コード例 #1
0
        public ResultEntity <VueMsgInfoOverview> UserOverview()
        {
            ResultEntity <VueMsgInfoOverview> result = new ResultEntity <VueMsgInfoOverview>();

            try
            {
                string userId = this.getUserId();
                result.Entity = _messageServices.GetUserMsgOverview(userId);
            }
            catch (Exception ex)
            {
                result.ErrorMsg = ex.Message;
            }
            return(result);
        }