1
duhe
2025-06-20 af46a36c058a9e0ab1b79b853dd656532462c857
WebAPI/Controllers/BaseSet/Gy_EmployeeController.cs
@@ -49,11 +49,11 @@
                string sql1 = string.Format(@"select * from h_v_IF_EmployeeList where 组织名称='" + Organization + "'");
                if (sWhere == null || sWhere.Equals(""))
                {
                    ds = oCN.RunProcReturn(sql1 + sWhere + " order by 职员代码", "h_v_IF_EmployeeList");
                    ds = oCN.RunProcReturn(sql1 + sWhere, "h_v_IF_EmployeeList");
                }
                else
                {
                    string sql = sql1 + sWhere + " order by 职员代码";
                    string sql = sql1 + sWhere;
                    ds = oCN.RunProcReturn(sql, "h_v_IF_EmployeeList");
                }