/// <summary> /// 获取历史推送 /// </summary> /// <param name="condtion"></param> /// <returns></returns> internal static SearchSentPushListReplayModel SearchPushHistoryList(SearchSentPushListRequestModel condtion) { SearchSentPushListReplayModel result = new SearchSentPushListReplayModel(); try { result = SysSmsDataBaseManager.RunSearchHistoryPushList(condtion); } catch (Exception e) { result.rows = new List <SentPushInfoModel>(); SysManagerService.SysSaveErrorLogMsg(e.ToString(), condtion); } return(result); }