wtt
2025-07-01 bb8c04b0c02edc66b91a6a0b27ea274a3effd8a0
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");
                }