/* Navicat Premium Data Transfer Source Server : DESKTOP-SCT31AM Source Server Type : SQL Server Source Server Version : 13001601 Source Catalog : WIDESEAWMS_WHSY Source Schema : dbo Target Server Type : SQL Server Target Server Version : 13001601 File Encoding : 65001 Date: 25/12/2024 11:30:16 */ -- ---------------------------- -- Table structure for Dt_LocationInfo -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_LocationInfo]') AND type IN ('U')) DROP TABLE [dbo].[Dt_LocationInfo] GO CREATE TABLE [dbo].[Dt_LocationInfo] ( [Id] int IDENTITY(1,1) NOT NULL, [AreaId] int NOT NULL, [LocationCode] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [LocationName] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [RoadwayNo] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [Row] int NOT NULL, [Column] int NOT NULL, [Layer] int NOT NULL, [Depth] int NOT NULL, [MaxQty] int NOT NULL, [CurrentQty] int NOT NULL, [LocationType] int NOT NULL, [LocationStatus] int DEFAULT '0' NOT NULL, [EnableStatus] int DEFAULT '0' NOT NULL, [Remark] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [Creater] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Dt_LocationInfo] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'区域主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'AreaId' GO EXEC sp_addextendedproperty 'MS_Description', N'货位编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'LocationCode' GO EXEC sp_addextendedproperty 'MS_Description', N'货位名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'LocationName' GO EXEC sp_addextendedproperty 'MS_Description', N'巷道编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'RoadwayNo' GO EXEC sp_addextendedproperty 'MS_Description', N'货位行', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'Row' GO EXEC sp_addextendedproperty 'MS_Description', N'货位列', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'Column' GO EXEC sp_addextendedproperty 'MS_Description', N'货位层', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'Layer' GO EXEC sp_addextendedproperty 'MS_Description', N'货位深度', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'Depth' GO EXEC sp_addextendedproperty 'MS_Description', N'最大库存', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'MaxQty' GO EXEC sp_addextendedproperty 'MS_Description', N'当前库存', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'CurrentQty' GO EXEC sp_addextendedproperty 'MS_Description', N'货位类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'LocationType' GO EXEC sp_addextendedproperty 'MS_Description', N'货位状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'LocationStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'禁用状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'EnableStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'货位信息', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo' GO -- ---------------------------- -- Records of Dt_LocationInfo -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_LocationInfo] ON GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'277', N'0', N'001-001-001', N'001行001列001层', N'SC01', N'1', N'1', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.357', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'278', N'0', N'001-001-002', N'001行001列002层', N'SC01', N'1', N'1', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.360', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'279', N'0', N'001-001-003', N'001行001列003层', N'SC01', N'1', N'1', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'280', N'0', N'001-002-001', N'001行002列001层', N'SC01', N'1', N'2', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'281', N'0', N'001-002-002', N'001行002列002层', N'SC01', N'1', N'2', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'282', N'0', N'001-002-003', N'001行002列003层', N'SC01', N'1', N'2', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'283', N'0', N'001-003-001', N'001行003列001层', N'SC01', N'1', N'3', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'284', N'0', N'001-003-002', N'001行003列002层', N'SC01', N'1', N'3', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'285', N'0', N'001-003-003', N'001行003列003层', N'SC01', N'1', N'3', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'286', N'0', N'001-004-001', N'001行004列001层', N'SC01', N'1', N'4', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'287', N'0', N'001-004-002', N'001行004列002层', N'SC01', N'1', N'4', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'288', N'0', N'001-004-003', N'001行004列003层', N'SC01', N'1', N'4', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'289', N'0', N'001-005-001', N'001行005列001层', N'SC01', N'1', N'5', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'290', N'0', N'001-005-002', N'001行005列002层', N'SC01', N'1', N'5', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'291', N'0', N'001-005-003', N'001行005列003层', N'SC01', N'1', N'5', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'292', N'0', N'001-006-001', N'001行006列001层', N'SC01', N'1', N'6', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'293', N'0', N'001-006-002', N'001行006列002层', N'SC01', N'1', N'6', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'294', N'0', N'001-006-003', N'001行006列003层', N'SC01', N'1', N'6', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'295', N'0', N'001-007-001', N'001行007列001层', N'SC01', N'1', N'7', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'296', N'0', N'001-007-002', N'001行007列002层', N'SC01', N'1', N'7', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'297', N'0', N'001-007-003', N'001行007列003层', N'SC01', N'1', N'7', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'298', N'0', N'001-008-001', N'001行008列001层', N'SC01', N'1', N'8', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'299', N'0', N'001-008-002', N'001行008列002层', N'SC01', N'1', N'8', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'300', N'0', N'001-008-003', N'001行008列003层', N'SC01', N'1', N'8', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'301', N'0', N'001-009-001', N'001行009列001层', N'SC01', N'1', N'9', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'302', N'0', N'001-009-002', N'001行009列002层', N'SC01', N'1', N'9', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'303', N'0', N'001-009-003', N'001行009列003层', N'SC01', N'1', N'9', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'304', N'0', N'001-010-001', N'001行010列001层', N'SC01', N'1', N'10', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'305', N'0', N'001-010-002', N'001行010列002层', N'SC01', N'1', N'10', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'306', N'0', N'001-010-003', N'001行010列003层', N'SC01', N'1', N'10', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'307', N'0', N'001-011-001', N'001行011列001层', N'SC01', N'1', N'11', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'308', N'0', N'001-011-002', N'001行011列002层', N'SC01', N'1', N'11', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'309', N'0', N'001-011-003', N'001行011列003层', N'SC01', N'1', N'11', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'310', N'0', N'001-012-001', N'001行012列001层', N'SC01', N'1', N'12', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.370', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'311', N'0', N'001-012-002', N'001行012列002层', N'SC01', N'1', N'12', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'312', N'0', N'001-012-003', N'001行012列003层', N'SC01', N'1', N'12', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'313', N'0', N'001-013-001', N'001行013列001层', N'SC01', N'1', N'13', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'314', N'0', N'001-013-002', N'001行013列002层', N'SC01', N'1', N'13', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'315', N'0', N'001-013-003', N'001行013列003层', N'SC01', N'1', N'13', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'316', N'0', N'001-014-001', N'001行014列001层', N'SC01', N'1', N'14', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'317', N'0', N'001-014-002', N'001行014列002层', N'SC01', N'1', N'14', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'318', N'0', N'001-014-003', N'001行014列003层', N'SC01', N'1', N'14', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'319', N'0', N'001-015-001', N'001行015列001层', N'SC01', N'1', N'15', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.373', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'320', N'0', N'001-015-002', N'001行015列002层', N'SC01', N'1', N'15', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'321', N'0', N'001-015-003', N'001行015列003层', N'SC01', N'1', N'15', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'322', N'0', N'001-016-001', N'001行016列001层', N'SC01', N'1', N'16', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'323', N'0', N'001-016-002', N'001行016列002层', N'SC01', N'1', N'16', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'324', N'0', N'001-016-003', N'001行016列003层', N'SC01', N'1', N'16', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'325', N'0', N'001-017-001', N'001行017列001层', N'SC01', N'1', N'17', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'326', N'0', N'001-017-002', N'001行017列002层', N'SC01', N'1', N'17', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'327', N'0', N'001-017-003', N'001行017列003层', N'SC01', N'1', N'17', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'328', N'0', N'001-018-001', N'001行018列001层', N'SC01', N'1', N'18', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'329', N'0', N'001-018-002', N'001行018列002层', N'SC01', N'1', N'18', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'330', N'0', N'001-018-003', N'001行018列003层', N'SC01', N'1', N'18', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'331', N'0', N'001-019-001', N'001行019列001层', N'SC01', N'1', N'19', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'332', N'0', N'001-019-002', N'001行019列002层', N'SC01', N'1', N'19', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.377', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'333', N'0', N'001-019-003', N'001行019列003层', N'SC01', N'1', N'19', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.380', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'334', N'0', N'001-020-001', N'001行020列001层', N'SC01', N'1', N'20', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.387', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'335', N'0', N'001-020-002', N'001行020列002层', N'SC01', N'1', N'20', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.387', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'336', N'0', N'001-020-003', N'001行020列003层', N'SC01', N'1', N'20', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.387', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'337', N'0', N'001-021-001', N'001行021列001层', N'SC01', N'1', N'21', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.387', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'338', N'0', N'001-021-002', N'001行021列002层', N'SC01', N'1', N'21', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.390', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'339', N'0', N'001-021-003', N'001行021列003层', N'SC01', N'1', N'21', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.390', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'340', N'0', N'001-022-001', N'001行022列001层', N'SC01', N'1', N'22', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.390', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'341', N'0', N'001-022-002', N'001行022列002层', N'SC01', N'1', N'22', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.390', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'342', N'0', N'001-022-003', N'001行022列003层', N'SC01', N'1', N'22', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.390', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'343', N'0', N'001-023-001', N'001行023列001层', N'SC01', N'1', N'23', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'344', N'0', N'001-023-002', N'001行023列002层', N'SC01', N'1', N'23', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'345', N'0', N'001-023-003', N'001行023列003层', N'SC01', N'1', N'23', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'346', N'0', N'001-024-001', N'001行024列001层', N'SC01', N'1', N'24', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'347', N'0', N'001-024-002', N'001行024列002层', N'SC01', N'1', N'24', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'348', N'0', N'001-024-003', N'001行024列003层', N'SC01', N'1', N'24', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'349', N'0', N'001-025-001', N'001行025列001层', N'SC01', N'1', N'25', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'350', N'0', N'001-025-002', N'001行025列002层', N'SC01', N'1', N'25', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'351', N'0', N'001-025-003', N'001行025列003层', N'SC01', N'1', N'25', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.393', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'352', N'0', N'001-026-001', N'001行026列001层', N'SC01', N'1', N'26', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'353', N'0', N'001-026-002', N'001行026列002层', N'SC01', N'1', N'26', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'354', N'0', N'001-026-003', N'001行026列003层', N'SC01', N'1', N'26', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'355', N'0', N'001-027-001', N'001行027列001层', N'SC01', N'1', N'27', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'356', N'0', N'001-027-002', N'001行027列002层', N'SC01', N'1', N'27', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'357', N'0', N'001-027-003', N'001行027列003层', N'SC01', N'1', N'27', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'358', N'0', N'001-028-001', N'001行028列001层', N'SC01', N'1', N'28', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'359', N'0', N'001-028-002', N'001行028列002层', N'SC01', N'1', N'28', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'360', N'0', N'001-028-003', N'001行028列003层', N'SC01', N'1', N'28', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'361', N'0', N'001-029-001', N'001行029列001层', N'SC01', N'1', N'29', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.397', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'362', N'0', N'001-029-002', N'001行029列002层', N'SC01', N'1', N'29', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.400', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'363', N'0', N'001-029-003', N'001行029列003层', N'SC01', N'1', N'29', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.400', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'364', N'0', N'001-030-001', N'001行030列001层', N'SC01', N'1', N'30', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.400', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'365', N'0', N'001-030-002', N'001行030列002层', N'SC01', N'1', N'30', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.400', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'366', N'0', N'001-030-003', N'001行030列003层', N'SC01', N'1', N'30', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.407', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'367', N'0', N'001-031-001', N'001行031列001层', N'SC01', N'1', N'31', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.407', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'368', N'0', N'001-031-002', N'001行031列002层', N'SC01', N'1', N'31', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.407', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'369', N'0', N'001-031-003', N'001行031列003层', N'SC01', N'1', N'31', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.407', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'370', N'0', N'001-032-001', N'001行032列001层', N'SC01', N'1', N'32', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.407', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'371', N'0', N'001-032-002', N'001行032列002层', N'SC01', N'1', N'32', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'372', N'0', N'001-032-003', N'001行032列003层', N'SC01', N'1', N'32', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'373', N'0', N'001-033-001', N'001行033列001层', N'SC01', N'1', N'33', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'374', N'0', N'001-033-002', N'001行033列002层', N'SC01', N'1', N'33', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'375', N'0', N'001-033-003', N'001行033列003层', N'SC01', N'1', N'33', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'376', N'0', N'001-034-001', N'001行034列001层', N'SC01', N'1', N'34', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'377', N'0', N'001-034-002', N'001行034列002层', N'SC01', N'1', N'34', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'378', N'0', N'001-034-003', N'001行034列003层', N'SC01', N'1', N'34', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'379', N'0', N'001-035-001', N'001行035列001层', N'SC01', N'1', N'35', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.410', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'380', N'0', N'001-035-002', N'001行035列002层', N'SC01', N'1', N'35', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.413', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'381', N'0', N'001-035-003', N'001行035列003层', N'SC01', N'1', N'35', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.413', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'382', N'0', N'001-036-001', N'001行036列001层', N'SC01', N'1', N'36', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.413', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'383', N'0', N'001-036-002', N'001行036列002层', N'SC01', N'1', N'36', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.413', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'384', N'0', N'001-036-003', N'001行036列003层', N'SC01', N'1', N'36', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.413', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'385', N'0', N'001-037-001', N'001行037列001层', N'SC01', N'1', N'37', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.413', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'386', N'0', N'001-037-002', N'001行037列002层', N'SC01', N'1', N'37', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'387', N'0', N'001-037-003', N'001行037列003层', N'SC01', N'1', N'37', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'388', N'0', N'001-038-001', N'001行038列001层', N'SC01', N'1', N'38', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'389', N'0', N'001-038-002', N'001行038列002层', N'SC01', N'1', N'38', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'390', N'0', N'001-038-003', N'001行038列003层', N'SC01', N'1', N'38', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'391', N'0', N'001-039-001', N'001行039列001层', N'SC01', N'1', N'39', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'392', N'0', N'001-039-002', N'001行039列002层', N'SC01', N'1', N'39', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'393', N'0', N'001-039-003', N'001行039列003层', N'SC01', N'1', N'39', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'394', N'0', N'001-040-001', N'001行040列001层', N'SC01', N'1', N'40', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'395', N'0', N'001-040-002', N'001行040列002层', N'SC01', N'1', N'40', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'396', N'0', N'001-040-003', N'001行040列003层', N'SC01', N'1', N'40', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'397', N'0', N'001-041-001', N'001行041列001层', N'SC01', N'1', N'41', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'398', N'0', N'001-041-002', N'001行041列002层', N'SC01', N'1', N'41', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'399', N'0', N'001-041-003', N'001行041列003层', N'SC01', N'1', N'41', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'400', N'0', N'001-042-001', N'001行042列001层', N'SC01', N'1', N'42', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'401', N'0', N'001-042-002', N'001行042列002层', N'SC01', N'1', N'42', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'402', N'0', N'001-042-003', N'001行042列003层', N'SC01', N'1', N'42', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'403', N'0', N'001-043-001', N'001行043列001层', N'SC01', N'1', N'43', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'404', N'0', N'001-043-002', N'001行043列002层', N'SC01', N'1', N'43', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.420', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'405', N'0', N'001-043-003', N'001行043列003层', N'SC01', N'1', N'43', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'406', N'0', N'001-044-001', N'001行044列001层', N'SC01', N'1', N'44', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'407', N'0', N'001-044-002', N'001行044列002层', N'SC01', N'1', N'44', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'408', N'0', N'001-044-003', N'001行044列003层', N'SC01', N'1', N'44', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'409', N'0', N'001-045-001', N'001行045列001层', N'SC01', N'1', N'45', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'410', N'0', N'001-045-002', N'001行045列002层', N'SC01', N'1', N'45', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'411', N'0', N'001-045-003', N'001行045列003层', N'SC01', N'1', N'45', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'412', N'0', N'001-046-001', N'001行046列001层', N'SC01', N'1', N'46', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'413', N'0', N'001-046-002', N'001行046列002层', N'SC01', N'1', N'46', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'414', N'0', N'001-046-003', N'001行046列003层', N'SC01', N'1', N'46', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.423', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'415', N'0', N'002-001-001', N'002行001列001层', N'SC01', N'2', N'1', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'416', N'0', N'002-001-002', N'002行001列002层', N'SC01', N'2', N'1', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'417', N'0', N'002-001-003', N'002行001列003层', N'SC01', N'2', N'1', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'418', N'0', N'002-002-001', N'002行002列001层', N'SC01', N'2', N'2', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'419', N'0', N'002-002-002', N'002行002列002层', N'SC01', N'2', N'2', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'420', N'0', N'002-002-003', N'002行002列003层', N'SC01', N'2', N'2', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'421', N'0', N'002-003-001', N'002行003列001层', N'SC01', N'2', N'3', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'422', N'0', N'002-003-002', N'002行003列002层', N'SC01', N'2', N'3', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'423', N'0', N'002-003-003', N'002行003列003层', N'SC01', N'2', N'3', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'424', N'0', N'002-004-001', N'002行004列001层', N'SC01', N'2', N'4', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'425', N'0', N'002-004-002', N'002行004列002层', N'SC01', N'2', N'4', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'426', N'0', N'002-004-003', N'002行004列003层', N'SC01', N'2', N'4', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'427', N'0', N'002-005-001', N'002行005列001层', N'SC01', N'2', N'5', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'428', N'0', N'002-005-002', N'002行005列002层', N'SC01', N'2', N'5', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'429', N'0', N'002-005-003', N'002行005列003层', N'SC01', N'2', N'5', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'430', N'0', N'002-006-001', N'002行006列001层', N'SC01', N'2', N'6', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'431', N'0', N'002-006-002', N'002行006列002层', N'SC01', N'2', N'6', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'432', N'0', N'002-006-003', N'002行006列003层', N'SC01', N'2', N'6', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'433', N'0', N'002-007-001', N'002行007列001层', N'SC01', N'2', N'7', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'434', N'0', N'002-007-002', N'002行007列002层', N'SC01', N'2', N'7', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'435', N'0', N'002-007-003', N'002行007列003层', N'SC01', N'2', N'7', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'436', N'0', N'002-008-001', N'002行008列001层', N'SC01', N'2', N'8', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'437', N'0', N'002-008-002', N'002行008列002层', N'SC01', N'2', N'8', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'438', N'0', N'002-008-003', N'002行008列003层', N'SC01', N'2', N'8', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'439', N'0', N'002-009-001', N'002行009列001层', N'SC01', N'2', N'9', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'440', N'0', N'002-009-002', N'002行009列002层', N'SC01', N'2', N'9', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'441', N'0', N'002-009-003', N'002行009列003层', N'SC01', N'2', N'9', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'442', N'0', N'002-010-001', N'002行010列001层', N'SC01', N'2', N'10', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'443', N'0', N'002-010-002', N'002行010列002层', N'SC01', N'2', N'10', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'444', N'0', N'002-010-003', N'002行010列003层', N'SC01', N'2', N'10', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'445', N'0', N'002-011-001', N'002行011列001层', N'SC01', N'2', N'11', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'446', N'0', N'002-011-002', N'002行011列002层', N'SC01', N'2', N'11', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'447', N'0', N'002-011-003', N'002行011列003层', N'SC01', N'2', N'11', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'448', N'0', N'002-012-001', N'002行012列001层', N'SC01', N'2', N'12', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'449', N'0', N'002-012-002', N'002行012列002层', N'SC01', N'2', N'12', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'450', N'0', N'002-012-003', N'002行012列003层', N'SC01', N'2', N'12', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'451', N'0', N'002-013-001', N'002行013列001层', N'SC01', N'2', N'13', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'452', N'0', N'002-013-002', N'002行013列002层', N'SC01', N'2', N'13', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'453', N'0', N'002-013-003', N'002行013列003层', N'SC01', N'2', N'13', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'454', N'0', N'002-014-001', N'002行014列001层', N'SC01', N'2', N'14', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'455', N'0', N'002-014-002', N'002行014列002层', N'SC01', N'2', N'14', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'456', N'0', N'002-014-003', N'002行014列003层', N'SC01', N'2', N'14', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'457', N'0', N'002-015-001', N'002行015列001层', N'SC01', N'2', N'15', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'458', N'0', N'002-015-002', N'002行015列002层', N'SC01', N'2', N'15', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.437', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'459', N'0', N'002-015-003', N'002行015列003层', N'SC01', N'2', N'15', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.440', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'460', N'0', N'002-016-001', N'002行016列001层', N'SC01', N'2', N'16', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.440', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'461', N'0', N'002-016-002', N'002行016列002层', N'SC01', N'2', N'16', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.440', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'462', N'0', N'002-016-003', N'002行016列003层', N'SC01', N'2', N'16', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.440', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'463', N'0', N'002-017-001', N'002行017列001层', N'SC01', N'2', N'17', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.440', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'464', N'0', N'002-017-002', N'002行017列002层', N'SC01', N'2', N'17', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.440', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'465', N'0', N'002-017-003', N'002行017列003层', N'SC01', N'2', N'17', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.440', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'466', N'0', N'002-018-001', N'002行018列001层', N'SC01', N'2', N'18', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'467', N'0', N'002-018-002', N'002行018列002层', N'SC01', N'2', N'18', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'468', N'0', N'002-018-003', N'002行018列003层', N'SC01', N'2', N'18', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'469', N'0', N'002-019-001', N'002行019列001层', N'SC01', N'2', N'19', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'470', N'0', N'002-019-002', N'002行019列002层', N'SC01', N'2', N'19', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'471', N'0', N'002-019-003', N'002行019列003层', N'SC01', N'2', N'19', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'472', N'0', N'002-020-001', N'002行020列001层', N'SC01', N'2', N'20', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'473', N'0', N'002-020-002', N'002行020列002层', N'SC01', N'2', N'20', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'474', N'0', N'002-020-003', N'002行020列003层', N'SC01', N'2', N'20', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.443', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'475', N'0', N'002-021-001', N'002行021列001层', N'SC01', N'2', N'21', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'476', N'0', N'002-021-002', N'002行021列002层', N'SC01', N'2', N'21', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'477', N'0', N'002-021-003', N'002行021列003层', N'SC01', N'2', N'21', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'478', N'0', N'002-022-001', N'002行022列001层', N'SC01', N'2', N'22', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'479', N'0', N'002-022-002', N'002行022列002层', N'SC01', N'2', N'22', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'480', N'0', N'002-022-003', N'002行022列003层', N'SC01', N'2', N'22', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'481', N'0', N'002-023-001', N'002行023列001层', N'SC01', N'2', N'23', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'482', N'0', N'002-023-002', N'002行023列002层', N'SC01', N'2', N'23', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'483', N'0', N'002-023-003', N'002行023列003层', N'SC01', N'2', N'23', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'484', N'0', N'002-024-001', N'002行024列001层', N'SC01', N'2', N'24', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'485', N'0', N'002-024-002', N'002行024列002层', N'SC01', N'2', N'24', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.447', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'486', N'0', N'002-024-003', N'002行024列003层', N'SC01', N'2', N'24', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'487', N'0', N'002-025-001', N'002行025列001层', N'SC01', N'2', N'25', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'488', N'0', N'002-025-002', N'002行025列002层', N'SC01', N'2', N'25', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'489', N'0', N'002-025-003', N'002行025列003层', N'SC01', N'2', N'25', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'490', N'0', N'002-026-001', N'002行026列001层', N'SC01', N'2', N'26', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'491', N'0', N'002-026-002', N'002行026列002层', N'SC01', N'2', N'26', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'492', N'0', N'002-026-003', N'002行026列003层', N'SC01', N'2', N'26', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'493', N'0', N'002-027-001', N'002行027列001层', N'SC01', N'2', N'27', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'494', N'0', N'002-027-002', N'002行027列002层', N'SC01', N'2', N'27', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.450', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'495', N'0', N'002-027-003', N'002行027列003层', N'SC01', N'2', N'27', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'496', N'0', N'002-028-001', N'002行028列001层', N'SC01', N'2', N'28', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'497', N'0', N'002-028-002', N'002行028列002层', N'SC01', N'2', N'28', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'498', N'0', N'002-028-003', N'002行028列003层', N'SC01', N'2', N'28', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'499', N'0', N'002-029-001', N'002行029列001层', N'SC01', N'2', N'29', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'500', N'0', N'002-029-002', N'002行029列002层', N'SC01', N'2', N'29', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'501', N'0', N'002-029-003', N'002行029列003层', N'SC01', N'2', N'29', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'502', N'0', N'002-030-001', N'002行030列001层', N'SC01', N'2', N'30', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'503', N'0', N'002-030-002', N'002行030列002层', N'SC01', N'2', N'30', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.453', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'504', N'0', N'002-030-003', N'002行030列003层', N'SC01', N'2', N'30', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'505', N'0', N'002-031-001', N'002行031列001层', N'SC01', N'2', N'31', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'506', N'0', N'002-031-002', N'002行031列002层', N'SC01', N'2', N'31', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'507', N'0', N'002-031-003', N'002行031列003层', N'SC01', N'2', N'31', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'508', N'0', N'002-032-001', N'002行032列001层', N'SC01', N'2', N'32', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'509', N'0', N'002-032-002', N'002行032列002层', N'SC01', N'2', N'32', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'510', N'0', N'002-032-003', N'002行032列003层', N'SC01', N'2', N'32', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'511', N'0', N'002-033-001', N'002行033列001层', N'SC01', N'2', N'33', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'512', N'0', N'002-033-002', N'002行033列002层', N'SC01', N'2', N'33', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.457', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'513', N'0', N'002-033-003', N'002行033列003层', N'SC01', N'2', N'33', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.460', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'514', N'0', N'002-034-001', N'002行034列001层', N'SC01', N'2', N'34', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.460', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'515', N'0', N'002-034-002', N'002行034列002层', N'SC01', N'2', N'34', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.460', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'516', N'0', N'002-034-003', N'002行034列003层', N'SC01', N'2', N'34', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.460', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'517', N'0', N'002-035-001', N'002行035列001层', N'SC01', N'2', N'35', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.460', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'518', N'0', N'002-035-002', N'002行035列002层', N'SC01', N'2', N'35', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.460', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'519', N'0', N'002-035-003', N'002行035列003层', N'SC01', N'2', N'35', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'520', N'0', N'002-036-001', N'002行036列001层', N'SC01', N'2', N'36', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'521', N'0', N'002-036-002', N'002行036列002层', N'SC01', N'2', N'36', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'522', N'0', N'002-036-003', N'002行036列003层', N'SC01', N'2', N'36', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'523', N'0', N'002-037-001', N'002行037列001层', N'SC01', N'2', N'37', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'524', N'0', N'002-037-002', N'002行037列002层', N'SC01', N'2', N'37', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'525', N'0', N'002-037-003', N'002行037列003层', N'SC01', N'2', N'37', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'526', N'0', N'002-038-001', N'002行038列001层', N'SC01', N'2', N'38', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'527', N'0', N'002-038-002', N'002行038列002层', N'SC01', N'2', N'38', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'528', N'0', N'002-038-003', N'002行038列003层', N'SC01', N'2', N'38', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'529', N'0', N'002-039-001', N'002行039列001层', N'SC01', N'2', N'39', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'530', N'0', N'002-039-002', N'002行039列002层', N'SC01', N'2', N'39', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'531', N'0', N'002-039-003', N'002行039列003层', N'SC01', N'2', N'39', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.477', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'532', N'0', N'002-040-001', N'002行040列001层', N'SC01', N'2', N'40', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.480', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'533', N'0', N'002-040-002', N'002行040列002层', N'SC01', N'2', N'40', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.480', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'534', N'0', N'002-040-003', N'002行040列003层', N'SC01', N'2', N'40', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.480', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'535', N'0', N'002-041-001', N'002行041列001层', N'SC01', N'2', N'41', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.480', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'536', N'0', N'002-041-002', N'002行041列002层', N'SC01', N'2', N'41', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.480', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'537', N'0', N'002-041-003', N'002行041列003层', N'SC01', N'2', N'41', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.480', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'538', N'0', N'002-042-001', N'002行042列001层', N'SC01', N'2', N'42', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.483', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'539', N'0', N'002-042-002', N'002行042列002层', N'SC01', N'2', N'42', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.483', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'540', N'0', N'002-042-003', N'002行042列003层', N'SC01', N'2', N'42', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.483', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'541', N'0', N'002-043-001', N'002行043列001层', N'SC01', N'2', N'43', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.483', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'542', N'0', N'002-043-002', N'002行043列002层', N'SC01', N'2', N'43', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.483', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'543', N'0', N'002-043-003', N'002行043列003层', N'SC01', N'2', N'43', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.483', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'544', N'0', N'002-044-001', N'002行044列001层', N'SC01', N'2', N'44', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'545', N'0', N'002-044-002', N'002行044列002层', N'SC01', N'2', N'44', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'546', N'0', N'002-044-003', N'002行044列003层', N'SC01', N'2', N'44', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'547', N'0', N'002-045-001', N'002行045列001层', N'SC01', N'2', N'45', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'548', N'0', N'002-045-002', N'002行045列002层', N'SC01', N'2', N'45', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'549', N'0', N'002-045-003', N'002行045列003层', N'SC01', N'2', N'45', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'550', N'0', N'002-046-001', N'002行046列001层', N'SC01', N'2', N'46', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'551', N'0', N'002-046-002', N'002行046列002层', N'SC01', N'2', N'46', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.487', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'552', N'0', N'002-046-003', N'002行046列003层', N'SC01', N'2', N'46', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.490', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'553', N'0', N'003-001-001', N'003行001列001层', N'SC01', N'3', N'1', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.490', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'554', N'0', N'003-001-002', N'003行001列002层', N'SC01', N'3', N'1', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.490', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'555', N'0', N'003-001-003', N'003行001列003层', N'SC01', N'3', N'1', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.490', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'556', N'0', N'003-002-001', N'003行002列001层', N'SC01', N'3', N'2', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.490', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'557', N'0', N'003-002-002', N'003行002列002层', N'SC01', N'3', N'2', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.493', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'558', N'0', N'003-002-003', N'003行002列003层', N'SC01', N'3', N'2', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.493', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'559', N'0', N'003-003-001', N'003行003列001层', N'SC01', N'3', N'3', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.493', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'560', N'0', N'003-003-002', N'003行003列002层', N'SC01', N'3', N'3', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.493', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'561', N'0', N'003-003-003', N'003行003列003层', N'SC01', N'3', N'3', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.493', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'562', N'0', N'003-004-001', N'003行004列001层', N'SC01', N'3', N'4', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.493', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'563', N'0', N'003-004-002', N'003行004列002层', N'SC01', N'3', N'4', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.493', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'564', N'0', N'003-004-003', N'003行004列003层', N'SC01', N'3', N'4', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'565', N'0', N'003-005-001', N'003行005列001层', N'SC01', N'3', N'5', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'566', N'0', N'003-005-002', N'003行005列002层', N'SC01', N'3', N'5', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'567', N'0', N'003-005-003', N'003行005列003层', N'SC01', N'3', N'5', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'568', N'0', N'003-006-001', N'003行006列001层', N'SC01', N'3', N'6', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'569', N'0', N'003-006-002', N'003行006列002层', N'SC01', N'3', N'6', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'570', N'0', N'003-006-003', N'003行006列003层', N'SC01', N'3', N'6', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'571', N'0', N'003-007-001', N'003行007列001层', N'SC01', N'3', N'7', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'572', N'0', N'003-007-002', N'003行007列002层', N'SC01', N'3', N'7', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'573', N'0', N'003-007-003', N'003行007列003层', N'SC01', N'3', N'7', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'574', N'0', N'003-008-001', N'003行008列001层', N'SC01', N'3', N'8', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'575', N'0', N'003-008-002', N'003行008列002层', N'SC01', N'3', N'8', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'576', N'0', N'003-008-003', N'003行008列003层', N'SC01', N'3', N'8', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'577', N'0', N'003-009-001', N'003行009列001层', N'SC01', N'3', N'9', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'578', N'0', N'003-009-002', N'003行009列002层', N'SC01', N'3', N'9', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'579', N'0', N'003-009-003', N'003行009列003层', N'SC01', N'3', N'9', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'580', N'0', N'003-010-001', N'003行010列001层', N'SC01', N'3', N'10', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.500', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'581', N'0', N'003-010-002', N'003行010列002层', N'SC01', N'3', N'10', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'582', N'0', N'003-010-003', N'003行010列003层', N'SC01', N'3', N'10', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'583', N'0', N'003-011-001', N'003行011列001层', N'SC01', N'3', N'11', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'584', N'0', N'003-011-002', N'003行011列002层', N'SC01', N'3', N'11', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'585', N'0', N'003-011-003', N'003行011列003层', N'SC01', N'3', N'11', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'586', N'0', N'003-012-001', N'003行012列001层', N'SC01', N'3', N'12', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'587', N'0', N'003-012-002', N'003行012列002层', N'SC01', N'3', N'12', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'588', N'0', N'003-012-003', N'003行012列003层', N'SC01', N'3', N'12', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'589', N'0', N'003-013-001', N'003行013列001层', N'SC01', N'3', N'13', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'590', N'0', N'003-013-002', N'003行013列002层', N'SC01', N'3', N'13', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'591', N'0', N'003-013-003', N'003行013列003层', N'SC01', N'3', N'13', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.503', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'592', N'0', N'003-014-001', N'003行014列001层', N'SC01', N'3', N'14', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'593', N'0', N'003-014-002', N'003行014列002层', N'SC01', N'3', N'14', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'594', N'0', N'003-014-003', N'003行014列003层', N'SC01', N'3', N'14', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'595', N'0', N'003-015-001', N'003行015列001层', N'SC01', N'3', N'15', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'596', N'0', N'003-015-002', N'003行015列002层', N'SC01', N'3', N'15', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'597', N'0', N'003-015-003', N'003行015列003层', N'SC01', N'3', N'15', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'598', N'0', N'003-016-001', N'003行016列001层', N'SC01', N'3', N'16', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'599', N'0', N'003-016-002', N'003行016列002层', N'SC01', N'3', N'16', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'600', N'0', N'003-016-003', N'003行016列003层', N'SC01', N'3', N'16', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'601', N'0', N'003-017-001', N'003行017列001层', N'SC01', N'3', N'17', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'602', N'0', N'003-017-002', N'003行017列002层', N'SC01', N'3', N'17', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'603', N'0', N'003-017-003', N'003行017列003层', N'SC01', N'3', N'17', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.507', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'604', N'0', N'003-018-001', N'003行018列001层', N'SC01', N'3', N'18', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'605', N'0', N'003-018-002', N'003行018列002层', N'SC01', N'3', N'18', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'606', N'0', N'003-018-003', N'003行018列003层', N'SC01', N'3', N'18', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'607', N'0', N'003-019-001', N'003行019列001层', N'SC01', N'3', N'19', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'608', N'0', N'003-019-002', N'003行019列002层', N'SC01', N'3', N'19', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'609', N'0', N'003-019-003', N'003行019列003层', N'SC01', N'3', N'19', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'610', N'0', N'003-020-001', N'003行020列001层', N'SC01', N'3', N'20', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'611', N'0', N'003-020-002', N'003行020列002层', N'SC01', N'3', N'20', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'612', N'0', N'003-020-003', N'003行020列003层', N'SC01', N'3', N'20', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'613', N'0', N'003-021-001', N'003行021列001层', N'SC01', N'3', N'21', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'614', N'0', N'003-021-002', N'003行021列002层', N'SC01', N'3', N'21', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.510', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'615', N'0', N'003-021-003', N'003行021列003层', N'SC01', N'3', N'21', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'616', N'0', N'003-022-001', N'003行022列001层', N'SC01', N'3', N'22', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'617', N'0', N'003-022-002', N'003行022列002层', N'SC01', N'3', N'22', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'618', N'0', N'003-022-003', N'003行022列003层', N'SC01', N'3', N'22', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'619', N'0', N'003-023-001', N'003行023列001层', N'SC01', N'3', N'23', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'620', N'0', N'003-023-002', N'003行023列002层', N'SC01', N'3', N'23', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'621', N'0', N'003-023-003', N'003行023列003层', N'SC01', N'3', N'23', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'622', N'0', N'003-024-001', N'003行024列001层', N'SC01', N'3', N'24', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'623', N'0', N'003-024-002', N'003行024列002层', N'SC01', N'3', N'24', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'624', N'0', N'003-024-003', N'003行024列003层', N'SC01', N'3', N'24', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'625', N'0', N'003-025-001', N'003行025列001层', N'SC01', N'3', N'25', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'626', N'0', N'003-025-002', N'003行025列002层', N'SC01', N'3', N'25', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.513', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'627', N'0', N'003-025-003', N'003行025列003层', N'SC01', N'3', N'25', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'628', N'0', N'003-026-001', N'003行026列001层', N'SC01', N'3', N'26', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'629', N'0', N'003-026-002', N'003行026列002层', N'SC01', N'3', N'26', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'630', N'0', N'003-026-003', N'003行026列003层', N'SC01', N'3', N'26', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'631', N'0', N'003-027-001', N'003行027列001层', N'SC01', N'3', N'27', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'632', N'0', N'003-027-002', N'003行027列002层', N'SC01', N'3', N'27', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'633', N'0', N'003-027-003', N'003行027列003层', N'SC01', N'3', N'27', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'634', N'0', N'003-028-001', N'003行028列001层', N'SC01', N'3', N'28', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'635', N'0', N'003-028-002', N'003行028列002层', N'SC01', N'3', N'28', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'636', N'0', N'003-028-003', N'003行028列003层', N'SC01', N'3', N'28', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'637', N'0', N'003-029-001', N'003行029列001层', N'SC01', N'3', N'29', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'638', N'0', N'003-029-002', N'003行029列002层', N'SC01', N'3', N'29', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'639', N'0', N'003-029-003', N'003行029列003层', N'SC01', N'3', N'29', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'640', N'0', N'003-030-001', N'003行030列001层', N'SC01', N'3', N'30', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'641', N'0', N'003-030-002', N'003行030列002层', N'SC01', N'3', N'30', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'642', N'0', N'003-030-003', N'003行030列003层', N'SC01', N'3', N'30', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'643', N'0', N'003-031-001', N'003行031列001层', N'SC01', N'3', N'31', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'644', N'0', N'003-031-002', N'003行031列002层', N'SC01', N'3', N'31', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'645', N'0', N'003-031-003', N'003行031列003层', N'SC01', N'3', N'31', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'646', N'0', N'003-032-001', N'003行032列001层', N'SC01', N'3', N'32', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'647', N'0', N'003-032-002', N'003行032列002层', N'SC01', N'3', N'32', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'648', N'0', N'003-032-003', N'003行032列003层', N'SC01', N'3', N'32', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'649', N'0', N'003-033-001', N'003行033列001层', N'SC01', N'3', N'33', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'650', N'0', N'003-033-002', N'003行033列002层', N'SC01', N'3', N'33', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'651', N'0', N'003-033-003', N'003行033列003层', N'SC01', N'3', N'33', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.520', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'652', N'0', N'003-034-001', N'003行034列001层', N'SC01', N'3', N'34', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.523', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'653', N'0', N'003-034-002', N'003行034列002层', N'SC01', N'3', N'34', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.523', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'654', N'0', N'003-034-003', N'003行034列003层', N'SC01', N'3', N'34', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.523', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'655', N'0', N'003-035-001', N'003行035列001层', N'SC01', N'3', N'35', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.523', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'656', N'0', N'003-035-002', N'003行035列002层', N'SC01', N'3', N'35', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.523', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'657', N'0', N'003-035-003', N'003行035列003层', N'SC01', N'3', N'35', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.523', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'658', N'0', N'003-036-001', N'003行036列001层', N'SC01', N'3', N'36', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'659', N'0', N'003-036-002', N'003行036列002层', N'SC01', N'3', N'36', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'660', N'0', N'003-036-003', N'003行036列003层', N'SC01', N'3', N'36', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'661', N'0', N'003-037-001', N'003行037列001层', N'SC01', N'3', N'37', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'662', N'0', N'003-037-002', N'003行037列002层', N'SC01', N'3', N'37', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'663', N'0', N'003-037-003', N'003行037列003层', N'SC01', N'3', N'37', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'664', N'0', N'003-038-001', N'003行038列001层', N'SC01', N'3', N'38', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'665', N'0', N'003-038-002', N'003行038列002层', N'SC01', N'3', N'38', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.527', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'666', N'0', N'003-038-003', N'003行038列003层', N'SC01', N'3', N'38', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.530', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'667', N'0', N'003-039-001', N'003行039列001层', N'SC01', N'3', N'39', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.530', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'668', N'0', N'003-039-002', N'003行039列002层', N'SC01', N'3', N'39', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.530', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'669', N'0', N'003-039-003', N'003行039列003层', N'SC01', N'3', N'39', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.530', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'670', N'0', N'003-040-001', N'003行040列001层', N'SC01', N'3', N'40', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.530', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'671', N'0', N'003-040-002', N'003行040列002层', N'SC01', N'3', N'40', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.530', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'672', N'0', N'003-040-003', N'003行040列003层', N'SC01', N'3', N'40', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.533', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'673', N'0', N'003-041-001', N'003行041列001层', N'SC01', N'3', N'41', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.533', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'674', N'0', N'003-041-002', N'003行041列002层', N'SC01', N'3', N'41', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.533', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'675', N'0', N'003-041-003', N'003行041列003层', N'SC01', N'3', N'41', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.533', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'676', N'0', N'003-042-001', N'003行042列001层', N'SC01', N'3', N'42', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.533', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'677', N'0', N'003-042-002', N'003行042列002层', N'SC01', N'3', N'42', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.533', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'678', N'0', N'003-042-003', N'003行042列003层', N'SC01', N'3', N'42', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.537', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'679', N'0', N'003-043-001', N'003行043列001层', N'SC01', N'3', N'43', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.537', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'680', N'0', N'003-043-002', N'003行043列002层', N'SC01', N'3', N'43', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.537', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'681', N'0', N'003-043-003', N'003行043列003层', N'SC01', N'3', N'43', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.537', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'682', N'0', N'003-044-001', N'003行044列001层', N'SC01', N'3', N'44', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.537', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'683', N'0', N'003-044-002', N'003行044列002层', N'SC01', N'3', N'44', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.537', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'684', N'0', N'003-044-003', N'003行044列003层', N'SC01', N'3', N'44', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.537', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'685', N'0', N'003-045-001', N'003行045列001层', N'SC01', N'3', N'45', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.540', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'686', N'0', N'003-045-002', N'003行045列002层', N'SC01', N'3', N'45', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.540', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'687', N'0', N'003-045-003', N'003行045列003层', N'SC01', N'3', N'45', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.540', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'688', N'0', N'003-046-001', N'003行046列001层', N'SC01', N'3', N'46', N'1', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.540', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'689', N'0', N'003-046-002', N'003行046列002层', N'SC01', N'3', N'46', N'2', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.540', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationInfo] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'690', N'0', N'003-046-003', N'003行046列003层', N'SC01', N'3', N'46', N'3', N'1', N'12', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.540', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_LocationInfo] OFF GO -- ---------------------------- -- Auto increment value for Dt_LocationInfo -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_LocationInfo]', RESEED, 690) GO -- ---------------------------- -- Primary Key structure for table Dt_LocationInfo -- ---------------------------- ALTER TABLE [dbo].[Dt_LocationInfo] ADD CONSTRAINT [PK_Dt_LocationInfo_Id] PRIMARY KEY CLUSTERED ([Id]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO