Пример #1
0
        /// <summary>
        /// 分页获取数据列表
        /// </summary>
        public DataSet GetListByPage(string strWhere, string order, int pageSize, int pageIndex, out long record)
        {
            Common  common = new Common();
            DataSet ds     = common.getDataPage("tb_JH_PlannedSource", "*", strWhere, order, pageSize, pageIndex, out record);

            return(ds);
        }
Пример #2
0
        /// <summary>
        /// 分页获取数据列表
        /// </summary>
        public DataSet GetListByPage(string sqlWhere, string order, int pageSize, int pageIndex, out long totalRecord)
        {
            Common  pageData = new Common();
            DataSet ds       = pageData.getDataPage("vw_JH_MPS", "*", sqlWhere, order, pageSize, pageIndex, out totalRecord);

            return(ds);
        }
Пример #3
0
        /// <summary>
        /// 分页获取数据列表
        /// </summary>
        /// <returns></returns>
        public DataSet GetListByPage(string strWhere, string order, int pageSize, int pageIndex, out long record)
        {
            Common  common = new Common();
            DataSet ds     = common.getDataPage("vw_JC_Material", "*", strWhere, order, pageSize, pageIndex, out record);

            return(ds);
        }