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); }
public ActionResult exceptionLog(VMMsgSearchExceptionLogRequest condtion, string pageId) { setPageId(pageId); ViewBag.condtion = condtion; return(View()); }