jinghz@oceic.com
2023-08-24 c5cfa2df88c6d2e5b31e87e1d5a8fe49d585f0bb
DBUtility/基础资料/ClsGy_Base_View.cs
@@ -555,7 +555,21 @@
        //鏍规嵁鍚嶇О杩斿洖椤圭洰淇℃伅
        public virtual bool GetInfoByName(string sName)
        {
            return true;
            DataSet DS;
            try
            {
                DS = oCN.RunProcReturn("Select * from " + MvarItemKey + " Where HName='" + sName + "'", MvarItemKey, ref DBUtility.ClsPub.sExeReturnInfo);
                if (DS.Tables[0].Rows.Count == 0)
                    return false;
                else
                {
                    return GetInfo(DS);
                }
            }
            catch (Exception e)
            {
                throw (e);
            }
        }
        //杩斿洖椤圭洰淇℃伅
        public virtual bool GetInfo(DataSet DS)