Beispiel #1
0
        // 新增-加载超声波需要检查的仪表项目
        public static string GetCheckItemsUT(ref string a_strErr)
        {
            DataTable dtItems = new DataTable();

            dtItems = FlowMeterPro.GetCheckItemsUT(ref a_strErr);

            if (dtItems == null)
            {
                return("");
            }
            if (dtItems.Rows.Count == 0)
            {
                return("");
            }

            string strCheckItems = GFun.Dt2Json("CheckItems", dtItems);

            return(strCheckItems);
        }