コード例 #1
0
ファイル: FlowMeterMan.cs プロジェクト: xupeihong/.netYJY
        // 新增-加载需要检查的仪表项目
        public static string GetCheckItems(ref string a_strErr)
        {
            DataTable dtItems = new DataTable();

            dtItems = FlowMeterPro.GetCheckItems(ref a_strErr);

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

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

            return(strCheckItems);
        }