| | |
| | | }); |
| | | 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({ |
| | |
| | | }); |
| | | 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([ |
| | |
| | | }, |
| | | { |
| | | 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", |
| | |
| | | |
| | | 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); |
| | | } |
| | | |
| | |
| | | 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); |
| | | } |
| | | |
| | |
| | | |
| | | 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(), |
| | |
| | | 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}"); |
| | |
| | | /// <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; |
| | | } |
| | |
| | | /// <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> |
| | |
| | | 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(); |
| | |
| | | Target Server Version : 13001601 |
| | | File Encoding : 65001 |
| | | |
| | | Date: 06/06/2025 13:59:24 |
| | | Date: 06/06/2025 16:59:55 |
| | | */ |
| | | |
| | | |
| | |
| | | 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 |
| | |
| | | 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线ä¸çº¿PACK', 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线ä¸çº¿PACK', 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线ä¸çº¿PACK', 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线ä¸çº¿PACK', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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线PACKæ æ¿', 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 |
| | |
| | | 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 |
| | | |
| | |
| | | -- ---------------------------- |
| | | -- Auto increment value for Dt_AreaRouter |
| | | -- ---------------------------- |
| | | DBCC CHECKIDENT ('[dbo].[Dt_AreaRouter]', RESEED, 1002) |
| | | DBCC CHECKIDENT ('[dbo].[Dt_AreaRouter]', RESEED, 1003) |
| | | GO |
| | | |
| | | |
| | |
| | | -- ---------------------------- |
| | | -- Auto increment value for Dt_Task |
| | | -- ---------------------------- |
| | | DBCC CHECKIDENT ('[dbo].[Dt_Task]', RESEED, 7231) |
| | | DBCC CHECKIDENT ('[dbo].[Dt_Task]', RESEED, 7236) |
| | | GO |
| | | |
| | | |