Ejemplo n.º 1
0
 /// <summary>
 /// 手机版待办任务分页查询
 /// </summary>
 /// <param name="msgParams"></param>
 /// <param name="rowCount"></param>
 /// <param name="pageCount"></param>
 /// <returns></returns>
 public List<T_FLOW_ENGINEMSGLIST> PendingTasksParmsPageIndexForMobile(MsgParms msgParams, ref int rowCount, ref int pageCount)
 {
     EngineServicesDAL dal = new EngineServicesDAL();
     try
     {
         return dal.MsgListByPagingForMobile(msgParams.PageIndex, msgParams.PageSize, msgParams.UserID, msgParams.Status, msgParams.MessageBody, msgParams.BeginDate, msgParams.EndDate, ref rowCount, ref pageCount);
     }
     catch
     {
         return null;
     }
 }