예제 #1
0
파일: Job.cs 프로젝트: wangjinfang/DTCMS
 /// <summary>
 /// 留言分页列表
 /// </summary>
 /// <param name="page_size">页面大小</param>
 /// <param name="page_index">当前页码</param>
 /// <param name="strwhere">查询条件</param>
 /// <param name="totalcount">总记录数</param>
 /// <returns>DateTable</returns>
 public DataTable get_job_list(int page_size, int page_index, string strwhere, out int totalcount)
 {
     DataTable dt = new DataTable();
     string _where = "is_lock=0";
     if (!string.IsNullOrEmpty(strwhere))
     {
         _where += " and " + strwhere;
     }
     dt = new BLL.job().GetList(page_size, page_index, _where, "add_time desc", out totalcount).Tables[0];
     return dt;
 }
예제 #2
0
파일: Job.cs 프로젝트: wangjinfang/DTCMS
 /// <summary>
 /// 留言列表
 /// </summary>
 /// <param name="top">显示条数</param>
 /// <param name="strwhere">查询条件</param>
 /// <returns>DataTable</returns>
 public DataTable get_job_list(int top, string strwhere)
 {
     DataTable dt = new DataTable();
     string _where = "is_lock=0";
     if (!string.IsNullOrEmpty(strwhere))
     {
         _where += " and " + strwhere;
     }
     dt = new BLL.job().GetList(top, _where," sort_id asc,id desc").Tables[0];
     return dt;
 }
예제 #3
0
파일: Job.cs 프로젝트: wangjinfang/DTCMS
        /// <summary>
        /// 留言分页列表
        /// </summary>
        /// <param name="page_size">页面大小</param>
        /// <param name="page_index">当前页码</param>
        /// <param name="strwhere">查询条件</param>
        /// <param name="totalcount">总记录数</param>
        /// <returns>DateTable</returns>
        public DataTable get_job_list(int page_size, int page_index, string strwhere, out int totalcount)
        {
            DataTable dt     = new DataTable();
            string    _where = "is_lock=0";

            if (!string.IsNullOrEmpty(strwhere))
            {
                _where += " and " + strwhere;
            }
            dt = new BLL.job().GetList(page_size, page_index, _where, "add_time desc", out totalcount).Tables[0];
            return(dt);
        }
예제 #4
0
파일: Job.cs 프로젝트: wangjinfang/DTCMS
        /// <summary>
        /// 留言列表
        /// </summary>
        /// <param name="top">显示条数</param>
        /// <param name="strwhere">查询条件</param>
        /// <returns>DataTable</returns>
        public DataTable get_job_list(int top, string strwhere)
        {
            DataTable dt     = new DataTable();
            string    _where = "is_lock=0";

            if (!string.IsNullOrEmpty(strwhere))
            {
                _where += " and " + strwhere;
            }
            dt = new BLL.job().GetList(top, _where, " sort_id asc,id desc").Tables[0];
            return(dt);
        }