Exemple #1
0
        public BaseResponse <BaseResponseList <SysExcptionLog> > searchExceptionLog(VMMsgSearchExceptionLogRequest condtion)
        {
            BaseResponse <BaseResponseList <SysExcptionLog> > result = new BaseResponse <BaseResponseList <SysExcptionLog> >();

            try
            {
                result.result = SysExcptionLog.searchLog(condtion);
            }
            catch (Exception e) {
                result = SysException.getResult(result, e, condtion);
            }
            return(result);
        }
Exemple #2
0
 public ActionResult exceptionLog(VMMsgSearchExceptionLogRequest condtion, string pageId)
 {
     setPageId(pageId);
     ViewBag.condtion = condtion;
     return(View());
 }