zhoufan %!s(int64=7) %!d(string=hace) años
padre
commit
f559d92d21

+ 13 - 0
CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/Controllers/DepartmentController.cs

@@ -49,6 +49,19 @@ namespace CallCenterApi.Interface.Controllers
49 49
         }
50 50
 
51 51
         /// <summary>
52
+        /// 获取二级部门列表
53
+        /// </summary>
54
+        /// <returns></returns>
55
+        public ActionResult GetDealDeptList()
56
+        {
57
+            DataTable dt = new DataTable();
58
+
59
+            dt = departmentBLL.GetList(0, "F_State=0 and  ISNULL(F_IsDept, '0') ='1' and  ISNULL(F_IsDealDept, '0') ='1'", " F_Sort").Tables[0];
60
+
61
+            return Success("加载成功", dt);
62
+        }
63
+
64
+        /// <summary>
52 65
         /// 获取部门列表
53 66
         /// </summary>
54 67
         /// <returns></returns>