yangle
2023-09-12 7b778c7647e1c14288f7919290b7c403989c541c
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");