yangle
2023-09-12 22793391f525b8171828a9d01c73e5420c60e772
WebAPI/Controllers/BaseSet/Gy_SourceController.cs
@@ -316,11 +316,11 @@
        }
        [Route("Gy_Source/Gy_SourceTreeList")]
        [HttpGet]
        public object Gy_SourceTreeList()
        public object Gy_SourceTreeList(string sWhere)
        {
            try
            {
                string sql1 = string.Format("select hitemid,hnumber,hname from Gy_Source order by hnumber");
                string sql1 = string.Format("select hitemid,hnumber,hname from Gy_Source"+ sWhere + " order by hnumber");
                ds = oCN.RunProcReturn(sql1, "Gy_Source");