From c1b448e302ae76d129eb136b698308754bf783c5 Mon Sep 17 00:00:00 2001
From: dengjunjie <dengjunjie@hnkhzn.com>
Date: 星期五, 06 六月 2025 17:01:13 +0800
Subject: [PATCH] 优化AGV站点分配逻辑

---
 代码管理/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/b059467b-47d8-4c04-b5e8-149638790949.vsidx |    0 
 代码管理/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/Service/CachePointService.cs                                 |   25 ++-
 /dev/null                                                                                                    |    0 
 代码管理/WMS/WIDESEA_WMSClient/src/views/basic/areaRouter.vue                                                    |   62 +++++++-
 代码管理/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/64588fc3-3956-44f9-a94a-b42bcc6d9b8b.vsidx |    0 
 项目资料/项目文件/WMS.sql                                                                                            |  210 ++++++++++++++++-------------
 代码管理/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/PartialTaskService_AGV.cs                                 |   91 +++++++-----
 代码管理/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/1b562594-4598-4984-b23d-47d2174f2526.vsidx |    0 
 8 files changed, 232 insertions(+), 156 deletions(-)

diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/basic/areaRouter.vue" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/basic/areaRouter.vue"
index 3d3cbf1..05aa9da 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/basic/areaRouter.vue"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/basic/areaRouter.vue"
@@ -35,13 +35,32 @@
     });
     const editFormOptions = ref([
       [
-        {title: "璧风偣",required: true,field: "startArea",type: "string",},
-        {title: "缁堢偣鍖哄煙ID",required: true,field: "nextArea",type: "select",dataKey: "areainfo",data: [],},
-        
+        {
+          title: "璧风偣鍖哄煙",
+          required: true,
+          field: "startArea",
+          type: "select",
+          dataKey: "cachePointareainfo",
+          data: [],
+        },
+        {
+          title: "缁堢偣鍖哄煙",
+          required: true,
+          field: "nextArea",
+          type: "select",
+          dataKey: "cachePointareainfo",
+          data: [],
+        },
       ],
       [
-        {title: "璺敱绫诲瀷",field: "routerType",type: "like"},
-        {title: "鏄惁涓虹粓鐐�",field: "isEnd",type: "select",dataKey: "enable",data: [],}
+        { title: "璺敱绫诲瀷", field: "routerType", type: "like" },
+        {
+          title: "鏄惁涓虹粓鐐�",
+          field: "isEnd",
+          type: "select",
+          dataKey: "enable",
+          data: [],
+        },
       ],
     ]);
     const searchFormFields = ref({
@@ -53,13 +72,31 @@
     });
     const searchFormOptions = ref([
       [
-        {title: "璧风偣",required: true,field: "startArea",type: "string",},
-        {title: "缁堢偣鍖哄煙ID",field: "nextArea",type: "select",dataKey: "areainfo",data: [],},
+        {
+          title: "璧风偣",
+          field: "startArea",
+          type: "select",
+          dataKey: "cachePointareainfo",
+          data: [],
+        },
+        {
+          title: "缁堢偣鍖哄煙ID",
+          field: "nextArea",
+          type: "select",
+          dataKey: "cachePointareainfo",
+          data: [],
+        },
         // {title: "缁堢偣鍖哄煙ID",required: true,field: "nextArea",type: "string",},
       ],
       [
-        {title: "璺敱绫诲瀷",field: "routerType",type: "like"},
-        {title: "鏄惁涓虹粓鐐�",field: "isEnd",type: "select",dataKey: "enable",data: [],}
+        { title: "璺敱绫诲瀷", field: "routerType", type: "like" },
+        {
+          title: "鏄惁涓虹粓鐐�",
+          field: "isEnd",
+          type: "select",
+          dataKey: "enable",
+          data: [],
+        },
       ],
     ]);
     const columns = ref([
@@ -75,18 +112,19 @@
       },
       {
         field: "startArea",
-        title: "璧风偣",
+        title: "璧风偣鍖哄煙",
         type: "string",
         width: 90,
         align: "left",
+        bind: { key: "cachePointareainfo", data: [] },
       },
       {
         field: "nextArea",
-        title: "缁堢偣鍖哄煙ID",
+        title: "缁堢偣鍖哄煙",
         type: "string",
         width: 150,
         align: "left",
-        bind:{ key: "areainfo", data: [] },
+        bind: { key: "cachePointareainfo", data: [] },
       },
       {
         field: "routerType",
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/1b562594-4598-4984-b23d-47d2174f2526.vsidx" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/1b562594-4598-4984-b23d-47d2174f2526.vsidx"
new file mode 100644
index 0000000..c3874bd
--- /dev/null
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/1b562594-4598-4984-b23d-47d2174f2526.vsidx"
Binary files differ
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/55ad6bfa-8331-4bce-8883-1e64cba75801.vsidx" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/55ad6bfa-8331-4bce-8883-1e64cba75801.vsidx"
deleted file mode 100644
index af000b8..0000000
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/55ad6bfa-8331-4bce-8883-1e64cba75801.vsidx"
+++ /dev/null
Binary files differ
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/64588fc3-3956-44f9-a94a-b42bcc6d9b8b.vsidx" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/64588fc3-3956-44f9-a94a-b42bcc6d9b8b.vsidx"
new file mode 100644
index 0000000..d2b5b4f
--- /dev/null
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/64588fc3-3956-44f9-a94a-b42bcc6d9b8b.vsidx"
Binary files differ
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/7fe284d4-e12b-4950-911d-a474556c3b29.vsidx" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/7fe284d4-e12b-4950-911d-a474556c3b29.vsidx"
deleted file mode 100644
index 9052d0d..0000000
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/7fe284d4-e12b-4950-911d-a474556c3b29.vsidx"
+++ /dev/null
Binary files differ
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/9fc1f4d7-6950-4260-ac8f-6fb916527c41.vsidx" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/9fc1f4d7-6950-4260-ac8f-6fb916527c41.vsidx"
deleted file mode 100644
index f2ff729..0000000
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/9fc1f4d7-6950-4260-ac8f-6fb916527c41.vsidx"
+++ /dev/null
Binary files differ
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/b059467b-47d8-4c04-b5e8-149638790949.vsidx" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/b059467b-47d8-4c04-b5e8-149638790949.vsidx"
new file mode 100644
index 0000000..41594e8
--- /dev/null
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/.vs/WIDESEA_WMSServer/FileContentIndex/b059467b-47d8-4c04-b5e8-149638790949.vsidx"
Binary files differ
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/Service/CachePointService.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/Service/CachePointService.cs"
index d700413..9314dbc 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/Service/CachePointService.cs"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/Service/CachePointService.cs"
@@ -27,18 +27,18 @@
 
         public Dt_CachePoint? AssignCachePoint(int areaId)
         {
-            List<CachePointGroupDTO> cachePointGroups = Repository.GetCachePointGroups(areaId, LocationStatusEnum.InStock, LocationStatusEnum.Free);
+            List<CachePointGroupDTO> cachePointGroups = Repository.GetCachePointGroups(areaId, LocationStatusEnum.Free, LocationStatusEnum.InStock);
             if (cachePointGroups != null && cachePointGroups.Count > 0)
             {
-                CachePointGroupDTO? pointGroupDTO = cachePointGroups.FirstOrDefault(x => x.EnableStatusB == EnableStatusEnum.OnlyIn.ObjToInt() || x.EnableStatusB == EnableStatusEnum.Normal.ObjToInt());
-                int id = pointGroupDTO?.IdB ?? 0;
+                CachePointGroupDTO? pointGroupDTO = cachePointGroups.FirstOrDefault(x => x.PointStatusA == LocationStatusEnum.Free.ObjToInt() && (x.EnableStatusA == EnableStatusEnum.Normal.ObjToInt() || x.EnableStatusA == EnableStatusEnum.OnlyIn.ObjToInt()));
+                int id = pointGroupDTO?.IdA ?? 0;
                 return BaseDal.QueryFirst(x => x.Id == id);
             }
             cachePointGroups = Repository.GetCachePointGroups(areaId, LocationStatusEnum.Free, LocationStatusEnum.Free);
             if (cachePointGroups != null && cachePointGroups.Count > 0)
             {
-                CachePointGroupDTO? pointGroupDTO = cachePointGroups.FirstOrDefault(x => x.EnableStatusA == EnableStatusEnum.OnlyIn.ObjToInt() || x.EnableStatusA == EnableStatusEnum.Normal.ObjToInt());
-                int id = pointGroupDTO?.IdA ?? 0;
+                CachePointGroupDTO? pointGroupDTO = cachePointGroups.FirstOrDefault(x => x.PointStatusB == LocationStatusEnum.Free.ObjToInt() && (x.EnableStatusB == EnableStatusEnum.Normal.ObjToInt() || x.EnableStatusB == EnableStatusEnum.OnlyIn.ObjToInt()));
+                int id = pointGroupDTO?.IdB ?? 0;
                 return BaseDal.QueryFirst(x => x.Id == id);
             }
 
@@ -50,15 +50,24 @@
             List<CachePointGroupDTO> cachePointGroups = Repository.GetCachePointGroups(areaId, LocationStatusEnum.InStock, LocationStatusEnum.Free);
             if (cachePointGroups != null && cachePointGroups.Count > 0)
             {
-                CachePointGroupDTO? pointGroupDTO = cachePointGroups.FirstOrDefault(x => x.EnableStatusA == EnableStatusEnum.OnlyOut.ObjToInt() || x.EnableStatusA == EnableStatusEnum.Normal.ObjToInt());
+                CachePointGroupDTO? pointGroupDTO = cachePointGroups.FirstOrDefault(x => x.PointStatusA == LocationStatusEnum.InStock.ObjToInt() && (x.EnableStatusA == EnableStatusEnum.OnlyOut.ObjToInt() || x.EnableStatusA == EnableStatusEnum.Normal.ObjToInt()));
                 int id = pointGroupDTO?.IdA ?? 0;
                 return BaseDal.QueryFirst(x => x.Id == id);
             }
+
+            cachePointGroups = Repository.GetCachePointGroups(areaId, LocationStatusEnum.Free, LocationStatusEnum.InStock);
+            if (cachePointGroups != null && cachePointGroups.Count > 0)
+            {
+                CachePointGroupDTO? pointGroupDTO = cachePointGroups.FirstOrDefault(x => x.PointStatusB == LocationStatusEnum.InStock.ObjToInt() && (x.EnableStatusB == EnableStatusEnum.OnlyOut.ObjToInt() || x.EnableStatusB == EnableStatusEnum.Normal.ObjToInt()));
+                int id = pointGroupDTO?.IdB ?? 0;
+                return BaseDal.QueryFirst(x => x.Id == id);
+            }
+
             cachePointGroups = Repository.GetCachePointGroups(areaId, LocationStatusEnum.InStock, LocationStatusEnum.InStock);
             if (cachePointGroups != null && cachePointGroups.Count > 0)
             {
-                CachePointGroupDTO? pointGroupDTO = cachePointGroups.FirstOrDefault(x => x.EnableStatusB == EnableStatusEnum.OnlyOut.ObjToInt() || x.EnableStatusB == EnableStatusEnum.Normal.ObjToInt());
-                int id = pointGroupDTO?.IdB ?? 0;
+                CachePointGroupDTO? pointGroupDTO = cachePointGroups.FirstOrDefault(x => x.PointStatusA == LocationStatusEnum.InStock.ObjToInt() && (x.EnableStatusA == EnableStatusEnum.OnlyOut.ObjToInt() || x.EnableStatusA == EnableStatusEnum.Normal.ObjToInt()));
+                int id = pointGroupDTO?.IdA ?? 0;
                 return BaseDal.QueryFirst(x => x.Id == id);
             }
 
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/PartialTaskService_AGV.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/PartialTaskService_AGV.cs"
index 83bee59..15b03e3 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/PartialTaskService_AGV.cs"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_TaskInfoService/PartialTaskService_AGV.cs"
@@ -61,14 +61,14 @@
 
                 Dt_Task task = new Dt_Task()
                 {
-                    CurrentAddress = "D02",// cachePoint.PointCode,
+                    CurrentAddress = cachePoint.PointCode,
                     Grade = 0,
-                    NextAddress = "C01",//endPoint,
+                    NextAddress = endPoint,
                     OrderNo = "",
-                    PalletCode = "",//cachePoint.Remark,
+                    PalletCode = cachePoint.Remark,
                     Roadway = "",
-                    SourceAddress = "D02",//cachePoint.PointCode,
-                    TargetAddress = "C01",//endPoint,
+                    SourceAddress = cachePoint.PointCode,
+                    TargetAddress = endPoint,
                     SourceKey = 0,
                     TaskNum = BaseDal.GetTaskNum(nameof(SequenceEnum.SeqTaskNum)),
                     TaskStatus = AGVTaskStatusEnum.Create.ObjToInt(),
@@ -77,18 +77,8 @@
                 cachePoint.PointStatus = LocationStatusEnum.Lock.ObjToInt();
 
                 Db.Ado.BeginTran();
-                #region MyRegion
-                AGVSendTaskModel aGVSendTask = new AGVSendTaskModel
-                {
-                    task_id = task.TaskNum.ToString(),// BaseDal.GetTaskNum(nameof(SequenceEnum.SeqTaskNum)).ToString(),
-                    src_pos = task.CurrentAddress,// "C01",
-                    site_value_type = 1,
-                    dst_pos = task.NextAddress,// "E14"
-                    src_level=3,
-                };
-                #endregion
-                var response = HttpHelper.Post<WebResponseContent>(AGVurl + "sendTask/", aGVSendTask, "鍙枡浠诲姟涓嬪彂");
-                if (response.Code != 200)
+                var response = SendAGVTask(task, cachePoint);
+                if (response.Status)
                 {
                     _unitOfWorkManage.RollbackTran();
                     return WebResponseContent.Instance.Error($"{response.Message}");
@@ -151,22 +141,19 @@
         /// <exception cref="Exception"></exception>
         private Dt_CachePoint GetCachePointByStartPoint(string startPoint)
         {
-            Dt_AreaRouter areaRouter = _basicService.AreaRouterService.Repository.QueryFirst(x => x.StartArea == startPoint);
-            if (areaRouter == null)
-            {
-                throw new Exception("鏈壘鍒拌矾鐢变俊鎭�!");
-            }
-            Dt_AreaInfo areaInfo = _basicService.AreaInfoService.Repository.QueryFirst(x => x.AreaCode == areaRouter.NextArea);
-            if (areaInfo == null)
-            {
-                throw new Exception("鏈壘鍒颁笅涓�鍖哄煙淇℃伅!");
-            }
+            #region MyRegion
+            Dt_CachePoint? StartcachePoint = _basicService.CachePointService.Repository.QueryFirst(x => x.PointCode == startPoint);
+            if (StartcachePoint == null) throw new Exception("鏈壘鍒扮紦瀛樼偣!");
 
-            Dt_CachePoint? cachePoint = _basicService.CachePointService.AssignCachePoint(areaInfo.Id);
+            Dt_AreaRouter areaRouter = _basicService.AreaRouterService.Repository.QueryFirst(x => x.StartArea == StartcachePoint.AreaId.ToString());
+            if (areaRouter == null) throw new Exception("鏈壘鍒拌矾鐢变俊鎭�!");
+
+            Dt_CachePoint? cachePoint = _basicService.CachePointService.AssignCachePoint(areaRouter.NextArea.ObjToInt());
             if (cachePoint == null)
             {
                 throw new Exception("鏈壘鍒扮┖闂茬紦瀛樼偣!");
             }
+            #endregion
 
             return cachePoint;
         }
@@ -178,24 +165,48 @@
         /// <exception cref="Exception"></exception>
         private Dt_CachePoint GetCachePointByEndPoint(string endPoint)
         {
-            Dt_AreaRouter areaRouter = _basicService.AreaRouterService.Repository.QueryFirst(x => x.NextArea == endPoint);
-            if (areaRouter == null)
-            {
-                throw new Exception("鏈壘鍒拌矾鐢变俊鎭�!");
-            }
-            Dt_AreaInfo areaInfo = _basicService.AreaInfoService.Repository.QueryFirst(x => x.AreaCode == areaRouter.StartArea);
-            if (areaInfo == null)
-            {
-                throw new Exception("鏈壘鍒拌捣鐐圭紦瀛樺尯鍩熶俊鎭�!");
-            }
+            #region MyRegion
+            Dt_CachePoint? StartcachePoint = _basicService.CachePointService.Repository.QueryFirst(x => x.PointCode == endPoint);
+            if (StartcachePoint == null) throw new Exception("鏈壘鍒扮紦瀛樼偣!");
 
-            Dt_CachePoint? cachePoint = _basicService.CachePointService.GetIbStockCachePoint(areaInfo.Id);
+            Dt_AreaRouter areaRouter = _basicService.AreaRouterService.Repository.QueryFirst(x => x.NextArea == StartcachePoint.AreaId.ToString());
+            if (areaRouter == null) throw new Exception("鏈壘鍒拌矾鐢变俊鎭�!");
+
+            Dt_CachePoint? cachePoint = _basicService.CachePointService.GetIbStockCachePoint(areaRouter.StartArea.ObjToInt());
             if (cachePoint == null)
             {
                 throw new Exception("鏈壘鍒版湁璐х紦瀛樼偣!");
             }
+            #endregion
             return cachePoint;
         }
+
+        /// <summary>
+        /// 涓嬪彂AGV浠诲姟
+        /// </summary>
+        /// <param name="task"></param>
+        public WebResponseContent SendAGVTask(Dt_Task task, Dt_CachePoint? cachePoint = null)
+        {
+            try
+            {
+                AGVSendTaskModel aGVSendTask = new AGVSendTaskModel
+                {
+                    task_id = task.TaskNum.ToString(),
+                    src_pos = task.CurrentAddress,
+                    site_value_type = 1,
+                    dst_pos = task.NextAddress
+                };
+                if (cachePoint != null && cachePoint.AreaId == 4) aGVSendTask.src_level = cachePoint.Remark.ObjToInt() - 1;
+                var response = HttpHelper.Post<WebResponseContent>(AGVurl + "sendTask/", aGVSendTask, "鍙枡浠诲姟涓嬪彂");
+                if (response.Code != 200) throw new Exception(response.Message);
+                return WebResponseContent.Instance.OK();
+            }
+            catch (Exception ex)
+            {
+                return WebResponseContent.Instance.Error(ex.Message);
+            }
+        }
+
         /// <summary>
         /// 浠诲姟鐘舵�佷笂鎶�
         /// </summary>
@@ -225,7 +236,7 @@
                         if (startCachePoint != null)
                         {
                             startCachePoint.PointStatus = LocationStatusEnum.Free.ObjToInt();
-                            if (startCachePoint.AreaId == 3)//鍒ゆ柇鏄惁涓烘ā缁勭┖鏍堟澘鍖哄煙
+                            if (startCachePoint.AreaId == 4)//鍒ゆ柇鏄惁涓烘ā缁勭┖鏍堟澘鍖哄煙
                             {
                                 var qty = (startCachePoint.Remark.ObjToInt() - 1);
                                 if (qty > 0) startCachePoint.PointStatus = LocationStatusEnum.InStock.ObjToInt();
diff --git "a/\351\241\271\347\233\256\350\265\204\346\226\231/\351\241\271\347\233\256\346\226\207\344\273\266/WMS.sql" "b/\351\241\271\347\233\256\350\265\204\346\226\231/\351\241\271\347\233\256\346\226\207\344\273\266/WMS.sql"
index 03fb178..5085cc3 100644
--- "a/\351\241\271\347\233\256\350\265\204\346\226\231/\351\241\271\347\233\256\346\226\207\344\273\266/WMS.sql"
+++ "b/\351\241\271\347\233\256\350\265\204\346\226\231/\351\241\271\347\233\256\346\226\207\344\273\266/WMS.sql"
@@ -11,7 +11,7 @@
  Target Server Version : 13001601
  File Encoding         : 65001
 
- Date: 06/06/2025 13:59:24
+ Date: 06/06/2025 16:59:55
 */
 
 
@@ -554,13 +554,16 @@
 SET IDENTITY_INSERT [dbo].[Dt_AreaRouter] ON
 GO
 
-INSERT INTO [dbo].[Dt_AreaRouter] ([Id], [StartArea], [NextArea], [RouterType], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'004-000-001', N'2', N'1', N'1', NULL, N'admin', N'2024-10-29 14:18:31.337', NULL, NULL)
+INSERT INTO [dbo].[Dt_AreaRouter] ([Id], [StartArea], [NextArea], [RouterType], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'4', N'3', N'1', N'1', NULL, N'admin', N'2024-10-29 14:18:31.337', N'admin', N'2025-06-06 14:58:36.010')
 GO
 
-INSERT INTO [dbo].[Dt_AreaRouter] ([Id], [StartArea], [NextArea], [RouterType], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'004-001-001', N'1', N'1', N'1', NULL, N'admin', N'2024-10-29 14:51:09.170', NULL, NULL)
+INSERT INTO [dbo].[Dt_AreaRouter] ([Id], [StartArea], [NextArea], [RouterType], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'3', N'5', N'1', N'1', NULL, N'admin', N'2024-10-29 14:51:09.170', N'admin', N'2025-06-06 14:58:20.300')
 GO
 
-INSERT INTO [dbo].[Dt_AreaRouter] ([Id], [StartArea], [NextArea], [RouterType], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1002', N'001-001-001', N'9', N'1', N'1', NULL, N'admin', N'2024-11-07 10:26:15.360', NULL, NULL)
+INSERT INTO [dbo].[Dt_AreaRouter] ([Id], [StartArea], [NextArea], [RouterType], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1002', N'1', N'2', N'1', N'1', NULL, N'admin', N'2024-11-07 10:26:15.360', N'admin', N'2025-06-06 14:57:51.770')
+GO
+
+INSERT INTO [dbo].[Dt_AreaRouter] ([Id], [StartArea], [NextArea], [RouterType], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1003', N'6', N'8', N'1', N'1', NULL, N'admin', N'2025-06-06 14:59:09.853', NULL, NULL)
 GO
 
 SET IDENTITY_INSERT [dbo].[Dt_AreaRouter] OFF
@@ -730,274 +733,274 @@
 INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'8', N'1', N'A08', N'0', N'0', N'1', N'1', N'1', N'1', N'杈呮枡鍑哄簱绔欑偣2', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'9', N'2', N'ZH011M001', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笂绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'9', N'2', N'ZH011M001', N'2', N'0', N'1', N'1', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, N'2025-06-06 15:28:53.027')
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'10', N'2', N'ZH011M002', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笂绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'10', N'2', N'ZH011M002', N'2', N'0', N'1', N'2', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', N'admin', N'2025-06-06 15:57:50.397')
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11', N'2', N'ZH011M003', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笂绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11', N'2', N'ZH011M003', N'1', N'0', N'1', N'3', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, N'2025-06-06 15:57:25.910')
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'12', N'2', N'ZH011M004', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笂绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'12', N'2', N'ZH011M004', N'0', N'0', N'1', N'4', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'2', N'ZH011M005', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笂绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'2', N'ZH011M005', N'0', N'0', N'1', N'5', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'14', N'2', N'ZH011M006', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笂绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'14', N'2', N'ZH011M006', N'1', N'0', N'2', N'1', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, N'2025-06-06 15:51:36.750')
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'15', N'2', N'ZH011M007', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笂绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'15', N'2', N'ZH011M007', N'1', N'0', N'2', N'2', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, N'2025-06-06 15:58:06.330')
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'16', N'2', N'ZH011M008', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笂绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'16', N'2', N'ZH011M008', N'0', N'0', N'2', N'3', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'17', N'2', N'ZH011M009', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笂绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'17', N'2', N'ZH011M009', N'0', N'0', N'2', N'4', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'18', N'2', N'ZH011M010', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笂绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'18', N'2', N'ZH011M010', N'0', N'0', N'2', N'5', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'19', N'3', N'ZH012M001', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笅绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'19', N'3', N'ZH012M001', N'0', N'0', N'1', N'1', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'20', N'3', N'ZH012M002', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笅绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'20', N'3', N'ZH012M002', N'0', N'0', N'1', N'1', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'21', N'4', N'ZH013M001', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾跨┖鏍堟澘妯$粍', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'21', N'4', N'ZH013M001', N'2', N'0', N'1', N'1', N'2', N'1', N'5', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'22', N'4', N'ZH013M002', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾跨┖鏍堟澘妯$粍', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'22', N'4', N'ZH013M002', N'2', N'0', N'1', N'2', N'2', N'1', N'5', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'23', N'4', N'ZH013M003', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾跨┖鏍堟澘妯$粍', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'23', N'4', N'ZH013M003', N'2', N'0', N'1', N'3', N'2', N'1', N'5', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'24', N'4', N'ZH013M004', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾跨┖鏍堟澘妯$粍', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'24', N'4', N'ZH013M004', N'2', N'0', N'1', N'4', N'2', N'1', N'5', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'25', N'4', N'ZH013M005', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾跨┖鏍堟澘妯$粍', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'25', N'4', N'ZH013M005', N'2', N'0', N'1', N'5', N'2', N'1', N'5', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'26', N'4', N'ZH013M006', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾跨┖鏍堟澘妯$粍', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'26', N'4', N'ZH013M006', N'2', N'0', N'1', N'6', N'2', N'1', N'5', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'27', N'4', N'ZH013M007', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾跨┖鏍堟澘妯$粍', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'27', N'4', N'ZH013M007', N'2', N'0', N'2', N'1', N'1', N'1', N'5', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'28', N'4', N'ZH013M008', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾跨┖鏍堟澘妯$粍', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'28', N'4', N'ZH013M008', N'2', N'0', N'2', N'2', N'1', N'1', N'5', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'29', N'4', N'ZH013M009', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾跨┖鏍堟澘妯$粍', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'29', N'4', N'ZH013M009', N'2', N'0', N'2', N'3', N'1', N'1', N'5', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'30', N'4', N'ZH013M010', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾跨┖鏍堟澘妯$粍', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'30', N'4', N'ZH013M010', N'2', N'0', N'2', N'4', N'1', N'1', N'5', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'31', N'4', N'ZH013M011', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾跨┖鏍堟澘妯$粍', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'31', N'4', N'ZH013M011', N'2', N'0', N'2', N'5', N'1', N'1', N'5', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'32', N'4', N'ZH013M012', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾跨┖鏍堟澘妯$粍', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'32', N'4', N'ZH013M012', N'2', N'0', N'2', N'6', N'1', N'1', N'5', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'33', N'5', N'ZH01MZ001', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'33', N'5', N'ZH01MZ001', N'0', N'0', N'1', N'1', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'34', N'5', N'ZH01MZ002', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'34', N'5', N'ZH01MZ002', N'0', N'0', N'1', N'2', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'35', N'5', N'ZH01MZ003', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'35', N'5', N'ZH01MZ003', N'0', N'0', N'1', N'3', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'36', N'5', N'ZH01MZ004', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'36', N'5', N'ZH01MZ004', N'0', N'0', N'1', N'4', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'37', N'5', N'ZH01MZ005', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'37', N'5', N'ZH01MZ005', N'0', N'0', N'1', N'5', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'38', N'5', N'ZH01MZ006', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'38', N'5', N'ZH01MZ006', N'0', N'0', N'1', N'6', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'39', N'5', N'ZH01MZ007', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'39', N'5', N'ZH01MZ007', N'0', N'0', N'1', N'7', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'40', N'5', N'ZH01MZ008', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'40', N'5', N'ZH01MZ008', N'0', N'0', N'1', N'8', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'41', N'5', N'ZH01MZ009', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'41', N'5', N'ZH01MZ009', N'0', N'0', N'1', N'9', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'42', N'5', N'ZH01MZ010', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'42', N'5', N'ZH01MZ010', N'0', N'0', N'1', N'10', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'43', N'5', N'ZH01MZ011', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'43', N'5', N'ZH01MZ011', N'0', N'0', N'1', N'11', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'44', N'5', N'ZH01MZ012', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'44', N'5', N'ZH01MZ012', N'0', N'0', N'1', N'12', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'45', N'5', N'ZH01MZ013', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'45', N'5', N'ZH01MZ013', N'0', N'0', N'1', N'13', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'46', N'5', N'ZH01MZ014', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'46', N'5', N'ZH01MZ014', N'0', N'0', N'1', N'14', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'47', N'5', N'ZH01MZ015', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'47', N'5', N'ZH01MZ015', N'0', N'0', N'1', N'15', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'48', N'5', N'ZH01MZ016', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'48', N'5', N'ZH01MZ016', N'0', N'0', N'1', N'16', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'5', N'ZH01MZ017', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'5', N'ZH01MZ017', N'0', N'0', N'2', N'1', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'5', N'ZH01MZ018', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'5', N'ZH01MZ018', N'0', N'0', N'2', N'2', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'51', N'5', N'ZH01MZ019', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'51', N'5', N'ZH01MZ019', N'0', N'0', N'2', N'3', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'52', N'5', N'ZH01MZ020', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'52', N'5', N'ZH01MZ020', N'0', N'0', N'2', N'4', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'53', N'5', N'ZH01MZ021', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'53', N'5', N'ZH01MZ021', N'0', N'0', N'2', N'5', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'54', N'5', N'ZH01MZ022', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'54', N'5', N'ZH01MZ022', N'0', N'0', N'2', N'6', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'55', N'5', N'ZH01MZ023', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'55', N'5', N'ZH01MZ023', N'0', N'0', N'2', N'7', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'56', N'5', N'ZH01MZ024', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'56', N'5', N'ZH01MZ024', N'0', N'0', N'2', N'8', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'57', N'5', N'ZH01MZ025', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'57', N'5', N'ZH01MZ025', N'0', N'0', N'2', N'9', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'58', N'5', N'ZH01MZ026', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'58', N'5', N'ZH01MZ026', N'0', N'0', N'2', N'10', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'59', N'5', N'ZH01MZ027', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'59', N'5', N'ZH01MZ027', N'0', N'0', N'2', N'11', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'60', N'5', N'ZH01MZ028', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'60', N'5', N'ZH01MZ028', N'0', N'0', N'2', N'12', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'61', N'5', N'ZH01MZ029', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'61', N'5', N'ZH01MZ029', N'0', N'0', N'2', N'13', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'62', N'5', N'ZH01MZ030', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'62', N'5', N'ZH01MZ030', N'0', N'0', N'2', N'14', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'63', N'5', N'ZH01MZ031', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'63', N'5', N'ZH01MZ031', N'0', N'0', N'2', N'15', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'64', N'5', N'ZH01MZ032', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾挎ā缁�', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'64', N'5', N'ZH01MZ032', N'0', N'0', N'2', N'16', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'65', N'6', N'ZH012P001', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笅绾縋ACK', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'65', N'6', N'ZH012P001', N'0', N'0', N'1', N'1', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'66', N'6', N'ZH012P002', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笅绾縋ACK', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'66', N'6', N'ZH012P002', N'0', N'0', N'1', N'1', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'67', N'6', N'ZH012P003', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笅绾縋ACK', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'67', N'6', N'ZH012P003', N'0', N'0', N'1', N'1', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'68', N'6', N'ZH012P004', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾夸笅绾縋ACK', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'68', N'6', N'ZH012P004', N'0', N'0', N'1', N'1', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'69', N'8', N'ZH01PZ001', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'69', N'8', N'ZH01PZ001', N'0', N'0', N'1', N'1', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'70', N'8', N'ZH01PZ002', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'70', N'8', N'ZH01PZ002', N'0', N'0', N'1', N'2', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'71', N'8', N'ZH01PZ003', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'71', N'8', N'ZH01PZ003', N'0', N'0', N'1', N'3', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'72', N'8', N'ZH01PZ004', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'72', N'8', N'ZH01PZ004', N'0', N'0', N'1', N'4', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'73', N'8', N'ZH01PZ005', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'73', N'8', N'ZH01PZ005', N'0', N'0', N'1', N'5', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'74', N'8', N'ZH01PZ006', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'74', N'8', N'ZH01PZ006', N'0', N'0', N'1', N'6', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'75', N'8', N'ZH01PZ007', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'75', N'8', N'ZH01PZ007', N'0', N'0', N'1', N'7', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'76', N'8', N'ZH01PZ008', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'76', N'8', N'ZH01PZ008', N'0', N'0', N'1', N'8', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'77', N'8', N'ZH01PZ009', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'77', N'8', N'ZH01PZ009', N'0', N'0', N'1', N'9', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'78', N'8', N'ZH01PZ010', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'78', N'8', N'ZH01PZ010', N'0', N'0', N'1', N'10', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'79', N'8', N'ZH01PZ011', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'79', N'8', N'ZH01PZ011', N'0', N'0', N'1', N'11', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'80', N'8', N'ZH01PZ012', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'80', N'8', N'ZH01PZ012', N'0', N'0', N'1', N'12', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'81', N'8', N'ZH01PZ013', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'81', N'8', N'ZH01PZ013', N'0', N'0', N'1', N'13', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'82', N'8', N'ZH01PZ014', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'82', N'8', N'ZH01PZ014', N'0', N'0', N'1', N'14', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'83', N'8', N'ZH01PZ015', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'83', N'8', N'ZH01PZ015', N'0', N'0', N'1', N'15', N'2', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'84', N'8', N'ZH01PZ016', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'84', N'8', N'ZH01PZ016', N'0', N'0', N'2', N'1', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'85', N'8', N'ZH01PZ017', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'85', N'8', N'ZH01PZ017', N'0', N'0', N'2', N'2', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'86', N'8', N'ZH01PZ018', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'86', N'8', N'ZH01PZ018', N'0', N'0', N'2', N'3', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'87', N'8', N'ZH01PZ019', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'87', N'8', N'ZH01PZ019', N'0', N'0', N'2', N'4', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'88', N'8', N'ZH01PZ020', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'88', N'8', N'ZH01PZ020', N'0', N'0', N'2', N'5', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'89', N'8', N'ZH01PZ021', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'89', N'8', N'ZH01PZ021', N'0', N'0', N'2', N'6', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'90', N'8', N'ZH01PZ022', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'90', N'8', N'ZH01PZ022', N'0', N'0', N'2', N'7', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'91', N'8', N'ZH01PZ023', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'91', N'8', N'ZH01PZ023', N'0', N'0', N'2', N'8', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'92', N'8', N'ZH01PZ024', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'92', N'8', N'ZH01PZ024', N'0', N'0', N'2', N'9', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'93', N'8', N'ZH01PZ025', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'93', N'8', N'ZH01PZ025', N'0', N'0', N'2', N'10', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'94', N'8', N'ZH01PZ026', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'94', N'8', N'ZH01PZ026', N'0', N'0', N'2', N'11', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'95', N'8', N'ZH01PZ027', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'95', N'8', N'ZH01PZ027', N'0', N'0', N'2', N'12', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'96', N'8', N'ZH01PZ028', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'96', N'8', N'ZH01PZ028', N'0', N'0', N'2', N'13', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'97', N'8', N'ZH01PZ029', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'97', N'8', N'ZH01PZ029', N'0', N'0', N'2', N'14', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
-INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'98', N'8', N'ZH01PZ030', N'0', N'0', N'1', N'1', N'1', N'1', N'涓拰1绾縋ACK鏍堟澘', N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
+INSERT INTO [dbo].[Dt_CachePoint] ([Id], [AreaId], [PointCode], [PointStatus], [EnableStatus], [Row], [Column], [Depth], [PointType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'98', N'8', N'ZH01PZ030', N'0', N'0', N'2', N'15', N'1', N'1', NULL, N'admin', N'2025-05-27 10:58:30.117', NULL, NULL)
 GO
 
 SET IDENTITY_INSERT [dbo].[Dt_CachePoint] OFF
@@ -12567,6 +12570,21 @@
 INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [Depth], [OrderNo], [Grade], [SourceKey], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7231', N'59', N'', N'', N'500', N'500', N'D02', N'C01', N'D02', N'C01', N'0', N'', N'0', N'0', NULL, NULL, N'System', N'2025-06-05 15:08:49.197', NULL, NULL)
 GO
 
+INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [Depth], [OrderNo], [Grade], [SourceKey], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7232', N'60', N'A01-AGV', N'', N'500', N'500', N'A01', N'ZH011M001', N'A01', N'ZH011M001', N'0', N'', N'0', N'0', NULL, NULL, N'System', N'2025-06-06 15:28:53.087', NULL, NULL)
+GO
+
+INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [Depth], [OrderNo], [Grade], [SourceKey], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7233', N'61', N'A01-AGV', N'', N'500', N'500', N'A01', N'ZH011M006', N'A01', N'ZH011M006', N'0', N'', N'0', N'0', NULL, NULL, N'System', N'2025-06-06 15:51:36.790', NULL, NULL)
+GO
+
+INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [Depth], [OrderNo], [Grade], [SourceKey], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7234', N'62', N'A01-AGV', N'', N'500', N'500', N'A01', N'ZH011M002', N'A01', N'ZH011M002', N'0', N'', N'0', N'0', NULL, NULL, N'System', N'2025-06-06 15:56:47.943', NULL, NULL)
+GO
+
+INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [Depth], [OrderNo], [Grade], [SourceKey], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7235', N'63', N'A01-AGV', N'', N'500', N'500', N'A01', N'ZH011M003', N'A01', N'ZH011M003', N'0', N'', N'0', N'0', NULL, NULL, N'System', N'2025-06-06 15:57:25.913', NULL, NULL)
+GO
+
+INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [Depth], [OrderNo], [Grade], [SourceKey], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7236', N'64', N'A01-AGV', N'', N'500', N'500', N'A01', N'ZH011M007', N'A01', N'ZH011M007', N'0', N'', N'0', N'0', NULL, NULL, N'System', N'2025-06-06 15:58:06.333', NULL, NULL)
+GO
+
 SET IDENTITY_INSERT [dbo].[Dt_Task] OFF
 GO
 
@@ -15194,7 +15212,7 @@
 -- ----------------------------
 -- Auto increment value for Dt_AreaRouter
 -- ----------------------------
-DBCC CHECKIDENT ('[dbo].[Dt_AreaRouter]', RESEED, 1002)
+DBCC CHECKIDENT ('[dbo].[Dt_AreaRouter]', RESEED, 1003)
 GO
 
 
@@ -15562,7 +15580,7 @@
 -- ----------------------------
 -- Auto increment value for Dt_Task
 -- ----------------------------
-DBCC CHECKIDENT ('[dbo].[Dt_Task]', RESEED, 7231)
+DBCC CHECKIDENT ('[dbo].[Dt_Task]', RESEED, 7236)
 GO
 
 

--
Gitblit v1.9.3