예제 #1
0
        // 导出-获取明细列表
        public static DataTable GetDetailInfo(string strWhere)
        {
            DataTable dtList = new DataTable();

            dtList = FlowMeterPro.GetDetailInfo(strWhere);

            if (dtList == null)
            {
                return(null);
            }
            else
            {
                return(dtList);
            }
        }