/* 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: 27/04/2025 11:35:11 */ -- ---------------------------- -- Table structure for Dt_AnalysisRuleConfig -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_AnalysisRuleConfig]') AND type IN ('U')) DROP TABLE [dbo].[Dt_AnalysisRuleConfig] GO CREATE TABLE [dbo].[Dt_AnalysisRuleConfig] ( [Id] int IDENTITY(1,1) NOT NULL, [AnalysisCode] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [AnalysisName] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [StartStr] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [EndStr] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [SplitStr] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [Format] varchar(100) COLLATE Chinese_PRC_CI_AS NOT NULL, [Remark] varchar(200) COLLATE Chinese_PRC_CI_AS NOT 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_AnalysisRuleConfig] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AnalysisRuleConfig', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'规则编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AnalysisRuleConfig', 'COLUMN', N'AnalysisCode' GO EXEC sp_addextendedproperty 'MS_Description', N'规则名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AnalysisRuleConfig', 'COLUMN', N'AnalysisName' GO EXEC sp_addextendedproperty 'MS_Description', N'前缀字符串', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AnalysisRuleConfig', 'COLUMN', N'StartStr' GO EXEC sp_addextendedproperty 'MS_Description', N'结束字符串', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AnalysisRuleConfig', 'COLUMN', N'EndStr' GO EXEC sp_addextendedproperty 'MS_Description', N'分割字符串', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AnalysisRuleConfig', 'COLUMN', N'SplitStr' GO EXEC sp_addextendedproperty 'MS_Description', N'编码规则', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AnalysisRuleConfig', 'COLUMN', N'Format' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AnalysisRuleConfig', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AnalysisRuleConfig', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AnalysisRuleConfig', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AnalysisRuleConfig', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AnalysisRuleConfig', 'COLUMN', N'ModifyDate' GO -- ---------------------------- -- Records of Dt_AnalysisRuleConfig -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_AnalysisRuleConfig] ON GO INSERT INTO [dbo].[Dt_AnalysisRuleConfig] ([Id], [AnalysisCode], [AnalysisName], [StartStr], [EndStr], [SplitStr], [Format], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'InnerCode', N'内箱码', N'[', N']', N',', N'[MTC],[MTPT],[BHN],[MTQ],[ODN],[BD]', N'内箱码', N'admin', N'2024-10-31 10:26:59.000', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_AnalysisRuleConfig] OFF GO -- ---------------------------- -- Table structure for Dt_AreaInfo -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_AreaInfo]') AND type IN ('U')) DROP TABLE [dbo].[Dt_AreaInfo] GO CREATE TABLE [dbo].[Dt_AreaInfo] ( [Id] int IDENTITY(1,1) NOT NULL, [WarehouseId] int NOT NULL, [AreaCode] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [AreaName] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [AreaType] int DEFAULT '0' NOT NULL, [AreaStatus] int DEFAULT '0' NOT NULL, [AreaDes] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [Remark] varchar(500) 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_AreaInfo] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaInfo', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'仓库主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaInfo', 'COLUMN', N'WarehouseId' GO EXEC sp_addextendedproperty 'MS_Description', N'区域编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaInfo', 'COLUMN', N'AreaCode' GO EXEC sp_addextendedproperty 'MS_Description', N'区域名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaInfo', 'COLUMN', N'AreaName' GO EXEC sp_addextendedproperty 'MS_Description', N'区域类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaInfo', 'COLUMN', N'AreaType' GO EXEC sp_addextendedproperty 'MS_Description', N'区域状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaInfo', 'COLUMN', N'AreaStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'区域描述', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaInfo', 'COLUMN', N'AreaDes' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaInfo', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaInfo', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaInfo', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaInfo', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaInfo', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'区域信息', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaInfo' GO -- ---------------------------- -- Records of Dt_AreaInfo -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_AreaInfo] ON GO INSERT INTO [dbo].[Dt_AreaInfo] ([Id], [WarehouseId], [AreaCode], [AreaName], [AreaType], [AreaStatus], [AreaDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'1', N'001', N'A', N'1', N'1', N'', NULL, N'admin', N'2024-10-15 15:26:24.807', NULL, NULL) GO INSERT INTO [dbo].[Dt_AreaInfo] ([Id], [WarehouseId], [AreaCode], [AreaName], [AreaType], [AreaStatus], [AreaDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'1', N'002', N'B', N'1', N'1', N'', NULL, N'admin', N'2024-10-15 15:27:07.823', N'admin', N'2024-11-19 10:00:59.410') GO SET IDENTITY_INSERT [dbo].[Dt_AreaInfo] OFF GO -- ---------------------------- -- Table structure for Dt_AreaRouter -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_AreaRouter]') AND type IN ('U')) DROP TABLE [dbo].[Dt_AreaRouter] GO CREATE TABLE [dbo].[Dt_AreaRouter] ( [Id] int IDENTITY(1,1) NOT NULL, [StartArea] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [NextArea] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [RouterType] int NOT NULL, [IsEnd] bit NOT NULL, [Remark] varchar(255) 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_AreaRouter] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaRouter', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'起点', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaRouter', 'COLUMN', N'StartArea' GO EXEC sp_addextendedproperty 'MS_Description', N'终点', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaRouter', 'COLUMN', N'NextArea' GO EXEC sp_addextendedproperty 'MS_Description', N'路由类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaRouter', 'COLUMN', N'RouterType' GO EXEC sp_addextendedproperty 'MS_Description', N'是否是最终点', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaRouter', 'COLUMN', N'IsEnd' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaRouter', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaRouter', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaRouter', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaRouter', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_AreaRouter', 'COLUMN', N'ModifyDate' GO -- ---------------------------- -- Records of Dt_AreaRouter -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_AreaRouter] ON GO SET IDENTITY_INSERT [dbo].[Dt_AreaRouter] OFF GO -- ---------------------------- -- Table structure for Dt_CachePoint -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_CachePoint]') AND type IN ('U')) DROP TABLE [dbo].[Dt_CachePoint] GO CREATE TABLE [dbo].[Dt_CachePoint] ( [Id] int IDENTITY(1,1) NOT NULL, [AreaId] int NOT NULL, [PointCode] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [PointStatus] int DEFAULT '0' NOT NULL, [EnableStatus] int DEFAULT '0' NOT NULL, [Row] int NOT NULL, [Column] int NOT NULL, [Depth] int NOT NULL, [PointType] int NOT NULL, [Remark] varchar(500) 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_CachePoint] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'区域主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint', 'COLUMN', N'AreaId' GO EXEC sp_addextendedproperty 'MS_Description', N'缓存点编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint', 'COLUMN', N'PointCode' GO EXEC sp_addextendedproperty 'MS_Description', N'缓存点状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint', 'COLUMN', N'PointStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'缓存点启用状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint', 'COLUMN', N'EnableStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'货位行', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint', 'COLUMN', N'Row' GO EXEC sp_addextendedproperty 'MS_Description', N'货位列', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint', 'COLUMN', N'Column' GO EXEC sp_addextendedproperty 'MS_Description', N'货位深度', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint', 'COLUMN', N'Depth' GO EXEC sp_addextendedproperty 'MS_Description', N'缓存点类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint', 'COLUMN', N'PointType' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'缓存点位', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CachePoint' GO -- ---------------------------- -- Records of Dt_CachePoint -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_CachePoint] ON GO SET IDENTITY_INSERT [dbo].[Dt_CachePoint] OFF GO -- ---------------------------- -- Table structure for Dt_CodeRuleConfig -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_CodeRuleConfig]') AND type IN ('U')) DROP TABLE [dbo].[Dt_CodeRuleConfig] GO CREATE TABLE [dbo].[Dt_CodeRuleConfig] ( [Id] int IDENTITY(1,1) NOT NULL, [RuleCode] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [RuleName] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [StartVal] int NOT NULL, [StartStr] varchar(2) COLLATE Chinese_PRC_CI_AS NOT NULL, [Format] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [Length] int NOT NULL, [CurrentVal] int NOT NULL, [Remark] varchar(500) COLLATE Chinese_PRC_CI_AS NOT 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_CodeRuleConfig] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CodeRuleConfig', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'规则编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CodeRuleConfig', 'COLUMN', N'RuleCode' GO EXEC sp_addextendedproperty 'MS_Description', N'规则名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CodeRuleConfig', 'COLUMN', N'RuleName' GO EXEC sp_addextendedproperty 'MS_Description', N'流水号起始值', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CodeRuleConfig', 'COLUMN', N'StartVal' GO EXEC sp_addextendedproperty 'MS_Description', N'前缀字符串', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CodeRuleConfig', 'COLUMN', N'StartStr' GO EXEC sp_addextendedproperty 'MS_Description', N'编码规则', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CodeRuleConfig', 'COLUMN', N'Format' GO EXEC sp_addextendedproperty 'MS_Description', N'流水号长度', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CodeRuleConfig', 'COLUMN', N'Length' GO EXEC sp_addextendedproperty 'MS_Description', N'流水号当前值', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CodeRuleConfig', 'COLUMN', N'CurrentVal' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CodeRuleConfig', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CodeRuleConfig', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CodeRuleConfig', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CodeRuleConfig', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_CodeRuleConfig', 'COLUMN', N'ModifyDate' GO -- ---------------------------- -- Records of Dt_CodeRuleConfig -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_CodeRuleConfig] ON GO INSERT INTO [dbo].[Dt_CodeRuleConfig] ([Id], [RuleCode], [RuleName], [StartVal], [StartStr], [Format], [Length], [CurrentVal], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'InnerCode', N'内箱码', N'1', N'[', N'[MTC],[MTPT],[BHN],[MTQ],[ODN],[BD]', N'10', N'1', N'内箱码', N'admin', N'2024-10-31 10:29:30.000', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_CodeRuleConfig] OFF GO -- ---------------------------- -- Table structure for Dt_InboundOrder -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_InboundOrder]') AND type IN ('U')) DROP TABLE [dbo].[Dt_InboundOrder] GO CREATE TABLE [dbo].[Dt_InboundOrder] ( [Id] int IDENTITY(1,1) NOT NULL, [OrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [UpperOrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [OrderType] int NOT NULL, [OrderStatus] int NOT NULL, [CreateType] int 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_InboundOrder] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'上游单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder', 'COLUMN', N'UpperOrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'单据类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder', 'COLUMN', N'OrderType' GO EXEC sp_addextendedproperty 'MS_Description', N'单据状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder', 'COLUMN', N'OrderStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'创建方式', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder', 'COLUMN', N'CreateType' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'入库单', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder' GO -- ---------------------------- -- Records of Dt_InboundOrder -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_InboundOrder] ON GO INSERT INTO [dbo].[Dt_InboundOrder] ([Id], [OrderNo], [UpperOrderNo], [OrderType], [OrderStatus], [CreateType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1055', N'250423', N'', N'100', N'1', N'0', N'', N'admin', N'2025-04-25 09:45:31.497', NULL, N'2025-04-25 10:02:00.887') GO INSERT INTO [dbo].[Dt_InboundOrder] ([Id], [OrderNo], [UpperOrderNo], [OrderType], [OrderStatus], [CreateType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2052', N'250427', N'', N'100', N'0', N'0', N'', N'admin', N'2025-04-27 11:14:15.830', NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrder] ([Id], [OrderNo], [UpperOrderNo], [OrderType], [OrderStatus], [CreateType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2053', N'250427', N'', N'110', N'0', N'0', N'', N'admin', N'2025-04-27 11:15:28.587', NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrder] ([Id], [OrderNo], [UpperOrderNo], [OrderType], [OrderStatus], [CreateType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2054', N'250407', N'', N'105', N'0', N'0', N'', N'admin', N'2025-04-27 11:17:47.340', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_InboundOrder] OFF GO -- ---------------------------- -- Table structure for Dt_InboundOrder_Hty -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_InboundOrder_Hty]') AND type IN ('U')) DROP TABLE [dbo].[Dt_InboundOrder_Hty] GO CREATE TABLE [dbo].[Dt_InboundOrder_Hty] ( [Id] int IDENTITY(1,1) NOT NULL, [SourceId] int DEFAULT '0' NOT NULL, [OperateType] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [InsertTime] datetime NOT NULL, [OrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [UpperOrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [OrderType] int NOT NULL, [OrderStatus] int NOT NULL, [CreateType] int 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_InboundOrder_Hty] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'原表主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty', 'COLUMN', N'SourceId' GO EXEC sp_addextendedproperty 'MS_Description', N'操作类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty', 'COLUMN', N'OperateType' GO EXEC sp_addextendedproperty 'MS_Description', N'移入历史时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty', 'COLUMN', N'InsertTime' GO EXEC sp_addextendedproperty 'MS_Description', N'单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'上游单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty', 'COLUMN', N'UpperOrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'单据类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty', 'COLUMN', N'OrderType' GO EXEC sp_addextendedproperty 'MS_Description', N'单据状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty', 'COLUMN', N'OrderStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'创建方式', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty', 'COLUMN', N'CreateType' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'入库单历史', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrder_Hty' GO -- ---------------------------- -- Records of Dt_InboundOrder_Hty -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_InboundOrder_Hty] ON GO INSERT INTO [dbo].[Dt_InboundOrder_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [OrderNo], [UpperOrderNo], [OrderType], [OrderStatus], [CreateType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'1049', N'自动完成', N'1900-01-01 00:00:00.000', N'20250222', N'', N'100', N'2', N'0', N'', N'admin', N'2025-02-23 12:20:07.193', NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrder_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [OrderNo], [UpperOrderNo], [OrderType], [OrderStatus], [CreateType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'1053', N'自动完成', N'2025-04-24 15:16:11.837', N'250422', N'', N'100', N'2', N'0', N'', N'admin', N'2025-04-24 15:16:11.890', NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrder_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [OrderNo], [UpperOrderNo], [OrderType], [OrderStatus], [CreateType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'1054', N'自动完成', N'2025-04-24 16:09:05.653', N'250424', N'', N'100', N'2', N'0', N'', N'admin', N'2025-04-24 16:09:05.657', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_InboundOrder_Hty] OFF GO -- ---------------------------- -- Table structure for Dt_InboundOrderDetail -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_InboundOrderDetail]') AND type IN ('U')) DROP TABLE [dbo].[Dt_InboundOrderDetail] GO CREATE TABLE [dbo].[Dt_InboundOrderDetail] ( [Id] int IDENTITY(1,1) NOT NULL, [OrderId] int NOT NULL, [MaterielCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [MaterielName] varchar(200) COLLATE Chinese_PRC_CI_AS NOT NULL, [BatchNo] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [OrderQuantity] decimal(10,2) NOT NULL, [ReceiptQuantity] decimal(10,2) DEFAULT '0' NOT NULL, [OverInQuantity] decimal(10,2) DEFAULT '0' NOT NULL, [OrderDetailStatus] int NOT NULL, [Remark] varchar(255) 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, [LocationCode] varchar(20) COLLATE Chinese_PRC_CI_AS NULL ) GO ALTER TABLE [dbo].[Dt_InboundOrderDetail] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'入库单主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'OrderId' GO EXEC sp_addextendedproperty 'MS_Description', N'物料编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'MaterielCode' GO EXEC sp_addextendedproperty 'MS_Description', N'物料名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'MaterielName' GO EXEC sp_addextendedproperty 'MS_Description', N'批次号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'BatchNo' GO EXEC sp_addextendedproperty 'MS_Description', N'单据数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'OrderQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'组盘数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'ReceiptQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'上架数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'OverInQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'订单明细状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'OrderDetailStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'货位编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail', 'COLUMN', N'LocationCode' GO EXEC sp_addextendedproperty 'MS_Description', N'入库单明细', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail' GO -- ---------------------------- -- Records of Dt_InboundOrderDetail -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_InboundOrderDetail] ON GO INSERT INTO [dbo].[Dt_InboundOrderDetail] ([Id], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [LocationCode]) VALUES (N'547', N'1055', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'3T1', N'12.00', N'2.00', N'.00', N'10', NULL, N'admin', N'2025-04-25 10:02:01.030', NULL, NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail] ([Id], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [LocationCode]) VALUES (N'1325', N'2052', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T1', N'12.00', N'.00', N'.00', N'0', NULL, N'admin', N'2025-04-27 11:14:16.003', NULL, NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail] ([Id], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [LocationCode]) VALUES (N'1326', N'2052', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T2', N'12.00', N'.00', N'.00', N'0', NULL, N'admin', N'2025-04-27 11:14:16.017', NULL, NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail] ([Id], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [LocationCode]) VALUES (N'1327', N'2052', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T3', N'12.00', N'.00', N'.00', N'0', NULL, N'admin', N'2025-04-27 11:14:16.020', NULL, NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail] ([Id], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [LocationCode]) VALUES (N'1328', N'2052', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'2T1', N'12.00', N'.00', N'.00', N'0', NULL, N'admin', N'2025-04-27 11:14:16.027', NULL, NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail] ([Id], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [LocationCode]) VALUES (N'1329', N'2052', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'2T2', N'12.00', N'.00', N'.00', N'0', NULL, N'admin', N'2025-04-27 11:14:16.030', NULL, NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail] ([Id], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [LocationCode]) VALUES (N'1330', N'2053', N'2', N'2', N'1', N'1.00', N'.00', N'.00', N'0', NULL, N'admin', N'2025-04-27 11:15:28.597', NULL, NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail] ([Id], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [LocationCode]) VALUES (N'1331', N'2054', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1', N'1.00', N'.00', N'.00', N'0', NULL, N'admin', N'2025-04-27 11:17:47.390', NULL, NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_InboundOrderDetail] OFF GO -- ---------------------------- -- Table structure for Dt_InboundOrderDetail_Hty -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_InboundOrderDetail_Hty]') AND type IN ('U')) DROP TABLE [dbo].[Dt_InboundOrderDetail_Hty] GO CREATE TABLE [dbo].[Dt_InboundOrderDetail_Hty] ( [Id] int IDENTITY(1,1) NOT NULL, [SourceId] int DEFAULT '0' NOT NULL, [OperateType] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [InsertTime] datetime NOT NULL, [OrderId] int NOT NULL, [MaterielCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [MaterielName] varchar(200) COLLATE Chinese_PRC_CI_AS NOT NULL, [BatchNo] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [OrderQuantity] decimal(10,2) NOT NULL, [LocationCode] varchar(20) COLLATE Chinese_PRC_CI_AS NULL, [ReceiptQuantity] decimal(10,2) DEFAULT '0' NOT NULL, [OverInQuantity] decimal(10,2) DEFAULT '0' NOT NULL, [OrderDetailStatus] int DEFAULT '0' NOT NULL, [Remark] varchar(255) 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_InboundOrderDetail_Hty] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'原表主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'SourceId' GO EXEC sp_addextendedproperty 'MS_Description', N'操作类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'OperateType' GO EXEC sp_addextendedproperty 'MS_Description', N'移入历史时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'InsertTime' GO EXEC sp_addextendedproperty 'MS_Description', N'入库单主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'OrderId' GO EXEC sp_addextendedproperty 'MS_Description', N'物料编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'MaterielCode' GO EXEC sp_addextendedproperty 'MS_Description', N'物料名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'MaterielName' GO EXEC sp_addextendedproperty 'MS_Description', N'批次号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'BatchNo' GO EXEC sp_addextendedproperty 'MS_Description', N'单据数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'OrderQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'货位编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'LocationCode' GO EXEC sp_addextendedproperty 'MS_Description', N'组盘数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'ReceiptQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'上架数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'OverInQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'订单明细状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'OrderDetailStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'入库单明细历史', 'SCHEMA', N'dbo', 'TABLE', N'Dt_InboundOrderDetail_Hty' GO -- ---------------------------- -- Records of Dt_InboundOrderDetail_Hty -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_InboundOrderDetail_Hty] ON GO INSERT INTO [dbo].[Dt_InboundOrderDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [LocationCode], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'317', N'自动完成', N'1900-01-01 00:00:00.000', N'1049', N'1', N'1', N'20250222T1', N'12.00', NULL, N'12.00', N'12.00', N'100', NULL, N'admin', N'2025-02-23 12:20:07.767', NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [LocationCode], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'318', N'自动完成', N'1900-01-01 00:00:00.000', N'1049', N'2', N'2', N'20250222T2', N'12.00', NULL, N'12.00', N'12.00', N'100', NULL, N'admin', N'2025-02-23 12:20:07.770', NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [LocationCode], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'319', N'自动完成', N'1900-01-01 00:00:00.000', N'1049', N'3', N'3', N'20250222T3', N'12.00', NULL, N'12.00', N'12.00', N'100', NULL, N'admin', N'2025-02-23 12:20:07.770', NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [LocationCode], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'440', N'自动完成', N'2025-04-24 15:16:12.777', N'1053', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T1', N'12.00', NULL, N'12.00', N'12.00', N'100', NULL, N'admin', N'2025-04-24 15:16:12.780', NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [LocationCode], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'5', N'441', N'自动完成', N'2025-04-24 15:16:12.777', N'1053', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T2', N'12.00', NULL, N'12.00', N'12.00', N'100', NULL, N'admin', N'2025-04-24 15:16:12.780', NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [LocationCode], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'6', N'442', N'自动完成', N'2025-04-24 15:16:12.777', N'1053', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T3', N'12.00', NULL, N'12.00', N'12.00', N'100', NULL, N'admin', N'2025-04-24 15:16:12.780', NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [LocationCode], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7', N'542', N'自动完成', N'2025-04-24 16:09:05.663', N'1054', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T', N'10.00', NULL, N'10.00', N'10.00', N'100', NULL, N'admin', N'2025-04-24 16:09:05.667', NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [LocationCode], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'8', N'543', N'自动完成', N'2025-04-24 16:09:05.663', N'1054', N'2', N'2', N'2T1', N'12.00', NULL, N'12.00', N'12.00', N'100', NULL, N'admin', N'2025-04-24 16:09:05.667', NULL, NULL) GO INSERT INTO [dbo].[Dt_InboundOrderDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [LocationCode], [ReceiptQuantity], [OverInQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'9', N'544', N'自动完成', N'2025-04-24 16:09:05.663', N'1054', N'2', N'2', N'2T2', N'12.00', NULL, N'12.00', N'12.00', N'100', NULL, N'admin', N'2025-04-24 16:09:05.667', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_InboundOrderDetail_Hty] OFF GO -- ---------------------------- -- 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'280', N'1', N'001-002-001', N'001排002列001层', N'SC01', N'1', N'2', N'1', N'1', N'24', N'24', N'1', N'6', N'2', NULL, N'System', N'2024-12-25 11:18:30.363', N'admin', N'2025-04-25 15:36:46.757') GO INSERT INTO [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'1', N'001-002-002', N'001排002列002层', N'SC01', N'1', N'2', N'2', N'1', N'24', 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'1', N'001-002-003', N'001排002列003层', N'SC01', N'1', N'2', N'3', N'1', N'24', 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'1', N'001-003-001', N'001排003列001层', N'SC01', N'1', N'3', N'1', N'1', N'24', N'24', N'1', N'3', N'2', NULL, N'System', N'2024-12-25 11:18:30.363', N'PDA1', N'2025-04-24 16:10:46.243') GO INSERT INTO [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'1', N'001-003-002', N'001排003列002层', N'SC01', N'1', N'3', N'2', N'1', N'24', 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'1', N'001-003-003', N'001排003列003层', N'SC01', N'1', N'3', N'3', N'1', N'24', 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'1', N'001-004-001', N'001排004列001层', N'SC01', N'1', N'4', N'1', N'1', N'24', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.363', N'PDA1', N'2025-04-23 11:09:44.047') GO INSERT INTO [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'1', N'001-004-002', N'001排004列002层', N'SC01', N'1', N'4', N'2', N'1', N'24', 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'1', N'001-004-003', N'001排004列003层', N'SC01', N'1', N'4', N'3', N'1', N'24', 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'1', N'001-005-001', N'001排005列001层', N'SC01', N'1', N'5', N'1', N'1', N'24', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', N'PDA1', N'2025-04-21 09:49:32.030') GO INSERT INTO [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'1', N'001-005-002', N'001排005列002层', N'SC01', N'1', N'5', N'2', N'1', N'24', 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'1', N'001-005-003', N'001排005列003层', N'SC01', N'1', N'5', N'3', N'1', N'24', 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'1', N'001-006-001', N'001排006列001层', N'SC01', N'1', N'6', N'1', N'1', N'24', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', N'PDA1', N'2025-04-21 10:46:08.107') GO INSERT INTO [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'1', N'001-006-002', N'001排006列002层', N'SC01', N'1', N'6', N'2', N'1', N'24', 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'1', N'001-006-003', N'001排006列003层', N'SC01', N'1', N'6', N'3', N'1', N'24', 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'1', N'001-007-001', N'001排007列001层', N'SC01', N'1', N'7', N'1', N'1', N'24', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', N'PDA1', N'2025-04-21 10:05:35.370') GO INSERT INTO [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'1', N'001-007-002', N'001排007列002层', N'SC01', N'1', N'7', N'2', N'1', N'24', 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'1', N'001-007-003', N'001排007列003层', N'SC01', N'1', N'7', N'3', N'1', N'24', 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'1', N'001-008-001', N'001排008列001层', N'SC01', N'1', N'8', N'1', N'1', N'24', N'0', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.367', N'PDA1', N'2025-04-21 11:08:42.557') GO INSERT INTO [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'1', N'001-008-002', N'001排008列002层', N'SC01', N'1', N'8', N'2', N'1', N'24', 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'1', N'001-008-003', N'001排008列003层', N'SC01', N'1', N'8', N'3', N'1', N'24', 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'1', N'001-009-001', N'001排009列001层', N'SC01', N'1', N'9', N'1', N'1', N'24', 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'1', N'001-009-002', N'001排009列002层', N'SC01', N'1', N'9', N'2', N'1', N'24', 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'1', N'001-009-003', N'001排009列003层', N'SC01', N'1', N'9', N'3', N'1', N'24', 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'1', N'001-010-001', N'001排010列001层', N'SC01', N'1', N'10', N'1', N'1', N'24', 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'1', N'001-010-002', N'001排010列002层', N'SC01', N'1', N'10', N'2', N'1', N'24', 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'1', N'001-010-003', N'001排010列003层', N'SC01', N'1', N'10', N'3', N'1', N'24', 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'1', N'001-011-001', N'001排011列001层', N'SC01', N'1', N'11', N'1', N'1', N'24', 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'1', N'001-011-002', N'001排011列002层', N'SC01', N'1', N'11', N'2', N'1', N'24', 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'1', N'001-011-003', N'001排011列003层', N'SC01', N'1', N'11', N'3', N'1', N'24', 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'1', N'001-012-001', N'001排012列001层', N'SC01', N'1', N'12', N'1', N'1', N'24', 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'1', N'001-012-002', N'001排012列002层', N'SC01', N'1', N'12', N'2', N'1', N'24', 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'1', N'001-012-003', N'001排012列003层', N'SC01', N'1', N'12', N'3', N'1', N'24', 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'1', N'001-013-001', N'001排013列001层', N'SC01', N'1', N'13', N'1', N'1', N'24', 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'1', N'001-013-002', N'001排013列002层', N'SC01', N'1', N'13', N'2', N'1', N'24', 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'1', N'001-013-003', N'001排013列003层', N'SC01', N'1', N'13', N'3', N'1', N'24', 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'1', N'001-014-001', N'001排014列001层', N'SC01', N'1', N'14', N'1', N'1', N'24', 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'1', N'001-014-002', N'001排014列002层', N'SC01', N'1', N'14', N'2', N'1', N'24', 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'1', N'001-014-003', N'001排014列003层', N'SC01', N'1', N'14', N'3', N'1', N'24', 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'1', N'001-015-001', N'001排015列001层', N'SC01', N'1', N'15', N'1', N'1', N'24', 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'1', N'001-015-002', N'001排015列002层', N'SC01', N'1', N'15', N'2', N'1', N'24', 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'1', N'001-015-003', N'001排015列003层', N'SC01', N'1', N'15', N'3', N'1', N'24', 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'1', N'001-016-001', N'001排016列001层', N'SC01', N'1', N'16', N'1', N'1', N'24', 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'1', N'001-016-002', N'001排016列002层', N'SC01', N'1', N'16', N'2', N'1', N'24', 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'1', N'001-016-003', N'001排016列003层', N'SC01', N'1', N'16', N'3', N'1', N'24', 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'1', N'001-017-001', N'001排017列001层', N'SC01', N'1', N'17', N'1', N'1', N'24', 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'1', N'001-017-002', N'001排017列002层', N'SC01', N'1', N'17', N'2', N'1', N'24', 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'1', N'001-017-003', N'001排017列003层', N'SC01', N'1', N'17', N'3', N'1', N'24', 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'1', N'001-018-001', N'001排018列001层', N'SC01', N'1', N'18', N'1', N'1', N'24', 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'1', N'001-018-002', N'001排018列002层', N'SC01', N'1', N'18', N'2', N'1', N'24', 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'1', N'001-018-003', N'001排018列003层', N'SC01', N'1', N'18', N'3', N'1', N'24', 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'1', N'001-019-001', N'001排019列001层', N'SC01', N'1', N'19', N'1', N'1', N'24', 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'1', N'001-019-002', N'001排019列002层', N'SC01', N'1', N'19', N'2', N'1', N'24', 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'1', N'001-019-003', N'001排019列003层', N'SC01', N'1', N'19', N'3', N'1', N'24', 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'1', N'001-020-001', N'001排020列001层', N'SC01', N'1', N'20', N'1', N'1', N'24', 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'1', N'001-020-002', N'001排020列002层', N'SC01', N'1', N'20', N'2', N'1', N'24', 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'1', N'001-020-003', N'001排020列003层', N'SC01', N'1', N'20', N'3', N'1', N'24', 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'1', N'001-021-001', N'001排021列001层', N'SC01', N'1', N'21', N'1', N'1', N'24', 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'1', N'001-021-002', N'001排021列002层', N'SC01', N'1', N'21', N'2', N'1', N'24', 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'1', N'001-021-003', N'001排021列003层', N'SC01', N'1', N'21', N'3', N'1', N'24', 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'1', N'001-022-001', N'001排022列001层', N'SC01', N'1', N'22', N'1', N'1', N'24', 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'1', N'001-022-002', N'001排022列002层', N'SC01', N'1', N'22', N'2', N'1', N'24', 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'1', N'001-022-003', N'001排022列003层', N'SC01', N'1', N'22', N'3', N'1', N'24', 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'1', N'001-023-001', N'001排023列001层', N'SC01', N'1', N'23', N'1', N'1', N'24', 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'1', N'001-023-002', N'001排023列002层', N'SC01', N'1', N'23', N'2', N'1', N'24', 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'1', N'001-023-003', N'001排023列003层', N'SC01', N'1', N'23', N'3', N'1', N'24', 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'1', N'001-024-001', N'001排024列001层', N'SC01', N'1', N'24', N'1', N'1', N'24', 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'1', N'001-024-002', N'001排024列002层', N'SC01', N'1', N'24', N'2', N'1', N'24', 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'1', N'001-024-003', N'001排024列003层', N'SC01', N'1', N'24', N'3', N'1', N'24', 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'1', N'001-025-001', N'001排025列001层', N'SC01', N'1', N'25', N'1', N'1', N'24', 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'1', N'001-025-002', N'001排025列002层', N'SC01', N'1', N'25', N'2', N'1', N'24', 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'1', N'001-025-003', N'001排025列003层', N'SC01', N'1', N'25', N'3', N'1', N'24', 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'1', N'001-026-001', N'001排026列001层', N'SC01', N'1', N'26', N'1', N'1', N'24', 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'1', N'001-026-002', N'001排026列002层', N'SC01', N'1', N'26', N'2', N'1', N'24', 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'1', N'001-026-003', N'001排026列003层', N'SC01', N'1', N'26', N'3', N'1', N'24', 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'1', N'001-027-001', N'001排027列001层', N'SC01', N'1', N'27', N'1', N'1', N'24', 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'1', N'001-027-002', N'001排027列002层', N'SC01', N'1', N'27', N'2', N'1', N'24', 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'1', N'001-027-003', N'001排027列003层', N'SC01', N'1', N'27', N'3', N'1', N'24', 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'1', N'001-028-001', N'001排028列001层', N'SC01', N'1', N'28', N'1', N'1', N'24', 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'1', N'001-028-002', N'001排028列002层', N'SC01', N'1', N'28', N'2', N'1', N'24', 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'1', N'001-028-003', N'001排028列003层', N'SC01', N'1', N'28', N'3', N'1', N'24', 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'1', N'001-029-001', N'001排029列001层', N'SC01', N'1', N'29', N'1', N'1', N'24', 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'1', N'001-029-002', N'001排029列002层', N'SC01', N'1', N'29', N'2', N'1', N'24', 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'1', N'001-029-003', N'001排029列003层', N'SC01', N'1', N'29', N'3', N'1', N'24', 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'1', N'001-030-001', N'001排030列001层', N'SC01', N'1', N'30', N'1', N'1', N'24', 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'1', N'001-030-002', N'001排030列002层', N'SC01', N'1', N'30', N'2', N'1', N'24', 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'1', N'001-030-003', N'001排030列003层', N'SC01', N'1', N'30', N'3', N'1', N'24', 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'1', N'001-031-001', N'001排031列001层', N'SC01', N'1', N'31', N'1', N'1', N'24', 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'1', N'001-031-002', N'001排031列002层', N'SC01', N'1', N'31', N'2', N'1', N'24', 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'1', N'001-031-003', N'001排031列003层', N'SC01', N'1', N'31', N'3', N'1', N'24', 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'1', N'001-032-001', N'001排032列001层', N'SC01', N'1', N'32', N'1', N'1', N'24', 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'1', N'001-032-002', N'001排032列002层', N'SC01', N'1', N'32', N'2', N'1', N'24', 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'1', N'001-032-003', N'001排032列003层', N'SC01', N'1', N'32', N'3', N'1', N'24', 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'1', N'001-033-001', N'001排033列001层', N'SC01', N'1', N'33', N'1', N'1', N'24', 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'1', N'001-033-002', N'001排033列002层', N'SC01', N'1', N'33', N'2', N'1', N'24', 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'1', N'001-033-003', N'001排033列003层', N'SC01', N'1', N'33', N'3', N'1', N'24', 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'1', N'001-034-001', N'001排034列001层', N'SC01', N'1', N'34', N'1', N'1', N'24', 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'1', N'001-034-002', N'001排034列002层', N'SC01', N'1', N'34', N'2', N'1', N'24', 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'1', N'001-034-003', N'001排034列003层', N'SC01', N'1', N'34', N'3', N'1', N'24', 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'1', N'001-035-001', N'001排035列001层', N'SC01', N'1', N'35', N'1', N'1', N'24', 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'1', N'001-035-002', N'001排035列002层', N'SC01', N'1', N'35', N'2', N'1', N'24', 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'1', N'001-035-003', N'001排035列003层', N'SC01', N'1', N'35', N'3', N'1', N'24', 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'1', N'001-036-001', N'001排036列001层', N'SC01', N'1', N'36', N'1', N'1', N'24', 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'1', N'001-036-002', N'001排036列002层', N'SC01', N'1', N'36', N'2', N'1', N'24', 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'1', N'001-036-003', N'001排036列003层', N'SC01', N'1', N'36', N'3', N'1', N'24', 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'1', N'001-037-001', N'001排037列001层', N'SC01', N'1', N'37', N'1', N'1', N'24', 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'1', N'001-037-002', N'001排037列002层', N'SC01', N'1', N'37', N'2', N'1', N'24', 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'1', N'001-037-003', N'001排037列003层', N'SC01', N'1', N'37', N'3', N'1', N'24', 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'1', N'001-038-001', N'001排038列001层', N'SC01', N'1', N'38', N'1', N'1', N'24', 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'1', N'001-038-002', N'001排038列002层', N'SC01', N'1', N'38', N'2', N'1', N'24', 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'1', N'001-038-003', N'001排038列003层', N'SC01', N'1', N'38', N'3', N'1', N'24', 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'1', N'001-039-001', N'001排039列001层', N'SC01', N'1', N'39', N'1', N'1', N'24', 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'1', N'001-039-002', N'001排039列002层', N'SC01', N'1', N'39', N'2', N'1', N'24', 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'1', N'001-039-003', N'001排039列003层', N'SC01', N'1', N'39', N'3', N'1', N'24', 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'1', N'001-040-001', N'001排040列001层', N'SC01', N'1', N'40', N'1', N'1', N'24', 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'1', N'001-040-002', N'001排040列002层', N'SC01', N'1', N'40', N'2', N'1', N'24', 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'1', N'001-040-003', N'001排040列003层', N'SC01', N'1', N'40', N'3', N'1', N'24', 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'1', N'001-041-001', N'001排041列001层', N'SC01', N'1', N'41', N'1', N'1', N'24', 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'1', N'001-041-002', N'001排041列002层', N'SC01', N'1', N'41', N'2', N'1', N'24', 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'1', N'001-041-003', N'001排041列003层', N'SC01', N'1', N'41', N'3', N'1', N'24', 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'1', N'001-042-001', N'001排042列001层', N'SC01', N'1', N'42', N'1', N'1', N'24', 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'1', N'001-042-002', N'001排042列002层', N'SC01', N'1', N'42', N'2', N'1', N'24', 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'1', N'001-042-003', N'001排042列003层', N'SC01', N'1', N'42', N'3', N'1', N'24', 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'553', N'2', N'002-001-001', N'002排001列001层', N'SC01', N'2', N'47', 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'2', N'002-001-002', N'002排001列002层', N'SC01', N'2', N'47', 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'2', N'002-001-003', N'002排001列003层', N'SC01', N'2', N'47', 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'2', 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.490', N'PDA1', N'2025-04-21 11:17:43.857') GO INSERT INTO [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'2', 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.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'2', 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.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'2', N'002-003-001', N'002排003列001层', N'SC01', N'2', N'3', N'1', N'1', N'12', N'12', N'1', N'3', N'2', NULL, N'System', N'2024-12-25 11:18:30.493', N'admin', N'2025-04-24 15:16:16.550') GO INSERT INTO [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'2', 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.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'2', 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.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'2', N'002-004-001', N'002排004列001层', N'SC01', N'2', N'4', N'1', N'1', N'12', N'10', N'1', N'6', N'2', NULL, N'System', N'2024-12-25 11:18:30.493', N'admin', N'2025-04-25 15:24:09.400') GO INSERT INTO [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'2', 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.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'2', 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.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'2', N'002-005-001', N'002排005列001层', N'SC01', N'2', N'5', N'1', N'1', N'12', N'12', N'1', N'7', N'0', NULL, N'System', N'2024-12-25 11:18:30.497', N'admin', N'2025-04-25 15:36:46.763') GO INSERT INTO [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'2', 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.497', N'PDA1', N'2025-04-21 09:19:59.377') GO INSERT INTO [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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.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'2', 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.540', N'admin', N'2025-04-21 09:03:05.690') GO SET IDENTITY_INSERT [dbo].[Dt_LocationInfo] OFF GO -- ---------------------------- -- Table structure for Dt_LocationInfo_copy1 -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_LocationInfo_copy1]') AND type IN ('U')) DROP TABLE [dbo].[Dt_LocationInfo_copy1] GO CREATE TABLE [dbo].[Dt_LocationInfo_copy1] ( [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_copy1] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'区域主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'AreaId' GO EXEC sp_addextendedproperty 'MS_Description', N'货位编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'LocationCode' GO EXEC sp_addextendedproperty 'MS_Description', N'货位名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'LocationName' GO EXEC sp_addextendedproperty 'MS_Description', N'巷道编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'RoadwayNo' GO EXEC sp_addextendedproperty 'MS_Description', N'货位行', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'Row' GO EXEC sp_addextendedproperty 'MS_Description', N'货位列', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'Column' GO EXEC sp_addextendedproperty 'MS_Description', N'货位层', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'Layer' GO EXEC sp_addextendedproperty 'MS_Description', N'货位深度', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'Depth' GO EXEC sp_addextendedproperty 'MS_Description', N'最大库存', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'MaxQty' GO EXEC sp_addextendedproperty 'MS_Description', N'当前库存', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'CurrentQty' GO EXEC sp_addextendedproperty 'MS_Description', N'货位类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'LocationType' GO EXEC sp_addextendedproperty 'MS_Description', N'货位状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'LocationStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'禁用状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'EnableStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'货位信息', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationInfo_copy1' GO -- ---------------------------- -- Records of Dt_LocationInfo_copy1 -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_LocationInfo_copy1] ON GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'280', N'1', 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', N'PDA1', N'2025-04-21 14:59:02.503') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'281', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'282', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'283', N'1', N'001-003-001', N'001行003列001层', N'SC01', N'1', N'3', N'1', N'1', N'12', N'10', N'1', N'99', N'2', NULL, N'System', N'2024-12-25 11:18:30.363', N'PDA1', N'2025-04-21 15:10:19.673') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'284', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'285', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'286', N'1', 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', N'PDA1', N'2025-04-21 09:39:20.263') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'287', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'288', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'289', N'1', 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', N'PDA1', N'2025-04-21 09:49:32.030') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'290', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'291', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'292', N'1', 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', N'PDA1', N'2025-04-21 10:46:08.107') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'293', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'294', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'295', N'1', 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', N'PDA1', N'2025-04-21 10:05:35.370') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'296', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'297', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'298', N'1', 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', N'PDA1', N'2025-04-21 11:08:42.557') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'299', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'300', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'301', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'302', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'303', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'304', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'305', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'306', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'307', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'308', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'309', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'310', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'311', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'312', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'313', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'314', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'315', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'316', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'317', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'318', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'319', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'320', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'321', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'322', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'323', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'324', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'325', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'326', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'327', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'328', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'329', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'330', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'331', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'332', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'333', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'334', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'335', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'336', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'337', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'338', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'339', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'340', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'341', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'342', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'343', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'344', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'345', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'346', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'347', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'348', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'349', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'350', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'351', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'352', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'353', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'354', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'355', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'356', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'357', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'358', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'359', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'360', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'361', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'362', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'363', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'364', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'365', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'366', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'367', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'368', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'369', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'370', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'371', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'372', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'373', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'374', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'375', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'376', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'377', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'378', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'379', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'380', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'381', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'382', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'383', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'384', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'385', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'386', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'387', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'388', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'389', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'390', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'391', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'392', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'393', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'394', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'395', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'396', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'397', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'398', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'399', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'400', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'401', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'402', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'418', N'1', 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', N'admin', N'2025-04-21 14:59:02.500') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'419', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'420', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'421', N'1', 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'99', N'0', NULL, N'System', N'2024-12-25 11:18:30.427', NULL, N'2025-04-21 15:09:02.017') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'422', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'423', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'424', N'1', 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', N'PDA1', N'2025-04-21 09:39:20.263') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'425', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'426', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'427', N'1', 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, N'2025-04-21 09:49:32.027') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'428', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'429', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'430', N'1', 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', N'PDA1', N'2025-04-21 10:38:35.290') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'431', N'1', N'002-006-002', N'002行006列002层', N'SC01', N'2', N'6', N'2', N'1', N'12', N'10', N'1', N'0', N'0', NULL, N'System', N'2024-12-25 11:18:30.430', N'PDA1', N'2025-04-20 11:42:32.260') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'432', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'433', N'1', 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', N'PDA1', N'2025-04-21 10:05:35.367') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'434', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'435', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'436', N'1', 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, N'2025-04-21 11:08:42.553') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'437', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'438', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'439', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'440', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'441', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'442', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'443', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'444', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'445', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'446', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'447', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'448', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'449', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'450', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'451', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'452', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'453', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'454', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'455', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'456', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'457', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'458', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'459', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'460', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'461', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'462', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'463', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'464', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'465', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'466', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'467', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'468', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'469', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'470', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'471', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'472', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'473', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'474', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'475', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'476', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'477', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'478', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'479', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'480', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'481', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'482', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'483', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'484', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'485', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'486', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'487', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'488', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'489', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'490', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'491', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'492', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'493', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'494', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'495', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'496', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'497', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'498', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'499', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'500', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'501', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'502', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'503', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'504', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'505', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'506', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'507', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'508', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'509', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'510', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'511', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'512', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'513', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'514', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'515', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'516', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'517', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'518', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'519', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'520', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'521', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'522', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'523', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'524', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'525', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'526', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'527', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'528', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'529', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'530', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'531', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'532', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'533', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'534', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'535', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'536', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'537', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'538', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'539', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'540', N'1', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'553', N'2', N'003-001-001', N'003行001列001层', N'SC01', N'3', N'47', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'554', N'2', N'003-001-002', N'003行001列002层', N'SC01', N'3', N'47', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'555', N'2', N'003-001-003', N'003行001列003层', N'SC01', N'3', N'47', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'556', N'2', 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', N'PDA1', N'2025-04-21 11:17:43.857') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'557', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'558', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'559', N'2', 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', N'admin', N'2025-02-23 23:36:44.660') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'560', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'561', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'562', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'563', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'564', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'565', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'566', N'2', 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', N'PDA1', N'2025-04-21 09:19:59.377') GO INSERT INTO [dbo].[Dt_LocationInfo_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'567', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'568', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'569', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'570', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'571', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'572', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'573', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'574', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'575', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'576', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'577', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'578', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'579', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'580', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'581', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'582', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'583', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'584', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'585', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'586', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'587', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'588', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'589', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'590', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'591', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'592', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'593', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'594', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'595', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'596', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'597', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'598', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'599', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'600', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'601', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'602', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'603', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'604', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'605', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'606', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'607', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'608', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'609', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'610', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'611', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'612', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'613', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'614', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'615', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'616', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'617', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'618', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'619', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'620', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'621', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'622', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'623', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'624', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'625', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'626', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'627', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'628', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'629', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'630', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'631', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'632', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'633', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'634', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'635', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'636', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'637', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'638', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'639', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'640', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'641', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'642', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'643', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'644', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'645', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'646', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'647', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'648', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'649', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'650', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'651', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'652', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'653', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'654', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'655', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'656', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'657', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'658', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'659', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'660', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'661', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'662', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'663', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'664', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'665', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'666', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'667', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'668', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'669', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'670', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'671', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'672', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'673', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'674', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'675', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'676', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'677', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'678', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'679', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'680', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'681', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'682', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'683', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'684', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'685', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'686', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'687', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'688', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'689', N'2', 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_copy1] ([Id], [AreaId], [LocationCode], [LocationName], [RoadwayNo], [Row], [Column], [Layer], [Depth], [MaxQty], [CurrentQty], [LocationType], [LocationStatus], [EnableStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'690', N'2', 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', N'admin', N'2025-04-21 09:03:05.690') GO SET IDENTITY_INSERT [dbo].[Dt_LocationInfo_copy1] OFF GO -- ---------------------------- -- Table structure for Dt_LocationStatusChangeRecord -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_LocationStatusChangeRecord]') AND type IN ('U')) DROP TABLE [dbo].[Dt_LocationStatusChangeRecord] GO CREATE TABLE [dbo].[Dt_LocationStatusChangeRecord] ( [Id] int IDENTITY(1,1) NOT NULL, [LocationId] int NOT NULL, [LocationCode] varchar(20) COLLATE Chinese_PRC_CI_AS NULL, [BeforeStatus] int NOT NULL, [AfterStatus] int NOT NULL, [ChangeType] int NOT NULL, [OrderId] int NULL, [OrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [TaskNum] int NULL, [Remark] varchar(255) 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_LocationStatusChangeRecord] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'货位主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord', 'COLUMN', N'LocationId' GO EXEC sp_addextendedproperty 'MS_Description', N'货位编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord', 'COLUMN', N'LocationCode' GO EXEC sp_addextendedproperty 'MS_Description', N'变动前货位状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord', 'COLUMN', N'BeforeStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'变动后货位状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord', 'COLUMN', N'AfterStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'变动类型(出库、入库、手动调整...)', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord', 'COLUMN', N'ChangeType' GO EXEC sp_addextendedproperty 'MS_Description', N'单据主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord', 'COLUMN', N'OrderId' GO EXEC sp_addextendedproperty 'MS_Description', N'单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'任务号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord', 'COLUMN', N'TaskNum' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'货位状态变动记录', 'SCHEMA', N'dbo', 'TABLE', N'Dt_LocationStatusChangeRecord' GO -- ---------------------------- -- Records of Dt_LocationStatusChangeRecord -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_LocationStatusChangeRecord] ON GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'139', N'002-001-001', N'2', N'2', N'1', NULL, N'241107153050', N'155634', NULL, N'System', N'2024-11-11 16:25:56.440', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'139', N'002-001-001', N'2', N'2', N'1', NULL, N'241107153050', N'155634', NULL, N'System', N'2024-11-11 17:08:47.643', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'139', N'002-001-001', N'2', N'2', N'1', NULL, N'241107153050', N'155634', NULL, N'System', N'2024-11-11 17:30:43.957', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'5', N'139', N'002-001-001', N'2', N'2', N'1', NULL, N'241107153050', N'155634', NULL, N'System', N'2024-11-11 17:33:43.657', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'6', N'139', N'002-001-001', N'2', N'2', N'1', NULL, N'241107153050', N'155634', NULL, N'System', N'2024-11-12 08:51:00.520', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7', N'139', N'002-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-12 09:29:17.957', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'8', N'139', N'002-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-12 11:30:33.443', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'9', N'1', N'001-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-12 14:17:18.870', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'10', N'1', N'001-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-12 14:18:33.937', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11', N'1', N'001-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-12 14:18:36.800', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'12', N'1', N'001-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-12 17:09:55.783', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'1', N'001-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-12 17:10:20.220', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'14', N'1', N'001-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-12 17:12:24.660', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'15', N'1', N'001-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-12 17:12:57.903', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'16', N'139', N'002-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 10:52:51.873', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'17', N'139', N'002-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 12:03:49.810', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'18', N'139', N'002-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 12:40:17.943', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'19', N'139', N'002-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 12:51:42.703', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'20', N'139', N'002-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 13:07:18.520', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'21', N'139', N'002-001-001', N'1', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 13:34:17.403', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'22', N'139', N'002-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 13:35:16.797', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'23', N'139', N'002-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 13:37:26.720', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'24', N'139', N'002-001-001', N'1', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 13:38:31.177', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'25', N'142', N'002-002-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 13:38:31.177', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'26', N'148', N'002-004-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 13:38:31.180', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'27', N'139', N'002-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 13:39:32.987', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'28', N'142', N'002-002-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 13:39:32.987', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'29', N'148', N'002-004-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 13:39:32.987', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'30', N'1', N'001-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 16:45:40.470', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'31', N'4', N'001-002-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 16:45:40.470', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'32', N'142', N'002-002-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 16:45:40.473', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'33', N'1', N'001-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 16:50:38.687', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'34', N'4', N'001-002-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 16:50:38.693', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'35', N'142', N'002-002-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 16:50:38.693', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'36', N'1', N'001-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 16:54:26.547', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'37', N'4', N'001-002-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 16:54:26.550', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'38', N'142', N'002-002-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 16:54:26.550', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'39', N'1', N'001-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 16:55:58.163', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'40', N'4', N'001-002-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 16:55:58.163', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'41', N'142', N'002-002-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 16:55:58.163', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'42', N'1', N'001-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 17:04:08.597', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'43', N'142', N'002-002-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 17:04:08.600', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'44', N'1', N'001-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 17:05:18.630', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'45', N'142', N'002-002-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 17:05:18.630', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'46', N'1', N'001-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 17:19:12.830', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'47', N'142', N'002-002-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 17:19:12.830', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'48', N'1', N'001-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 20:57:40.657', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'142', N'002-002-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 20:57:40.660', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'1', N'001-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 20:57:40.657', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'51', N'142', N'002-002-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 20:57:40.660', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'52', N'139', N'002-001-001', N'2', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 20:58:24.487', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'53', N'139', N'002-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 21:15:19.913', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'54', N'139', N'002-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 22:42:07.413', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'55', N'139', N'002-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 22:57:13.533', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'56', N'139', N'002-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 23:01:19.253', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'57', N'139', N'002-001-001', N'2', N'1', N'2', NULL, N'', N'230329', NULL, N'admin', N'2024-11-13 23:03:38.610', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'58', N'139', N'002-001-001', N'1', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 23:10:44.593', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'59', N'139', N'002-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 23:12:33.277', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'60', N'139', N'002-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 23:15:49.927', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'61', N'139', N'002-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-13 23:16:30.170', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'62', N'1', N'001-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-14 08:48:04.863', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'63', N'4', N'001-002-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-14 08:48:04.867', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'64', N'142', N'002-002-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-14 08:48:04.867', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'65', N'1', N'001-001-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-14 08:48:49.377', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'66', N'4', N'001-002-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-14 08:48:49.380', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'67', N'142', N'002-002-001', N'1', N'2', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-14 08:48:49.380', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'68', N'139', N'002-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-14 08:49:20.550', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'69', N'1', N'001-001-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-14 08:49:20.553', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'70', N'4', N'001-002-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-14 08:49:20.553', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'71', N'142', N'002-002-001', N'2', N'1', N'2', NULL, N'', NULL, NULL, N'admin', N'2024-11-14 08:49:20.553', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'72', N'280', N'001-002-001', N'4', N'3', N'1', NULL, N'20250222', N'154106', NULL, N'System', N'2025-02-22 21:59:56.607', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'73', N'280', N'001-002-001', N'3', N'3', N'1', NULL, N'20250222', N'154218', NULL, N'System', N'2025-02-23 10:30:51.327', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'74', N'280', N'001-002-001', N'3', N'3', N'1', NULL, N'20250222', N'154609', NULL, N'System', N'2025-02-23 10:39:51.200', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'75', N'280', N'001-002-001', N'3', N'3', N'1', NULL, N'20250222', N'154717', NULL, N'System', N'2025-02-23 10:45:04.813', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'76', N'280', N'001-002-001', N'3', N'3', N'1', NULL, N'20250222', N'154745', NULL, N'System', N'2025-02-23 10:45:46.833', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'77', N'280', N'001-002-001', N'3', N'3', N'1', NULL, N'20250222', N'154810', NULL, N'System', N'2025-02-23 10:46:30.457', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'78', N'280', N'001-002-001', N'3', N'3', N'1', NULL, N'20250222', N'154831', NULL, N'System', N'2025-02-23 10:46:47.107', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'79', N'280', N'001-002-001', N'3', N'3', N'1', NULL, N'20250222', N'154920', NULL, N'System', N'2025-02-23 10:47:05.877', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'80', N'280', N'001-002-001', N'3', N'3', N'1', NULL, N'20250222', N'154943', NULL, N'System', N'2025-02-23 10:47:18.657', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'81', N'280', N'001-002-001', N'3', N'3', N'1', NULL, N'20250222', N'155103', NULL, N'System', N'2025-02-23 10:47:30.067', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'82', N'280', N'001-002-001', N'3', N'3', N'1', NULL, N'20250222', N'155104', NULL, N'System', N'2025-02-23 10:47:40.997', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'83', N'280', N'001-002-001', N'3', N'3', N'1', NULL, N'20250222', N'155105', NULL, N'System', N'2025-02-23 10:48:59.113', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'84', N'418', N'002-002-001', N'4', N'3', N'1', NULL, N'20250222', N'155713', NULL, N'System', N'2025-02-23 10:53:53.307', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'85', N'418', N'002-002-001', N'3', N'3', N'1', NULL, N'20250222', N'155727', NULL, N'System', N'2025-02-23 10:54:30.400', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'86', N'418', N'002-002-001', N'3', N'3', N'1', NULL, N'20250222', N'155737', NULL, N'System', N'2025-02-23 10:54:40.437', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'87', N'418', N'002-002-001', N'3', N'3', N'1', NULL, N'20250222', N'155747', NULL, N'System', N'2025-02-23 10:54:50.497', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'88', N'418', N'002-002-001', N'3', N'3', N'1', NULL, N'20250222', N'155754', NULL, N'System', N'2025-02-23 10:54:59.133', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'89', N'418', N'002-002-001', N'3', N'3', N'1', NULL, N'20250222', N'155801', NULL, N'System', N'2025-02-23 10:55:11.503', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'90', N'418', N'002-002-001', N'3', N'3', N'1', NULL, N'20250222', N'155808', NULL, N'System', N'2025-02-23 10:55:24.117', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'91', N'418', N'002-002-001', N'3', N'3', N'1', NULL, N'20250222', N'155818', NULL, N'System', N'2025-02-23 10:55:35.310', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'92', N'418', N'002-002-001', N'3', N'3', N'1', NULL, N'20250222', N'155826', NULL, N'System', N'2025-02-23 10:56:24.150', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'93', N'418', N'002-002-001', N'3', N'3', N'1', NULL, N'20250222', N'155835', NULL, N'System', N'2025-02-23 10:56:36.810', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'94', N'418', N'002-002-001', N'3', N'3', N'1', NULL, N'20250222', N'155929', NULL, N'System', N'2025-02-23 10:57:02.013', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'95', N'418', N'002-002-001', N'3', N'3', N'1', NULL, N'20250222', N'155937', NULL, N'System', N'2025-02-23 11:15:41.143', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'96', N'556', N'003-002-001', N'4', N'3', N'1', NULL, N'20250222', N'160211', NULL, N'System', N'2025-02-23 11:56:00.537', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'97', N'556', N'003-002-001', N'3', N'3', N'1', NULL, N'20250222', N'160223', NULL, N'System', N'2025-02-23 11:56:32.923', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'98', N'556', N'003-002-001', N'3', N'3', N'1', NULL, N'20250222', N'160226', NULL, N'System', N'2025-02-23 11:56:47.840', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'99', N'556', N'003-002-001', N'3', N'3', N'1', NULL, N'20250222', N'160227', NULL, N'System', N'2025-02-23 11:56:52.860', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'100', N'556', N'003-002-001', N'3', N'3', N'1', NULL, N'20250222', N'160201', NULL, N'System', N'2025-02-23 11:56:59.893', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'101', N'556', N'003-002-001', N'3', N'3', N'1', NULL, N'20250222', N'160228', NULL, N'System', N'2025-02-23 11:57:07.887', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'102', N'556', N'003-002-001', N'3', N'3', N'1', NULL, N'20250222', N'160229', NULL, N'System', N'2025-02-23 11:57:20.837', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'103', N'556', N'003-002-001', N'3', N'3', N'1', NULL, N'20250222', N'160202', NULL, N'System', N'2025-02-23 11:57:27.853', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'104', N'556', N'003-002-001', N'3', N'3', N'1', NULL, N'20250222', N'160230', NULL, N'System', N'2025-02-23 11:57:33.837', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'105', N'556', N'003-002-001', N'3', N'3', N'1', NULL, N'20250222', N'160232', NULL, N'System', N'2025-02-23 11:57:40.850', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'106', N'556', N'003-002-001', N'3', N'3', N'1', NULL, N'20250222', N'160233', NULL, N'System', N'2025-02-23 11:57:47.847', NULL, NULL) GO INSERT INTO [dbo].[Dt_LocationStatusChangeRecord] ([Id], [LocationId], [LocationCode], [BeforeStatus], [AfterStatus], [ChangeType], [OrderId], [OrderNo], [TaskNum], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'107', N'556', N'003-002-001', N'3', N'3', N'1', NULL, N'20250222', N'160234', NULL, N'System', N'2025-02-23 12:20:09.530', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_LocationStatusChangeRecord] OFF GO -- ---------------------------- -- Table structure for Dt_MaterielInfo -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_MaterielInfo]') AND type IN ('U')) DROP TABLE [dbo].[Dt_MaterielInfo] GO CREATE TABLE [dbo].[Dt_MaterielInfo] ( [Id] int IDENTITY(1,1) NOT NULL, [AreaId] int NOT NULL, [MaterielCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [MaterielName] varchar(200) COLLATE Chinese_PRC_CI_AS NOT NULL, [MaterielDes] varchar(500) COLLATE Chinese_PRC_CI_AS NULL, [CotainerType] int DEFAULT '0' NOT NULL, [Packspes] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [Attribute] int DEFAULT '0' NOT NULL, [Unit] varchar(20) COLLATE Chinese_PRC_CI_AS DEFAULT '0' NOT NULL, [Validity] int DEFAULT '-1' NOT NULL, [SafetyStock] decimal(10,2) DEFAULT '-1' NOT NULL, [IsMixBatch] bit NOT NULL, [IsMixMateriel] bit 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_MaterielInfo] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'区域主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'AreaId' GO EXEC sp_addextendedproperty 'MS_Description', N'物料编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'MaterielCode' GO EXEC sp_addextendedproperty 'MS_Description', N'物料名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'MaterielName' GO EXEC sp_addextendedproperty 'MS_Description', N'物料描述', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'MaterielDes' GO EXEC sp_addextendedproperty 'MS_Description', N'容器类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'CotainerType' GO EXEC sp_addextendedproperty 'MS_Description', N'包装规格', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'Packspes' GO EXEC sp_addextendedproperty 'MS_Description', N'物料属性', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'Attribute' GO EXEC sp_addextendedproperty 'MS_Description', N'计量单位', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'Unit' GO EXEC sp_addextendedproperty 'MS_Description', N'有效期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'Validity' GO EXEC sp_addextendedproperty 'MS_Description', N'安全库存', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'SafetyStock' GO EXEC sp_addextendedproperty 'MS_Description', N'是否允许混批', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'IsMixBatch' GO EXEC sp_addextendedproperty 'MS_Description', N'是否允许混料', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'IsMixMateriel' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'物料信息', 'SCHEMA', N'dbo', 'TABLE', N'Dt_MaterielInfo' GO -- ---------------------------- -- Records of Dt_MaterielInfo -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_MaterielInfo] ON GO INSERT INTO [dbo].[Dt_MaterielInfo] ([Id], [AreaId], [MaterielCode], [MaterielName], [MaterielDes], [CotainerType], [Packspes], [Attribute], [Unit], [Validity], [SafetyStock], [IsMixBatch], [IsMixMateriel], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'1', N'2', N'2', NULL, N'0', NULL, N'0', N'1', N'0', N'.00', N'0', N'0', NULL, N'admin', N'2024-10-30 08:54:11.873', N'admin', N'2024-11-14 16:47:30.670') GO INSERT INTO [dbo].[Dt_MaterielInfo] ([Id], [AreaId], [MaterielCode], [MaterielName], [MaterielDes], [CotainerType], [Packspes], [Attribute], [Unit], [Validity], [SafetyStock], [IsMixBatch], [IsMixMateriel], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'5', N'2', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', NULL, N'0', NULL, N'0', N'1', N'0', N'.00', N'0', N'0', NULL, N'admin', N'2024-10-30 17:23:20.983', NULL, NULL) GO INSERT INTO [dbo].[Dt_MaterielInfo] ([Id], [AreaId], [MaterielCode], [MaterielName], [MaterielDes], [CotainerType], [Packspes], [Attribute], [Unit], [Validity], [SafetyStock], [IsMixBatch], [IsMixMateriel], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'6', N'3', N'3', N'3', NULL, N'0', NULL, N'0', N'3', N'0', N'.00', N'0', N'0', NULL, N'admin', N'2024-10-30 21:00:45.617', NULL, NULL) GO INSERT INTO [dbo].[Dt_MaterielInfo] ([Id], [AreaId], [MaterielCode], [MaterielName], [MaterielDes], [CotainerType], [Packspes], [Attribute], [Unit], [Validity], [SafetyStock], [IsMixBatch], [IsMixMateriel], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7', N'1', N'Empty000', N'空托盘', N'空托盘', N'0', NULL, N'0', N'KG', N'0', N'.00', N'0', N'0', NULL, N'admin', N'2025-03-13 14:06:09.403', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_MaterielInfo] OFF GO -- ---------------------------- -- Table structure for Dt_OutboundOrder -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_OutboundOrder]') AND type IN ('U')) DROP TABLE [dbo].[Dt_OutboundOrder] GO CREATE TABLE [dbo].[Dt_OutboundOrder] ( [Id] int IDENTITY(1,1) NOT NULL, [OrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [UpperOrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [OrderType] int NOT NULL, [OrderStatus] int NOT NULL, [CreateType] int 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_OutboundOrder] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'上游单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder', 'COLUMN', N'UpperOrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'单据类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder', 'COLUMN', N'OrderType' GO EXEC sp_addextendedproperty 'MS_Description', N'单据状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder', 'COLUMN', N'OrderStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'创建方式', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder', 'COLUMN', N'CreateType' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'出库单', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder' GO -- ---------------------------- -- Records of Dt_OutboundOrder -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_OutboundOrder] ON GO INSERT INTO [dbo].[Dt_OutboundOrder] ([Id], [OrderNo], [UpperOrderNo], [OrderType], [OrderStatus], [CreateType], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'12', N'250424162410', N'', N'205', N'1', N'0', N'', N'admin', N'2025-04-24 16:24:10.410', N'admin', N'2025-04-25 15:36:46.770') GO SET IDENTITY_INSERT [dbo].[Dt_OutboundOrder] OFF GO -- ---------------------------- -- Table structure for Dt_OutboundOrder_Hty -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_OutboundOrder_Hty]') AND type IN ('U')) DROP TABLE [dbo].[Dt_OutboundOrder_Hty] GO CREATE TABLE [dbo].[Dt_OutboundOrder_Hty] ( [Id] int IDENTITY(1,1) NOT NULL, [SourceId] int DEFAULT '0' NOT NULL, [OperateType] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [InsertTime] datetime NOT NULL, [OrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [UpperOrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [OrderType] int NOT NULL, [OrderStatus] int NOT NULL, [CreateType] int 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_OutboundOrder_Hty] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'原表主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty', 'COLUMN', N'SourceId' GO EXEC sp_addextendedproperty 'MS_Description', N'操作类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty', 'COLUMN', N'OperateType' GO EXEC sp_addextendedproperty 'MS_Description', N'移入历史时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty', 'COLUMN', N'InsertTime' GO EXEC sp_addextendedproperty 'MS_Description', N'单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'上游单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty', 'COLUMN', N'UpperOrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'单据类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty', 'COLUMN', N'OrderType' GO EXEC sp_addextendedproperty 'MS_Description', N'单据状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty', 'COLUMN', N'OrderStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'创建方式', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty', 'COLUMN', N'CreateType' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'出库单历史', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrder_Hty' GO -- ---------------------------- -- Records of Dt_OutboundOrder_Hty -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_OutboundOrder_Hty] ON GO SET IDENTITY_INSERT [dbo].[Dt_OutboundOrder_Hty] OFF GO -- ---------------------------- -- Table structure for Dt_OutboundOrderDetail -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_OutboundOrderDetail]') AND type IN ('U')) DROP TABLE [dbo].[Dt_OutboundOrderDetail] GO CREATE TABLE [dbo].[Dt_OutboundOrderDetail] ( [Id] int IDENTITY(1,1) NOT NULL, [OrderId] int NOT NULL, [MaterielCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [MaterielName] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [BatchNo] varchar(20) COLLATE Chinese_PRC_CI_AS NULL, [OrderQuantity] decimal(10,2) NOT NULL, [LockQuantity] decimal(10,2) DEFAULT '0' NOT NULL, [OverOutQuantity] decimal(10,2) DEFAULT '0' NOT NULL, [OrderDetailStatus] int NOT NULL, [Remark] varchar(255) 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_OutboundOrderDetail] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'出库单主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail', 'COLUMN', N'OrderId' GO EXEC sp_addextendedproperty 'MS_Description', N'物料编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail', 'COLUMN', N'MaterielCode' GO EXEC sp_addextendedproperty 'MS_Description', N'物料名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail', 'COLUMN', N'MaterielName' GO EXEC sp_addextendedproperty 'MS_Description', N'批次号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail', 'COLUMN', N'BatchNo' GO EXEC sp_addextendedproperty 'MS_Description', N'单据数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail', 'COLUMN', N'OrderQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'锁定数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail', 'COLUMN', N'LockQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'已出数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail', 'COLUMN', N'OverOutQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'订单明细状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail', 'COLUMN', N'OrderDetailStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'出库单明细', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail' GO -- ---------------------------- -- Records of Dt_OutboundOrderDetail -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_OutboundOrderDetail] ON GO INSERT INTO [dbo].[Dt_OutboundOrderDetail] ([Id], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [LockQuantity], [OverOutQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'12', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', NULL, N'12.00', N'.00', N'.00', N'80', NULL, N'admin', N'2025-04-24 16:24:10.443', N'admin', N'2025-04-25 15:36:46.777') GO INSERT INTO [dbo].[Dt_OutboundOrderDetail] ([Id], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [LockQuantity], [OverOutQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'14', N'12', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', NULL, N'34.00', N'34.00', N'.00', N'80', NULL, N'admin', N'2025-04-24 16:24:10.450', N'admin', N'2025-04-25 15:24:09.427') GO INSERT INTO [dbo].[Dt_OutboundOrderDetail] ([Id], [OrderId], [MaterielCode], [MaterielName], [BatchNo], [OrderQuantity], [LockQuantity], [OverOutQuantity], [OrderDetailStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'15', N'12', N'2', N'2', NULL, N'12.00', N'.00', N'.00', N'0', NULL, N'admin', N'2025-04-24 16:24:10.453', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_OutboundOrderDetail] OFF GO -- ---------------------------- -- Table structure for Dt_OutboundOrderDetail_Hty -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_OutboundOrderDetail_Hty]') AND type IN ('U')) DROP TABLE [dbo].[Dt_OutboundOrderDetail_Hty] GO CREATE TABLE [dbo].[Dt_OutboundOrderDetail_Hty] ( [Id] int IDENTITY(1,1) NOT NULL, [SourceId] int DEFAULT '0' NOT NULL, [OperateType] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [InsertTime] datetime NOT NULL, [OrderId] int NOT NULL, [MaterielCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [MaterielName] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [BatchNo] varchar(20) COLLATE Chinese_PRC_CI_AS NULL, [OrderQuantity] decimal(10,2) NOT NULL, [LockQuantity] decimal(10,2) DEFAULT '0' NOT NULL, [OverOutQuantity] decimal(10,2) DEFAULT '0' NOT NULL, [OrderDetailStatus] int NOT NULL, [Remark] varchar(255) 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_OutboundOrderDetail_Hty] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'原表主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'SourceId' GO EXEC sp_addextendedproperty 'MS_Description', N'操作类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'OperateType' GO EXEC sp_addextendedproperty 'MS_Description', N'移入历史时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'InsertTime' GO EXEC sp_addextendedproperty 'MS_Description', N'出库单主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'OrderId' GO EXEC sp_addextendedproperty 'MS_Description', N'物料编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'MaterielCode' GO EXEC sp_addextendedproperty 'MS_Description', N'物料名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'MaterielName' GO EXEC sp_addextendedproperty 'MS_Description', N'批次号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'BatchNo' GO EXEC sp_addextendedproperty 'MS_Description', N'单据数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'OrderQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'锁定数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'LockQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'已出数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'OverOutQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'订单明细状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'OrderDetailStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'出库单明细历史', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutboundOrderDetail_Hty' GO -- ---------------------------- -- Records of Dt_OutboundOrderDetail_Hty -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_OutboundOrderDetail_Hty] ON GO SET IDENTITY_INSERT [dbo].[Dt_OutboundOrderDetail_Hty] OFF GO -- ---------------------------- -- Table structure for Dt_OutStockLockInfo -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_OutStockLockInfo]') AND type IN ('U')) DROP TABLE [dbo].[Dt_OutStockLockInfo] GO CREATE TABLE [dbo].[Dt_OutStockLockInfo] ( [Id] int IDENTITY(1,1) NOT NULL, [OrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [OrderDetailId] int NOT NULL, [OrderType] int NOT NULL, [BatchNo] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [MaterielCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [MaterielName] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [StockId] int NOT NULL, [OrderQuantity] decimal(10,2) NOT NULL, [OriginalQuantity] decimal(10,2) NOT NULL, [AssignQuantity] decimal(10,2) NOT NULL, [LocationCode] varchar(20) COLLATE Chinese_PRC_CI_AS NULL, [PalletCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [TaskNum] int NULL, [Status] int NOT 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_OutStockLockInfo] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'单据明细主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'OrderDetailId' GO EXEC sp_addextendedproperty 'MS_Description', N'单据类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'OrderType' GO EXEC sp_addextendedproperty 'MS_Description', N'批次号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'BatchNo' GO EXEC sp_addextendedproperty 'MS_Description', N'物料编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'MaterielCode' GO EXEC sp_addextendedproperty 'MS_Description', N'物料名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'MaterielName' GO EXEC sp_addextendedproperty 'MS_Description', N'库存主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'StockId' GO EXEC sp_addextendedproperty 'MS_Description', N'单据数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'OrderQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'原始库存量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'OriginalQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'分配出库量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'AssignQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'货位编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'LocationCode' GO EXEC sp_addextendedproperty 'MS_Description', N'托盘编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'PalletCode' GO EXEC sp_addextendedproperty 'MS_Description', N'任务号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'TaskNum' GO EXEC sp_addextendedproperty 'MS_Description', N'状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'Status' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'出库详情', 'SCHEMA', N'dbo', 'TABLE', N'Dt_OutStockLockInfo' GO -- ---------------------------- -- Records of Dt_OutStockLockInfo -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_OutStockLockInfo] ON GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'104', N'250223143927', N'9', N'235', N'', N'1', N'1', N'1128', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000001', N'283', N'0', N'admin', N'2025-02-23 23:36:44.553', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'105', N'250223143927', N'9', N'235', N'', N'1', N'1', N'1129', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000002', N'282', N'0', N'admin', N'2025-02-23 23:36:44.553', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'106', N'250223143927', N'9', N'235', N'', N'1', N'1', N'1132', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000003', N'281', N'0', N'admin', N'2025-02-23 23:36:44.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'107', N'250223143927', N'9', N'235', N'', N'1', N'1', N'1133', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000004', N'280', N'0', N'admin', N'2025-02-23 23:36:44.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'108', N'250223143927', N'9', N'235', N'', N'1', N'1', N'1134', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000005', N'279', N'0', N'admin', N'2025-02-23 23:36:44.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'109', N'250223143927', N'9', N'235', N'', N'1', N'1', N'1135', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000006', N'278', N'0', N'admin', N'2025-02-23 23:36:44.560', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'110', N'250223143927', N'9', N'235', N'', N'1', N'1', N'1136', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000007', N'277', N'0', N'admin', N'2025-02-23 23:36:44.563', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'111', N'250223143927', N'9', N'235', N'', N'1', N'1', N'1137', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000008', N'276', N'0', N'admin', N'2025-02-23 23:36:44.563', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'112', N'250223143927', N'9', N'235', N'', N'1', N'1', N'1138', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000009', N'275', N'0', N'admin', N'2025-02-23 23:36:44.567', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'113', N'250223143927', N'9', N'235', N'', N'1', N'1', N'1139', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000011', N'274', N'0', N'admin', N'2025-02-23 23:36:44.567', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'114', N'250223143927', N'9', N'235', N'', N'1', N'1', N'1140', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000010', N'273', N'0', N'admin', N'2025-02-23 23:36:44.567', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'115', N'250223143927', N'9', N'235', N'', N'1', N'1', N'1141', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000012', N'272', N'0', N'admin', N'2025-02-23 23:36:44.570', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'116', N'250223210220', N'10', N'205', N'20250222T3', N'3', N'3', N'1154', N'12.00', N'1.00', N'1.00', N'003-002-001', N'25000025', N'295', N'0', N'admin', N'2025-02-23 23:51:25.873', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'117', N'250223210220', N'10', N'205', N'20250222T3', N'3', N'3', N'1155', N'12.00', N'1.00', N'1.00', N'003-002-001', N'25000026', N'294', N'0', N'admin', N'2025-02-23 23:51:25.877', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'118', N'250223210220', N'10', N'205', N'20250222T3', N'3', N'3', N'1156', N'12.00', N'1.00', N'1.00', N'003-002-001', N'25000027', N'293', N'0', N'admin', N'2025-02-23 23:51:25.877', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'119', N'250223210220', N'10', N'205', N'20250222T3', N'3', N'3', N'1157', N'12.00', N'1.00', N'1.00', N'003-002-001', N'25000028', N'292', N'0', N'admin', N'2025-02-23 23:51:25.877', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'120', N'250223210220', N'10', N'205', N'20250222T3', N'3', N'3', N'1158', N'12.00', N'1.00', N'1.00', N'003-002-001', N'25000029', N'291', N'0', N'admin', N'2025-02-23 23:51:25.883', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'121', N'250223210220', N'10', N'205', N'20250222T3', N'3', N'3', N'1159', N'12.00', N'1.00', N'1.00', N'003-002-001', N'25000030', N'290', N'0', N'admin', N'2025-02-23 23:51:25.883', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'122', N'250223210220', N'10', N'205', N'20250222T3', N'3', N'3', N'1160', N'12.00', N'1.00', N'1.00', N'003-002-001', N'25000031', N'289', N'0', N'admin', N'2025-02-23 23:51:25.887', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'123', N'250223210220', N'10', N'205', N'20250222T3', N'3', N'3', N'1161', N'12.00', N'1.00', N'1.00', N'003-002-001', N'25000032', N'288', N'0', N'admin', N'2025-02-23 23:51:25.887', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'124', N'250223210220', N'10', N'205', N'20250222T3', N'3', N'3', N'1162', N'12.00', N'1.00', N'1.00', N'003-002-001', N'25000033', N'287', N'0', N'admin', N'2025-02-23 23:51:25.887', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'125', N'250223210220', N'10', N'205', N'20250222T3', N'3', N'3', N'1163', N'12.00', N'1.00', N'1.00', N'003-002-001', N'25000034', N'286', N'0', N'admin', N'2025-02-23 23:51:25.890', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'126', N'250223210220', N'10', N'205', N'20250222T3', N'3', N'3', N'1164', N'12.00', N'1.00', N'1.00', N'003-002-001', N'25000035', N'285', N'0', N'admin', N'2025-02-23 23:51:25.890', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'127', N'250223210220', N'10', N'205', N'20250222T3', N'3', N'3', N'1165', N'12.00', N'1.00', N'1.00', N'003-002-001', N'25000036', N'284', N'0', N'admin', N'2025-02-23 23:51:25.890', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'176', N'250424162410', N'14', N'205', N'1T2', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1342', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000013', N'796', N'0', N'admin', N'2025-04-25 15:24:09.280', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'177', N'250424162410', N'14', N'205', N'1T2', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1343', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000014', N'795', N'0', N'admin', N'2025-04-25 15:24:09.283', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'178', N'250424162410', N'14', N'205', N'1T2', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1344', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000015', N'794', N'0', N'admin', N'2025-04-25 15:24:09.283', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'179', N'250424162410', N'14', N'205', N'1T2', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1345', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000016', N'793', N'0', N'admin', N'2025-04-25 15:24:09.283', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'180', N'250424162410', N'14', N'205', N'1T2', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1346', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000017', N'792', N'0', N'admin', N'2025-04-25 15:24:09.287', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'181', N'250424162410', N'14', N'205', N'1T2', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1347', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000018', N'791', N'0', N'admin', N'2025-04-25 15:24:09.287', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'182', N'250424162410', N'14', N'205', N'1T2', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1348', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000019', N'790', N'0', N'admin', N'2025-04-25 15:24:09.287', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'183', N'250424162410', N'14', N'205', N'1T2', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1349', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000020', N'789', N'0', N'admin', N'2025-04-25 15:24:09.287', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'184', N'250424162410', N'14', N'205', N'1T2', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1350', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000021', N'788', N'0', N'admin', N'2025-04-25 15:24:09.290', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'185', N'250424162410', N'14', N'205', N'1T2', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1351', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000022', N'787', N'0', N'admin', N'2025-04-25 15:24:09.290', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'186', N'250424162410', N'14', N'205', N'1T2', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1352', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000023', N'786', N'0', N'admin', N'2025-04-25 15:24:09.293', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'187', N'250424162410', N'14', N'205', N'1T2', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1353', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000024', N'785', N'0', N'admin', N'2025-04-25 15:24:09.293', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'188', N'250424162410', N'14', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1330', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000001', N'808', N'0', N'admin', N'2025-04-25 15:24:09.297', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'189', N'250424162410', N'14', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1331', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000002', N'807', N'0', N'admin', N'2025-04-25 15:24:09.297', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'190', N'250424162410', N'14', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1332', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000003', N'806', N'0', N'admin', N'2025-04-25 15:24:09.300', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'191', N'250424162410', N'14', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1333', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000004', N'805', N'0', N'admin', N'2025-04-25 15:24:09.300', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'192', N'250424162410', N'14', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1334', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000005', N'804', N'0', N'admin', N'2025-04-25 15:24:09.303', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'193', N'250424162410', N'14', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1335', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000006', N'803', N'0', N'admin', N'2025-04-25 15:24:09.303', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'194', N'250424162410', N'14', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1336', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000007', N'802', N'0', N'admin', N'2025-04-25 15:24:09.303', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'195', N'250424162410', N'14', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1337', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000008', N'801', N'0', N'admin', N'2025-04-25 15:24:09.307', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'196', N'250424162410', N'14', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1338', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000009', N'800', N'0', N'admin', N'2025-04-25 15:24:09.307', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'197', N'250424162410', N'14', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1339', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000010', N'799', N'0', N'admin', N'2025-04-25 15:24:09.307', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'198', N'250424162410', N'14', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1340', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000011', N'798', N'0', N'admin', N'2025-04-25 15:24:09.310', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'199', N'250424162410', N'14', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1341', N'34.00', N'1.00', N'1.00', N'001-002-001', N'25000012', N'797', N'0', N'admin', N'2025-04-25 15:24:09.310', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'200', N'250424162410', N'14', N'205', N'1T', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1366', N'34.00', N'1.00', N'1.00', N'002-004-001', N'25000037', N'818', N'0', N'admin', N'2025-04-25 15:24:09.313', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'201', N'250424162410', N'14', N'205', N'1T', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1367', N'34.00', N'1.00', N'1.00', N'002-004-001', N'25000038', N'817', N'0', N'admin', N'2025-04-25 15:24:09.313', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'202', N'250424162410', N'14', N'205', N'1T', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1368', N'34.00', N'1.00', N'1.00', N'002-004-001', N'25000039', N'816', N'0', N'admin', N'2025-04-25 15:24:09.313', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'203', N'250424162410', N'14', N'205', N'1T', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1369', N'34.00', N'1.00', N'1.00', N'002-004-001', N'25000040', N'815', N'0', N'admin', N'2025-04-25 15:24:09.317', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'204', N'250424162410', N'14', N'205', N'1T', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1370', N'34.00', N'1.00', N'1.00', N'002-004-001', N'25000041', N'814', N'0', N'admin', N'2025-04-25 15:24:09.317', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'205', N'250424162410', N'14', N'205', N'1T', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1371', N'34.00', N'1.00', N'1.00', N'002-004-001', N'25000042', N'813', N'0', N'admin', N'2025-04-25 15:24:09.317', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'206', N'250424162410', N'14', N'205', N'1T', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1372', N'34.00', N'1.00', N'1.00', N'002-004-001', N'25000043', N'812', N'0', N'admin', N'2025-04-25 15:24:09.317', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'207', N'250424162410', N'14', N'205', N'1T', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1373', N'34.00', N'1.00', N'1.00', N'002-004-001', N'25000044', N'811', N'0', N'admin', N'2025-04-25 15:24:09.320', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'208', N'250424162410', N'14', N'205', N'1T', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1374', N'34.00', N'1.00', N'1.00', N'002-004-001', N'25000045', N'810', N'0', N'admin', N'2025-04-25 15:24:09.320', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'209', N'250424162410', N'14', N'205', N'1T', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1375', N'34.00', N'1.00', N'1.00', N'002-004-001', N'25000046', N'809', N'0', N'admin', N'2025-04-25 15:24:09.323', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'210', N'250424162410', N'13', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1330', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000001', N'842', N'0', N'admin', N'2025-04-25 15:36:46.687', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'211', N'250424162410', N'13', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1331', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000002', N'841', N'0', N'admin', N'2025-04-25 15:36:46.687', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'212', N'250424162410', N'13', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1332', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000003', N'840', N'0', N'admin', N'2025-04-25 15:36:46.687', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'213', N'250424162410', N'13', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1333', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000004', N'839', N'0', N'admin', N'2025-04-25 15:36:46.690', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'214', N'250424162410', N'13', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1334', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000005', N'838', N'0', N'admin', N'2025-04-25 15:36:46.690', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'215', N'250424162410', N'13', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1335', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000006', N'837', N'0', N'admin', N'2025-04-25 15:36:46.690', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'216', N'250424162410', N'13', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1336', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000007', N'836', N'0', N'admin', N'2025-04-25 15:36:46.693', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'217', N'250424162410', N'13', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1337', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000008', N'835', N'0', N'admin', N'2025-04-25 15:36:46.693', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'218', N'250424162410', N'13', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1338', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000009', N'834', N'0', N'admin', N'2025-04-25 15:36:46.693', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'219', N'250424162410', N'13', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1339', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000010', N'833', N'0', N'admin', N'2025-04-25 15:36:46.697', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'220', N'250424162410', N'13', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1340', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000011', N'832', N'0', N'admin', N'2025-04-25 15:36:46.697', NULL, NULL) GO INSERT INTO [dbo].[Dt_OutStockLockInfo] ([Id], [OrderNo], [OrderDetailId], [OrderType], [BatchNo], [MaterielCode], [MaterielName], [StockId], [OrderQuantity], [OriginalQuantity], [AssignQuantity], [LocationCode], [PalletCode], [TaskNum], [Status], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'221', N'250424162410', N'13', N'205', N'1T1', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1341', N'12.00', N'1.00', N'1.00', N'001-002-001', N'25000012', N'831', N'0', N'admin', N'2025-04-25 15:36:46.697', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_OutStockLockInfo] OFF GO -- ---------------------------- -- Table structure for Dt_PalletCodeInfo -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_PalletCodeInfo]') AND type IN ('U')) DROP TABLE [dbo].[Dt_PalletCodeInfo] GO CREATE TABLE [dbo].[Dt_PalletCodeInfo] ( [Id] int IDENTITY(1,1) NOT NULL, [PalletCode] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [Qty] int DEFAULT '0' NOT NULL, [Width] int DEFAULT '500' NOT NULL, [Height] int DEFAULT '100' NOT NULL, [Size] int DEFAULT '28' NOT 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, [PrintFrequency] int DEFAULT '0' NOT NULL, [Code] int NOT NULL ) GO ALTER TABLE [dbo].[Dt_PalletCodeInfo] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_PalletCodeInfo', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'托盘编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_PalletCodeInfo', 'COLUMN', N'PalletCode' GO EXEC sp_addextendedproperty 'MS_Description', N'条码数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_PalletCodeInfo', 'COLUMN', N'Qty' GO EXEC sp_addextendedproperty 'MS_Description', N'宽', 'SCHEMA', N'dbo', 'TABLE', N'Dt_PalletCodeInfo', 'COLUMN', N'Width' GO EXEC sp_addextendedproperty 'MS_Description', N'高', 'SCHEMA', N'dbo', 'TABLE', N'Dt_PalletCodeInfo', 'COLUMN', N'Height' GO EXEC sp_addextendedproperty 'MS_Description', N'字体大小', 'SCHEMA', N'dbo', 'TABLE', N'Dt_PalletCodeInfo', 'COLUMN', N'Size' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_PalletCodeInfo', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_PalletCodeInfo', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_PalletCodeInfo', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_PalletCodeInfo', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'打印次数', 'SCHEMA', N'dbo', 'TABLE', N'Dt_PalletCodeInfo', 'COLUMN', N'PrintFrequency' GO EXEC sp_addextendedproperty 'MS_Description', N'序号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_PalletCodeInfo', 'COLUMN', N'Code' GO EXEC sp_addextendedproperty 'MS_Description', N'托盘码信息', 'SCHEMA', N'dbo', 'TABLE', N'Dt_PalletCodeInfo' GO -- ---------------------------- -- Records of Dt_PalletCodeInfo -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_PalletCodeInfo] ON GO INSERT INTO [dbo].[Dt_PalletCodeInfo] ([Id], [PalletCode], [Qty], [Width], [Height], [Size], [Creater], [CreateDate], [Modifier], [ModifyDate], [PrintFrequency], [Code]) VALUES (N'1', N'AC', N'1', N'300', N'100', N'16', N'admin', N'2025-01-13 16:58:10.290', NULL, NULL, N'2', N'1000') GO INSERT INTO [dbo].[Dt_PalletCodeInfo] ([Id], [PalletCode], [Qty], [Width], [Height], [Size], [Creater], [CreateDate], [Modifier], [ModifyDate], [PrintFrequency], [Code]) VALUES (N'2', N'AC', N'1', N'500', N'100', N'28', N'admin', N'2025-01-13 16:59:42.573', NULL, NULL, N'2', N'1') GO INSERT INTO [dbo].[Dt_PalletCodeInfo] ([Id], [PalletCode], [Qty], [Width], [Height], [Size], [Creater], [CreateDate], [Modifier], [ModifyDate], [PrintFrequency], [Code]) VALUES (N'3', N'AC', N'1', N'400', N'100', N'20', N'admin', N'2025-01-13 17:00:19.817', NULL, NULL, N'2', N'1') GO INSERT INTO [dbo].[Dt_PalletCodeInfo] ([Id], [PalletCode], [Qty], [Width], [Height], [Size], [Creater], [CreateDate], [Modifier], [ModifyDate], [PrintFrequency], [Code]) VALUES (N'7', N'AC', N'1', N'500', N'150', N'28', N'admin', N'2025-02-17 10:36:27.863', N'admin', N'2025-02-17 16:46:40.640', N'2', N'8') GO SET IDENTITY_INSERT [dbo].[Dt_PalletCodeInfo] OFF GO -- ---------------------------- -- Table structure for Dt_RoadwayInfo -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_RoadwayInfo]') AND type IN ('U')) DROP TABLE [dbo].[Dt_RoadwayInfo] GO CREATE TABLE [dbo].[Dt_RoadwayInfo] ( [Id] int IDENTITY(1,1) NOT NULL, [RoadwayNo] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [AreaId] int NOT NULL, [EnableStatus] int DEFAULT '0' NOT NULL, [DeviceNo] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [InStationCode] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [InSCStationCode] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [OutStationCode] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [OutSCStationCode] varchar(20) COLLATE Chinese_PRC_CI_AS 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_RoadwayInfo] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_RoadwayInfo', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'巷道编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_RoadwayInfo', 'COLUMN', N'RoadwayNo' GO EXEC sp_addextendedproperty 'MS_Description', N'仓库主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_RoadwayInfo', 'COLUMN', N'AreaId' GO EXEC sp_addextendedproperty 'MS_Description', N'禁用状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_RoadwayInfo', 'COLUMN', N'EnableStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'设备编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_RoadwayInfo', 'COLUMN', N'DeviceNo' GO EXEC sp_addextendedproperty 'MS_Description', N'入库站台编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_RoadwayInfo', 'COLUMN', N'InStationCode' GO EXEC sp_addextendedproperty 'MS_Description', N'堆垛机入库站台编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_RoadwayInfo', 'COLUMN', N'InSCStationCode' GO EXEC sp_addextendedproperty 'MS_Description', N'出库站台编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_RoadwayInfo', 'COLUMN', N'OutStationCode' GO EXEC sp_addextendedproperty 'MS_Description', N'堆垛机出库站台编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_RoadwayInfo', 'COLUMN', N'OutSCStationCode' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_RoadwayInfo', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_RoadwayInfo', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_RoadwayInfo', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_RoadwayInfo', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_RoadwayInfo', 'COLUMN', N'ModifyDate' GO -- ---------------------------- -- Records of Dt_RoadwayInfo -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_RoadwayInfo] ON GO INSERT INTO [dbo].[Dt_RoadwayInfo] ([Id], [RoadwayNo], [AreaId], [EnableStatus], [DeviceNo], [InStationCode], [InSCStationCode], [OutStationCode], [OutSCStationCode], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'SC01', N'1', N'0', N'SC01', N'1004', N'1004', N'1005', N'1005', NULL, N'System', N'2024-10-15 16:49:30.000', N'admin', N'2024-11-12 09:15:18.167') GO SET IDENTITY_INSERT [dbo].[Dt_RoadwayInfo] OFF GO -- ---------------------------- -- Table structure for Dt_StockInfo -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_StockInfo]') AND type IN ('U')) DROP TABLE [dbo].[Dt_StockInfo] GO CREATE TABLE [dbo].[Dt_StockInfo] ( [Id] int IDENTITY(1,1) NOT NULL, [PalletCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [LocationCode] varchar(20) COLLATE Chinese_PRC_CI_AS NULL, [IsFull] bit DEFAULT '0' NOT NULL, [StockStatus] int NOT NULL, [Remark] varchar(255) 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, [InDate] datetime NULL, [SerialNumber] int DEFAULT '0' NOT NULL ) GO ALTER TABLE [dbo].[Dt_StockInfo] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'托盘编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo', 'COLUMN', N'PalletCode' GO EXEC sp_addextendedproperty 'MS_Description', N'货位编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo', 'COLUMN', N'LocationCode' GO EXEC sp_addextendedproperty 'MS_Description', N'是否满盘', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo', 'COLUMN', N'IsFull' GO EXEC sp_addextendedproperty 'MS_Description', N'库存状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo', 'COLUMN', N'StockStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'入库时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo', 'COLUMN', N'InDate' GO EXEC sp_addextendedproperty 'MS_Description', N'入库序号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo', 'COLUMN', N'SerialNumber' GO EXEC sp_addextendedproperty 'MS_Description', N'库存信息', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo' GO -- ---------------------------- -- Records of Dt_StockInfo -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_StockInfo] ON GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1330', N'25000001', N'001-002-001', N'0', N'8', N'string', N'System', N'2025-04-24 10:42:49.137', N'admin', N'2025-04-25 15:36:46.723', N'2025-04-24 15:01:27.530', N'1') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1331', N'25000002', N'001-002-001', N'0', N'8', N'string', N'System', N'2025-04-24 10:45:29.833', N'admin', N'2025-04-25 15:36:46.723', N'2025-04-24 15:02:51.530', N'2') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1332', N'25000003', N'001-002-001', N'0', N'8', N'string', N'System', N'2025-04-24 10:45:35.907', N'admin', N'2025-04-25 15:36:46.727', N'2025-04-24 15:02:55.703', N'3') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1333', N'25000004', N'001-002-001', N'0', N'8', N'string', N'System', N'2025-04-24 10:45:38.450', N'admin', N'2025-04-25 15:36:46.727', N'2025-04-24 15:02:59.240', N'4') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1334', N'25000005', N'001-002-001', N'0', N'8', N'string', N'System', N'2025-04-24 10:45:40.547', N'admin', N'2025-04-25 15:36:46.727', N'2025-04-24 15:03:02.380', N'5') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1335', N'25000006', N'001-002-001', N'0', N'8', N'string', N'System', N'2025-04-24 10:45:43.247', N'admin', N'2025-04-25 15:36:46.727', N'2025-04-24 15:03:05.810', N'6') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1336', N'25000007', N'001-002-001', N'0', N'8', N'string', N'System', N'2025-04-24 10:45:46.240', N'admin', N'2025-04-25 15:36:46.727', N'2025-04-24 15:03:09.127', N'7') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1337', N'25000008', N'001-002-001', N'0', N'8', N'string', N'System', N'2025-04-24 10:45:48.427', N'admin', N'2025-04-25 15:36:46.727', N'2025-04-24 15:03:11.757', N'8') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1338', N'25000009', N'001-002-001', N'0', N'8', N'string', N'System', N'2025-04-24 10:45:51.423', N'admin', N'2025-04-25 15:36:46.730', N'2025-04-24 15:03:15.657', N'9') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1339', N'25000010', N'001-002-001', N'0', N'8', N'string', N'System', N'2025-04-24 10:45:55.103', N'admin', N'2025-04-25 15:36:46.730', N'2025-04-24 15:04:02.460', N'10') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1340', N'25000011', N'001-002-001', N'0', N'8', N'string', N'System', N'2025-04-24 10:45:57.407', N'admin', N'2025-04-25 15:36:46.730', N'2025-04-24 15:04:04.993', N'11') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1341', N'25000012', N'001-002-001', N'0', N'8', N'string', N'System', N'2025-04-24 10:46:02.883', N'admin', N'2025-04-25 15:36:46.730', N'2025-04-24 15:04:07.883', N'12') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1342', N'25000013', N'001-002-001', N'0', N'10', N'string', N'System', N'2025-04-24 10:46:39.217', N'admin', N'2025-04-25 15:36:46.713', N'2025-04-24 15:05:07.623', N'13') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1343', N'25000014', N'001-002-001', N'0', N'10', N'string', N'System', N'2025-04-24 10:46:44.920', N'admin', N'2025-04-25 15:36:46.717', N'2025-04-24 15:05:12.300', N'14') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1344', N'25000015', N'001-002-001', N'0', N'10', N'string', N'System', N'2025-04-24 10:46:48.567', N'admin', N'2025-04-25 15:36:46.717', N'2025-04-24 15:05:15.710', N'15') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1345', N'25000016', N'001-002-001', N'0', N'10', N'string', N'System', N'2025-04-24 10:46:51.087', N'admin', N'2025-04-25 15:36:46.717', N'2025-04-24 15:05:18.850', N'16') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1346', N'25000017', N'001-002-001', N'0', N'10', N'string', N'System', N'2025-04-24 10:46:55.353', N'admin', N'2025-04-25 15:36:46.720', N'2025-04-24 15:05:20.923', N'17') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1347', N'25000018', N'001-002-001', N'0', N'10', N'string', N'System', N'2025-04-24 10:46:57.983', N'admin', N'2025-04-25 15:36:46.720', N'2025-04-24 15:05:23.687', N'18') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1348', N'25000019', N'001-002-001', N'0', N'10', N'string', N'System', N'2025-04-24 10:47:01.280', N'admin', N'2025-04-25 15:36:46.720', N'2025-04-24 15:05:32.443', N'19') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1349', N'25000020', N'001-002-001', N'0', N'10', N'string', N'System', N'2025-04-24 10:47:05.190', N'admin', N'2025-04-25 15:36:46.720', N'2025-04-24 15:05:35.430', N'20') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1350', N'25000021', N'001-002-001', N'0', N'10', N'string', N'System', N'2025-04-24 10:47:07.487', N'admin', N'2025-04-25 15:36:46.720', N'2025-04-24 15:05:37.840', N'21') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1351', N'25000022', N'001-002-001', N'0', N'10', N'string', N'System', N'2025-04-24 10:47:09.913', N'admin', N'2025-04-25 15:36:46.723', N'2025-04-24 15:05:40.600', N'22') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1352', N'25000023', N'001-002-001', N'0', N'10', N'string', N'System', N'2025-04-24 10:47:13.233', N'admin', N'2025-04-25 15:36:46.723', N'2025-04-24 15:05:44.933', N'23') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1353', N'25000024', N'001-002-001', N'0', N'10', N'string', N'System', N'2025-04-24 10:47:15.797', N'admin', N'2025-04-25 15:36:46.723', N'2025-04-24 15:05:50.033', N'24') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1354', N'25000025', N'002-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 11:02:58.287', NULL, N'2025-04-24 15:08:57.980', N'2025-04-24 15:08:57.900', N'1') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1355', N'25000026', N'002-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 11:03:02.020', NULL, N'2025-04-24 15:09:24.250', N'2025-04-24 15:09:24.247', N'2') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1356', N'25000027', N'002-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 11:03:04.407', NULL, N'2025-04-24 15:09:26.750', N'2025-04-24 15:09:26.743', N'3') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1357', N'25000028', N'002-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 11:03:08.003', NULL, N'2025-04-24 15:09:29.363', N'2025-04-24 15:09:29.357', N'4') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1358', N'25000029', N'002-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 11:03:11.477', NULL, N'2025-04-24 15:09:32.210', N'2025-04-24 15:09:32.203', N'5') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1359', N'25000030', N'002-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 11:03:14.617', NULL, N'2025-04-24 15:09:34.353', N'2025-04-24 15:09:34.347', N'6') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1360', N'25000031', N'002-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 11:03:17.350', NULL, N'2025-04-24 15:09:36.913', N'2025-04-24 15:09:36.907', N'7') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1361', N'25000032', N'002-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 11:03:20.617', NULL, N'2025-04-24 15:10:44.290', N'2025-04-24 15:10:44.277', N'8') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1362', N'25000033', N'002-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 11:03:23.103', NULL, N'2025-04-24 15:10:47.353', N'2025-04-24 15:10:47.347', N'9') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1363', N'25000034', N'002-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 11:03:25.637', NULL, N'2025-04-24 15:11:01.200', N'2025-04-24 15:11:01.183', N'10') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1364', N'25000035', N'002-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 11:03:28.377', NULL, N'2025-04-24 15:11:05.497', N'2025-04-24 15:11:05.483', N'11') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1365', N'25000036', N'002-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 11:03:31.490', NULL, N'2025-04-24 15:16:16.573', N'2025-04-24 16:06:36.403', N'12') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1366', N'25000037', N'002-004-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:45:06.940', N'admin', N'2025-04-25 15:24:09.363', N'2025-04-24 16:06:10.500', N'1') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1367', N'25000038', N'002-004-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:45:15.720', N'admin', N'2025-04-25 15:24:09.363', N'2025-04-24 16:06:12.953', N'2') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1368', N'25000039', N'002-004-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:45:19.107', N'admin', N'2025-04-25 15:24:09.367', N'2025-04-24 16:06:15.357', N'3') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1369', N'25000040', N'002-004-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:45:24.063', N'admin', N'2025-04-25 15:24:09.367', N'2025-04-24 16:06:18.190', N'4') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1370', N'25000041', N'002-004-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:45:26.350', N'admin', N'2025-04-25 15:24:09.367', N'2025-04-24 16:06:20.860', N'5') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1371', N'25000042', N'002-004-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:45:29.303', N'admin', N'2025-04-25 15:24:09.367', N'2025-04-24 16:06:23.213', N'6') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1372', N'25000043', N'002-004-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:45:32.333', N'admin', N'2025-04-25 15:24:09.367', N'2025-04-24 16:06:26.683', N'7') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1373', N'25000044', N'002-004-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:45:35.553', N'admin', N'2025-04-25 15:24:09.370', N'2025-04-24 16:06:28.997', N'8') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1374', N'25000045', N'002-004-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:45:38.190', N'admin', N'2025-04-25 15:24:09.370', N'2025-04-24 16:06:33.663', N'9') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1375', N'25000046', N'002-004-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:45:40.650', N'admin', N'2025-04-25 15:24:09.370', N'2025-04-24 16:06:33.663', N'10') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1376', N'25000047', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:46:51.840', NULL, N'2025-04-24 16:06:38.953', N'2025-04-24 16:06:38.947', N'1') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1377', N'25000048', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:46:57.187', NULL, N'2025-04-24 16:06:41.220', N'2025-04-24 16:06:41.217', N'2') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1378', N'25000049', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:01.170', NULL, N'2025-04-24 16:06:43.797', N'2025-04-24 16:06:43.787', N'3') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1379', N'25000050', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:06.320', NULL, N'2025-04-24 16:06:46.327', N'2025-04-24 16:06:46.320', N'4') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1380', N'25000051', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:08.840', NULL, N'2025-04-24 16:06:48.737', N'2025-04-24 16:06:48.733', N'5') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1381', N'25000052', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:12.463', NULL, N'2025-04-24 16:06:51.690', N'2025-04-24 16:06:51.683', N'6') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1382', N'25000053', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:15.867', NULL, N'2025-04-24 16:06:54.070', N'2025-04-24 16:06:54.063', N'7') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1383', N'25000054', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:18.310', NULL, N'2025-04-24 16:06:59.843', N'2025-04-24 16:06:59.837', N'8') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1384', N'25000055', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:20.913', NULL, N'2025-04-24 16:07:04.550', N'2025-04-24 16:07:04.543', N'9') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1385', N'25000056', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:23.460', NULL, N'2025-04-24 16:07:12.327', N'2025-04-24 16:07:12.320', N'10') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1386', N'25000057', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:26.420', NULL, N'2025-04-24 16:07:14.760', N'2025-04-24 16:07:14.750', N'11') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1387', N'25000058', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:29.420', NULL, N'2025-04-24 16:07:17.227', N'2025-04-24 16:07:17.220', N'12') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1388', N'25000059', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:41.220', NULL, N'2025-04-24 16:08:10.283', N'2025-04-24 16:08:10.270', N'13') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1389', N'25000060', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:47.850', NULL, N'2025-04-24 16:08:20.090', N'2025-04-24 16:08:20.080', N'14') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1390', N'25000061', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:50.467', NULL, N'2025-04-24 16:08:23.840', N'2025-04-24 16:08:23.833', N'15') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1391', N'25000062', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:53.960', NULL, N'2025-04-24 16:08:27.413', N'2025-04-24 16:08:27.397', N'16') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1392', N'25000063', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:47:56.570', NULL, N'2025-04-24 16:08:30.033', N'2025-04-24 16:08:30.017', N'17') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1393', N'25000064', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:48:00.827', NULL, N'2025-04-24 16:08:33.017', N'2025-04-24 16:08:33.010', N'18') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1394', N'25000065', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:48:02.883', NULL, N'2025-04-24 16:08:38.420', N'2025-04-24 16:08:38.413', N'19') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1395', N'25000066', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:48:06.047', NULL, N'2025-04-24 16:08:41.267', N'2025-04-24 16:08:41.263', N'20') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1396', N'25000067', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:48:09.053', NULL, N'2025-04-24 16:08:43.840', N'2025-04-24 16:08:43.830', N'21') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1397', N'25000068', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:48:12.227', NULL, N'2025-04-24 16:08:46.210', N'2025-04-24 16:08:46.203', N'22') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1398', N'25000069', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:48:17.077', NULL, N'2025-04-24 16:09:05.673', N'2025-04-24 16:09:05.650', N'23') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1399', N'25000070', N'001-003-001', N'0', N'5', N'string', N'System', N'2025-04-24 14:48:23.987', NULL, N'2025-04-24 16:10:46.650', N'2025-04-24 16:10:26.313', N'24') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1400', N'25000463', NULL, N'0', N'1', NULL, N'System', N'2025-04-25 09:47:13.567', NULL, NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_StockInfo] ([Id], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [InDate], [SerialNumber]) VALUES (N'1401', N'25000577', NULL, N'0', N'1', NULL, N'System', N'2025-04-25 10:02:01.073', NULL, NULL, NULL, N'0') GO SET IDENTITY_INSERT [dbo].[Dt_StockInfo] OFF GO -- ---------------------------- -- Table structure for Dt_StockInfo_Hty -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_StockInfo_Hty]') AND type IN ('U')) DROP TABLE [dbo].[Dt_StockInfo_Hty] GO CREATE TABLE [dbo].[Dt_StockInfo_Hty] ( [Id] int IDENTITY(1,1) NOT NULL, [SourceId] int DEFAULT '0' NOT NULL, [OperateType] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [InsertTime] datetime NOT NULL, [SerialNumber] int DEFAULT '0' NOT NULL, [InDate] datetime NULL, [PalletCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [LocationCode] varchar(20) COLLATE Chinese_PRC_CI_AS NULL, [IsFull] bit DEFAULT '0' NOT NULL, [StockStatus] int NOT NULL, [Remark] varchar(255) 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_StockInfo_Hty] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'原表主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'SourceId' GO EXEC sp_addextendedproperty 'MS_Description', N'操作类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'OperateType' GO EXEC sp_addextendedproperty 'MS_Description', N'移入历史时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'InsertTime' GO EXEC sp_addextendedproperty 'MS_Description', N'入库序号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'SerialNumber' GO EXEC sp_addextendedproperty 'MS_Description', N'入库时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'InDate' GO EXEC sp_addextendedproperty 'MS_Description', N'托盘编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'PalletCode' GO EXEC sp_addextendedproperty 'MS_Description', N'货位编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'LocationCode' GO EXEC sp_addextendedproperty 'MS_Description', N'是否满盘', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'IsFull' GO EXEC sp_addextendedproperty 'MS_Description', N'库存状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'StockStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'库存信息', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfo_Hty' GO -- ---------------------------- -- Records of Dt_StockInfo_Hty -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_StockInfo_Hty] ON GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'1224', N'自动完成', N'1900-01-01 00:00:00.000', N'11', N'2025-04-20 10:45:03.437', N'25000381', N'002-006-002', N'0', N'8', NULL, N'PDA1', N'2025-04-20 11:42:22.370', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'1189', N'自动完成', N'1900-01-01 00:00:00.000', N'9', N'2025-04-16 14:08:34.780', N'25000245', N'003-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 13:33:31.957', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'1188', N'自动完成', N'1900-01-01 00:00:00.000', N'8', N'2025-04-16 13:50:41.917', N'25000231', N'003-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 14:00:33.193', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'1223', N'自动完成', N'1900-01-01 00:00:00.000', N'12', N'2025-04-19 17:02:02.110', N'25000017', N'002-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 14:13:16.083', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'5', N'1187', N'自动完成', N'1900-01-01 00:00:00.000', N'7', N'2025-04-16 13:38:21.713', N'25000152', N'003-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 14:23:23.583', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'6', N'1186', N'自动完成', N'1900-01-01 00:00:00.000', N'6', N'2025-04-16 13:19:15.847', N'25000060', N'003-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 14:36:45.967', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7', N'1184', N'自动完成', N'1900-01-01 00:00:00.000', N'4', N'2025-04-16 12:01:24.867', N'25000241', N'003-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 14:44:45.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'8', N'1182', N'自动完成', N'1900-01-01 00:00:00.000', N'3', N'2025-04-15 16:28:32.147', N'25000001', N'003-002-001', N'0', N'8', NULL, N'admin', N'2025-04-20 14:46:14.620', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'9', N'1181', N'自动完成', N'1900-01-01 00:00:00.000', N'2', N'2025-04-15 16:18:47.467', N'25000052', N'003-002-001', N'0', N'8', NULL, N'admin', N'2025-04-20 14:59:16.480', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'10', N'1185', N'自动完成', N'1900-01-01 00:00:00.000', N'5', N'2025-04-16 13:01:19.850', N'25000050', N'003-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 15:00:43.333', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11', N'1180', N'自动完成', N'1900-01-01 00:00:00.000', N'1', N'2025-04-15 15:37:11.437', N'25000051', N'003-002-001', N'0', N'8', NULL, N'admin', N'2025-04-20 15:04:05.310', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'12', N'1221', N'自动完成', N'1900-01-01 00:00:00.000', N'10', N'2025-04-19 16:20:33.477', N'25000080', N'002-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 15:25:19.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'1220', N'自动完成', N'1900-01-01 00:00:00.000', N'10', N'2025-04-19 16:08:23.470', N'25000031', N'002-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 15:28:02.717', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'14', N'1219', N'自动完成', N'1900-01-01 00:00:00.000', N'9', N'2025-04-19 15:59:57.527', N'25000002', N'002-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 15:31:01.690', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'15', N'1218', N'自动完成', N'1900-01-01 00:00:00.000', N'8', N'2025-04-19 15:51:13.497', N'25000400', N'002-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 15:33:20.680', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'16', N'1217', N'自动完成', N'1900-01-01 00:00:00.000', N'7', N'2025-04-19 13:45:07.080', N'25000149', N'002-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 15:36:00.340', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'17', N'1216', N'自动完成', N'1900-01-01 00:00:00.000', N'6', N'2025-04-19 13:34:10.727', N'25000422', N'002-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 15:37:38.953', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'18', N'1215', N'自动完成', N'1900-01-01 00:00:00.000', N'5', N'2025-04-19 13:14:10.727', N'25000390', N'002-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 15:52:32.930', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'19', N'1222', N'自动完成', N'1900-01-01 00:00:00.000', N'11', N'2025-04-19 16:25:03.437', N'25000380', N'003-005-002', N'0', N'8', NULL, N'PDA1', N'2025-04-20 16:22:47.997', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'20', N'1213', N'自动完成', N'1900-01-01 00:00:00.000', N'3', N'2025-04-18 17:29:25.647', N'25000162', N'002-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 16:24:33.960', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'21', N'1208', N'自动完成', N'1900-01-01 00:00:00.000', N'2', N'2025-04-18 14:16:08.770', N'25000136', N'002-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 16:26:23.930', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'22', N'1207', N'自动完成', N'1900-01-01 00:00:00.000', N'1', N'2025-04-18 14:12:29.393', N'25000445', N'002-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 16:37:45.447', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'23', N'1203', N'自动完成', N'1900-01-01 00:00:00.000', N'12', N'2025-04-18 09:49:14.897', N'25000172', N'001-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 16:45:41.470', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'24', N'1202', N'自动完成', N'1900-01-01 00:00:00.000', N'11', N'2025-04-18 09:32:08.027', N'25000411', N'001-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 16:47:40.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'25', N'1201', N'自动完成', N'1900-01-01 00:00:00.000', N'10', N'2025-04-17 15:10:18.467', N'25000370', N'001-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 16:49:44.410', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'26', N'1200', N'自动完成', N'1900-01-01 00:00:00.000', N'9', N'2025-04-17 13:45:00.310', N'25000446', N'001-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 17:12:08.103', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'27', N'1199', N'自动完成', N'1900-01-01 00:00:00.000', N'8', N'2025-04-17 13:17:29.360', N'25000220', N'001-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 17:14:18.100', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'28', N'1198', N'自动完成', N'1900-01-01 00:00:00.000', N'7', N'2025-04-17 10:57:35.383', N'25000420', N'001-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 17:20:35.120', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'29', N'1197', N'自动完成', N'1900-01-01 00:00:00.000', N'6', N'2025-04-17 10:37:35.383', N'25000273', N'001-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-20 17:38:37.017', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'30', N'1196', N'自动完成', N'1900-01-01 00:00:00.000', N'5', N'2025-04-17 10:10:08.023', N'25000260', N'001-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 09:16:10.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'31', N'1195', N'自动完成', N'1900-01-01 00:00:00.000', N'4', N'2025-04-17 09:55:58.913', N'25000046', N'001-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 09:18:21.150', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'32', N'1194', N'自动完成', N'1900-01-01 00:00:00.000', N'3', N'2025-04-17 09:52:39.310', N'25000139', N'001-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 09:31:04.817', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'33', N'1193', N'自动完成', N'1900-01-01 00:00:00.000', N'2', N'2025-04-16 17:14:43.953', N'25000165', N'001-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 09:36:36.403', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'34', N'1192', N'自动完成', N'1900-01-01 00:00:00.000', N'1', N'2025-04-16 17:10:43.953', N'25000747', N'001-004-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 09:39:20.250', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'35', N'1226', N'自动完成', N'1900-01-01 00:00:00.000', N'4', N'2025-04-20 10:38:21.830', N'25000190', N'001-005-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 09:42:31.697', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'36', N'1225', N'自动完成', N'1900-01-01 00:00:00.000', N'3', N'2025-04-20 10:14:09.270', N'25000120', N'001-005-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 09:44:44.387', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'37', N'1209', N'自动完成', N'1900-01-01 00:00:00.000', N'2', N'2025-04-18 15:43:02.530', N'25000126', N'001-005-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 09:46:23.233', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'38', N'1204', N'自动完成', N'1900-01-01 00:00:00.000', N'1', N'2025-04-18 10:23:03.623', N'25000180', N'001-005-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 09:49:32.013', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'39', N'1210', N'自动完成', N'1900-01-01 00:00:00.000', N'1', N'2025-04-18 16:31:37.593', N'25000480', N'002-006-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 09:57:13.197', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'40', N'1212', N'自动完成', N'1900-01-01 00:00:00.000', N'1', N'2025-04-18 17:20:42.683', N'25000134', N'002-007-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 10:03:30.273', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'41', N'1206', N'自动完成', N'1900-01-01 00:00:00.000', N'1', N'2025-04-18 13:39:00.790', N'25000360', N'001-007-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 10:05:35.350', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'42', N'1205', N'自动完成', N'1900-01-01 00:00:00.000', N'1', N'2025-04-18 10:40:41.163', N'25000171', N'001-006-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 10:46:08.093', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'43', N'1211', N'自动完成', N'1900-01-01 00:00:00.000', N'1', N'2025-04-18 16:39:00.463', N'25000123', N'001-008-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 11:08:42.547', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'44', N'1227', N'自动完成', N'1900-01-01 00:00:00.000', N'1', N'2025-04-20 16:15:36.870', N'25000070', N'003-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 11:17:43.850', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'45', N'1242', N'自动完成', N'1900-01-01 00:00:00.000', N'8', N'2025-04-21 11:46:01.407', N'25000370', N'001-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 11:51:08.843', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'46', N'1240', N'自动完成', N'1900-01-01 00:00:00.000', N'7', N'2025-04-21 11:40:49.523', N'25000136', N'001-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 13:41:45.160', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'47', N'1239', N'自动完成', N'1900-01-01 00:00:00.000', N'6', N'2025-04-21 11:36:53.793', N'25000263', N'001-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 13:44:00.723', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'48', N'1233', N'自动完成', N'1900-01-01 00:00:00.000', N'6', N'2025-04-21 11:34:45.120', N'25000002', N'001-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 13:46:18.827', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'1231', N'自动完成', N'1900-01-01 00:00:00.000', N'5', N'2025-04-21 11:27:25.883', N'25000411', N'001-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 13:48:39.673', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'1243', N'自动完成', N'1900-01-01 00:00:00.000', N'1', N'2025-04-21 13:49:50.163', N'25000123', N'002-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 13:59:10.963', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'51', N'1230', N'自动完成', N'1900-01-01 00:00:00.000', N'3', N'2025-04-20 17:42:08.413', N'25000031', N'001-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 14:54:09.323', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'52', N'1229', N'自动完成', N'1900-01-01 00:00:00.000', N'3', N'2025-04-20 17:37:17.510', N'25000250', N'001-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 14:56:17.353', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'53', N'1228', N'自动完成', N'1900-01-01 00:00:00.000', N'2', N'2025-04-20 17:19:17.590', N'25000245', N'001-002-001', N'0', N'8', NULL, N'PDA1', N'2025-04-21 14:59:02.487', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'54', N'1257', N'自动完成', N'1900-01-01 00:00:00.000', N'13', N'2025-04-21 17:17:02.533', N'25000490', N'001-003-001', N'0', N'8', NULL, N'PDA1', N'2025-04-23 14:06:14.197', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'55', N'1256', N'自动完成', N'1900-01-01 00:00:00.000', N'12', N'2025-04-21 17:09:59.457', N'25000276', N'001-003-001', N'0', N'8', NULL, N'PDA1', N'2025-04-23 14:08:11.090', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'56', N'1255', N'自动完成', N'1900-01-01 00:00:00.000', N'11', N'2025-04-21 16:57:14.337', N'25000050', N'001-003-001', N'0', N'8', NULL, N'PDA1', N'2025-04-23 14:10:12.183', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'57', N'1254', N'自动完成', N'1900-01-01 00:00:00.000', N'10', N'2025-04-21 15:10:19.670', N'25000002', N'001-003-001', N'0', N'8', NULL, N'PDA1', N'2025-04-23 14:12:17.067', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'58', N'1253', N'自动完成', N'1900-01-01 00:00:00.000', N'9', N'2025-04-21 15:03:49.383', N'25000430', N'001-003-001', N'0', N'8', NULL, N'PDA1', N'2025-04-23 14:23:53.053', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'59', N'1252', N'自动完成', N'1900-01-01 00:00:00.000', N'8', N'2025-04-21 15:01:34.500', N'25000493', N'001-003-001', N'0', N'8', NULL, N'PDA1', N'2025-04-23 14:32:16.983', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'60', N'1251', N'自动完成', N'1900-01-01 00:00:00.000', N'7', N'2025-04-21 14:52:54.803', N'25000231', N'001-003-001', N'0', N'8', NULL, N'PDA1', N'2025-04-23 14:37:10.980', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'61', N'1250', N'自动完成', N'1900-01-01 00:00:00.000', N'6', N'2025-04-21 14:50:33.863', N'25000134', N'001-003-001', N'0', N'8', NULL, N'PDA1', N'2025-04-23 14:43:10.977', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'62', N'1249', N'自动完成', N'1900-01-01 00:00:00.000', N'5', N'2025-04-21 14:48:02.687', N'25000360', N'001-003-001', N'0', N'8', NULL, N'PDA1', N'2025-04-23 14:48:07.000', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'63', N'1248', N'自动完成', N'1900-01-01 00:00:00.000', N'4', N'2025-04-21 14:26:13.937', N'25000480', N'001-003-001', N'0', N'8', NULL, N'PDA1', N'2025-04-23 14:52:54.020', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'64', N'1246', N'自动完成', N'1900-01-01 00:00:00.000', N'3', N'2025-04-21 14:23:30.060', N'25000126', N'001-003-001', N'0', N'8', NULL, N'PDA1', N'2025-04-23 14:57:36.980', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'65', N'1245', N'自动完成', N'1900-01-01 00:00:00.000', N'2', N'2025-04-21 14:09:29.000', N'25000370', N'001-003-001', N'0', N'8', NULL, N'PDA1', N'2025-04-23 15:02:21.003', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfo_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [SerialNumber], [InDate], [PalletCode], [LocationCode], [IsFull], [StockStatus], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'66', N'1244', N'自动完成', N'1900-01-01 00:00:00.000', N'1', N'2025-04-21 14:02:02.300', N'25000070', N'001-003-001', N'0', N'8', NULL, N'PDA1', N'2025-04-23 15:23:37.980', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_StockInfo_Hty] OFF GO -- ---------------------------- -- Table structure for Dt_StockInfoDetail -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_StockInfoDetail]') AND type IN ('U')) DROP TABLE [dbo].[Dt_StockInfoDetail] GO CREATE TABLE [dbo].[Dt_StockInfoDetail] ( [Id] int IDENTITY(1,1) NOT NULL, [StockId] int NOT NULL, [MaterielCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [MaterielName] varchar(200) COLLATE Chinese_PRC_CI_AS NOT NULL, [OrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [BatchNo] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [SerialNumber] varchar(100) COLLATE Chinese_PRC_CI_AS NOT NULL, [StockQuantity] decimal(10,2) NOT NULL, [OutboundQuantity] decimal(10,2) DEFAULT '0' NOT NULL, [Status] int NOT NULL, [Remark] varchar(255) 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_StockInfoDetail] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'库存信息主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'StockId' GO EXEC sp_addextendedproperty 'MS_Description', N'物料编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'MaterielCode' GO EXEC sp_addextendedproperty 'MS_Description', N'物料名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'MaterielName' GO EXEC sp_addextendedproperty 'MS_Description', N'单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'批次号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'BatchNo' GO EXEC sp_addextendedproperty 'MS_Description', N'序列号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'SerialNumber' GO EXEC sp_addextendedproperty 'MS_Description', N'库存数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'StockQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'出库数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'OutboundQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'库存明细状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'Status' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'库存信息明细', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail' GO -- ---------------------------- -- Records of Dt_StockInfoDetail -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_StockInfoDetail] ON GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1342', N'1330', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:42:49.150', NULL, N'2025-04-24 15:01:53.940') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1343', N'1331', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:45:29.837', NULL, N'2025-04-24 15:02:51.543') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1344', N'1332', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:45:35.913', NULL, N'2025-04-24 15:02:55.710') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1345', N'1333', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:45:38.453', NULL, N'2025-04-24 15:02:59.247') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1346', N'1334', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:45:40.550', NULL, N'2025-04-24 15:03:02.390') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1347', N'1335', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:45:43.250', NULL, N'2025-04-24 15:03:05.820') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1348', N'1336', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:45:46.247', NULL, N'2025-04-24 15:03:09.133') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1349', N'1337', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:45:48.430', NULL, N'2025-04-24 15:03:11.763') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1350', N'1338', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:45:51.430', NULL, N'2025-04-24 15:03:15.667') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1351', N'1339', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:45:55.110', NULL, N'2025-04-24 15:04:02.477') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1352', N'1340', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:45:57.413', NULL, N'2025-04-24 15:04:05.003') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1353', N'1341', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:46:02.887', NULL, N'2025-04-24 15:04:07.890') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1354', N'1342', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:46:39.220', NULL, N'2025-04-24 15:05:07.640') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1355', N'1343', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:46:44.927', NULL, N'2025-04-24 15:05:12.310') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1356', N'1344', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:46:48.570', NULL, N'2025-04-24 15:05:15.730') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1357', N'1345', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:46:51.093', NULL, N'2025-04-24 15:05:18.860') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1358', N'1346', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:46:55.360', NULL, N'2025-04-24 15:05:20.930') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1359', N'1347', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:46:57.987', NULL, N'2025-04-24 15:05:23.697') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1360', N'1348', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:47:01.283', NULL, N'2025-04-24 15:05:32.457') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1361', N'1349', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:47:05.193', NULL, N'2025-04-24 15:05:35.450') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1362', N'1350', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:47:07.493', NULL, N'2025-04-24 15:05:37.847') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1363', N'1351', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:47:09.920', NULL, N'2025-04-24 15:05:40.610') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1364', N'1352', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:47:13.240', NULL, N'2025-04-24 15:05:44.940') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1365', N'1353', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 10:47:15.797', NULL, N'2025-04-24 15:05:50.040') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1366', N'1354', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T3', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 11:02:58.290', NULL, N'2025-04-24 15:08:57.997') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1367', N'1355', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T3', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 11:03:02.023', NULL, N'2025-04-24 15:09:24.253') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1368', N'1356', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T3', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 11:03:04.410', NULL, N'2025-04-24 15:09:26.750') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1369', N'1357', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T3', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 11:03:08.003', NULL, N'2025-04-24 15:09:29.363') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1370', N'1358', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T3', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 11:03:11.483', NULL, N'2025-04-24 15:09:32.210') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1371', N'1359', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T3', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 11:03:14.620', NULL, N'2025-04-24 15:09:34.357') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1372', N'1360', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T3', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 11:03:17.350', NULL, N'2025-04-24 15:09:36.913') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1373', N'1361', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T3', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 11:03:20.620', NULL, N'2025-04-24 15:10:44.290') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1374', N'1362', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T3', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 11:03:23.103', NULL, N'2025-04-24 15:10:47.357') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1375', N'1363', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T3', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 11:03:25.637', NULL, N'2025-04-24 15:11:01.207') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1376', N'1364', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T3', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 11:03:28.380', NULL, N'2025-04-24 15:11:05.500') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1377', N'1365', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250422', N'1T3', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 11:03:31.493', NULL, N'2025-04-24 15:16:16.577') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1378', N'1366', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250424', N'1T', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:45:06.950', NULL, N'2025-04-24 16:06:10.607') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1379', N'1367', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250424', N'1T', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:45:15.723', NULL, N'2025-04-24 16:06:12.970') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1380', N'1368', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250424', N'1T', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:45:19.110', NULL, N'2025-04-24 16:06:15.373') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1381', N'1369', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250424', N'1T', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:45:24.067', NULL, N'2025-04-24 16:06:18.203') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1382', N'1370', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250424', N'1T', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:45:26.353', NULL, N'2025-04-24 16:06:20.870') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1383', N'1371', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250424', N'1T', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:45:29.307', NULL, N'2025-04-24 16:06:23.220') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1384', N'1372', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250424', N'1T', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:45:32.337', NULL, N'2025-04-24 16:06:26.693') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1385', N'1373', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250424', N'1T', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:45:35.553', NULL, N'2025-04-24 16:06:29.003') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1386', N'1374', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250424', N'1T', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:45:38.193', NULL, N'2025-04-24 16:06:33.673') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1387', N'1375', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250424', N'1T', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:45:40.653', NULL, N'2025-04-24 16:06:36.413') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1388', N'1376', N'2', N'2', N'250424', N'2T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:46:51.847', NULL, N'2025-04-24 16:06:38.953') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1389', N'1377', N'2', N'2', N'250424', N'2T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:46:57.193', NULL, N'2025-04-24 16:06:41.223') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1390', N'1378', N'2', N'2', N'250424', N'2T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:01.170', NULL, N'2025-04-24 16:06:43.797') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1391', N'1379', N'2', N'2', N'250424', N'2T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:06.323', NULL, N'2025-04-24 16:06:46.327') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1392', N'1380', N'2', N'2', N'250424', N'2T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:08.843', NULL, N'2025-04-24 16:06:48.740') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1393', N'1381', N'2', N'2', N'250424', N'2T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:12.467', NULL, N'2025-04-24 16:06:51.690') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1394', N'1382', N'2', N'2', N'250424', N'2T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:15.870', NULL, N'2025-04-24 16:06:54.070') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1395', N'1383', N'2', N'2', N'250424', N'2T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:18.313', NULL, N'2025-04-24 16:06:59.843') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1396', N'1384', N'2', N'2', N'250424', N'2T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:20.913', NULL, N'2025-04-24 16:07:04.550') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1397', N'1385', N'2', N'2', N'250424', N'2T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:23.463', NULL, N'2025-04-24 16:07:12.327') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1398', N'1386', N'2', N'2', N'250424', N'2T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:26.427', NULL, N'2025-04-24 16:07:14.760') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1399', N'1387', N'2', N'2', N'250424', N'2T1', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:29.423', NULL, N'2025-04-24 16:07:17.230') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1400', N'1388', N'2', N'2', N'250424', N'2T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:41.223', NULL, N'2025-04-24 16:08:10.287') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1401', N'1389', N'2', N'2', N'250424', N'2T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:47.853', NULL, N'2025-04-24 16:08:20.090') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1402', N'1390', N'2', N'2', N'250424', N'2T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:50.470', NULL, N'2025-04-24 16:08:23.843') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1403', N'1391', N'2', N'2', N'250424', N'2T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:53.963', NULL, N'2025-04-24 16:08:27.413') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1404', N'1392', N'2', N'2', N'250424', N'2T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:47:56.573', NULL, N'2025-04-24 16:08:30.033') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1405', N'1393', N'2', N'2', N'250424', N'2T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:48:00.830', NULL, N'2025-04-24 16:08:33.017') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1406', N'1394', N'2', N'2', N'250424', N'2T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:48:02.887', NULL, N'2025-04-24 16:08:38.423') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1407', N'1395', N'2', N'2', N'250424', N'2T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:48:06.047', NULL, N'2025-04-24 16:08:41.270') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1408', N'1396', N'2', N'2', N'250424', N'2T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:48:09.057', NULL, N'2025-04-24 16:08:43.840') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1409', N'1397', N'2', N'2', N'250424', N'2T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:48:12.230', NULL, N'2025-04-24 16:08:46.210') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1410', N'1398', N'2', N'2', N'250424', N'2T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:48:17.080', NULL, N'2025-04-24 16:09:05.677') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1411', N'1399', N'2', N'2', N'250424', N'2T2', N'', N'1.00', N'.00', N'5', NULL, N'System', N'2025-04-24 14:48:23.990', NULL, N'2025-04-24 16:10:46.973') GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1412', N'1400', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250423', N'3T1', N'', N'1.00', N'.00', N'1', NULL, N'System', N'2025-04-25 09:47:13.580', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail] ([Id], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1413', N'1401', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'250423', N'3T1', N'', N'1.00', N'.00', N'1', NULL, N'System', N'2025-04-25 10:02:01.100', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_StockInfoDetail] OFF GO -- ---------------------------- -- Table structure for Dt_StockInfoDetail_Hty -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_StockInfoDetail_Hty]') AND type IN ('U')) DROP TABLE [dbo].[Dt_StockInfoDetail_Hty] GO CREATE TABLE [dbo].[Dt_StockInfoDetail_Hty] ( [Id] int IDENTITY(1,1) NOT NULL, [SourceId] int DEFAULT '0' NOT NULL, [OperateType] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [InsertTime] datetime NOT NULL, [StockId] int NOT NULL, [MaterielCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [MaterielName] varchar(200) COLLATE Chinese_PRC_CI_AS NOT NULL, [OrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [BatchNo] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [SerialNumber] varchar(100) COLLATE Chinese_PRC_CI_AS NOT NULL, [StockQuantity] decimal(10,2) NOT NULL, [OutboundQuantity] decimal(10,2) DEFAULT '0' NOT NULL, [Status] int NOT NULL, [Remark] varchar(255) 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_StockInfoDetail_Hty] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'原表主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'SourceId' GO EXEC sp_addextendedproperty 'MS_Description', N'操作类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'OperateType' GO EXEC sp_addextendedproperty 'MS_Description', N'移入历史时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'InsertTime' GO EXEC sp_addextendedproperty 'MS_Description', N'库存信息主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'StockId' GO EXEC sp_addextendedproperty 'MS_Description', N'物料编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'MaterielCode' GO EXEC sp_addextendedproperty 'MS_Description', N'物料名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'MaterielName' GO EXEC sp_addextendedproperty 'MS_Description', N'单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'批次号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'BatchNo' GO EXEC sp_addextendedproperty 'MS_Description', N'序列号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'SerialNumber' GO EXEC sp_addextendedproperty 'MS_Description', N'库存数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'StockQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'出库数量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'OutboundQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'库存明细状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'Status' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'库存信息明细历史', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockInfoDetail_Hty' GO -- ---------------------------- -- Records of Dt_StockInfoDetail_Hty -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_StockInfoDetail_Hty] ON GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'1236', N'自动完成', N'1900-01-01 00:00:00.000', N'1224', N'Empty000', N'空托盘', N'250420', N'250420E', N'', N'1.00', N'.00', N'5', NULL, N'PDA1', N'2025-04-20 11:42:23.147', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'1201', N'自动完成', N'1900-01-01 00:00:00.000', N'1189', N'Empty000', N'空托盘', N'250416', N'250416E', N'', N'1.00', N'.00', N'5', NULL, N'PDA1', N'2025-04-20 13:33:32.010', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'1200', N'自动完成', N'1900-01-01 00:00:00.000', N'1188', N'Empty000', N'空托盘', N'250416', N'250416E', N'', N'1.00', N'.00', N'5', NULL, N'PDA1', N'2025-04-20 14:00:33.197', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'1235', N'自动完成', N'1900-01-01 00:00:00.000', N'1223', N'Empty000', N'空托盘', N'250419', N'250419E', N'', N'1.00', N'.00', N'5', NULL, N'PDA1', N'2025-04-20 14:13:16.090', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'5', N'1199', N'自动完成', N'1900-01-01 00:00:00.000', N'1187', N'Empty000', N'空托盘', N'250416', N'250416E', N'', N'1.00', N'.00', N'5', NULL, N'PDA1', N'2025-04-20 14:23:23.590', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'6', N'1198', N'自动完成', N'1900-01-01 00:00:00.000', N'1186', N'Empty000', N'空托盘', N'250416', N'250416E', N'', N'1.00', N'.00', N'5', NULL, N'PDA1', N'2025-04-20 14:36:45.973', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7', N'1196', N'自动完成', N'1900-01-01 00:00:00.000', N'1184', N'Empty000', N'空托盘', N'250416', N'250416E', N'', N'1.00', N'.00', N'5', NULL, N'PDA1', N'2025-04-20 14:44:45.423', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'8', N'1194', N'自动完成', N'1900-01-01 00:00:00.000', N'1182', N'Empty000', N'空托盘', N'250415', N'250415E', N'', N'1.00', N'.00', N'5', NULL, N'admin', N'2025-04-20 14:46:14.623', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'9', N'1193', N'自动完成', N'1900-01-01 00:00:00.000', N'1181', N'Empty000', N'空托盘', N'250415', N'250415E', N'', N'1.00', N'.00', N'5', NULL, N'admin', N'2025-04-20 14:59:16.500', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'10', N'1197', N'自动完成', N'1900-01-01 00:00:00.000', N'1185', N'Empty000', N'空托盘', N'250416', N'250416E', N'', N'1.00', N'.00', N'5', NULL, N'PDA1', N'2025-04-20 15:00:43.337', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11', N'1192', N'自动完成', N'1900-01-01 00:00:00.000', N'1180', N'Empty000', N'空托盘', N'250415', N'250415E', N'', N'1.00', N'.00', N'5', NULL, N'admin', N'2025-04-20 15:04:05.313', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'12', N'1233', N'自动完成', N'1900-01-01 00:00:00.000', N'1221', N'Empty000', N'空托盘', N'250419', N'250419E', N'', N'1.00', N'.00', N'5', NULL, N'PDA1', N'2025-04-20 15:25:19.437', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'1232', N'自动完成', N'1900-01-01 00:00:00.000', N'1220', N'Empty000', N'空托盘', N'250419', N'250419E', N'', N'1.00', N'.00', N'5', NULL, N'PDA1', N'2025-04-20 15:28:02.720', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'14', N'1231', N'自动完成', N'1900-01-01 00:00:00.000', N'1219', N'Empty000', N'空托盘', N'250419', N'250419E', N'', N'1.00', N'.00', N'5', NULL, N'PDA1', N'2025-04-20 15:31:01.693', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'15', N'1230', N'自动完成', N'1900-01-01 00:00:00.000', N'1218', N'Empty000', N'空托盘', N'250419', N'250419E', N'', N'1.00', N'.00', N'5', NULL, N'PDA1', N'2025-04-20 15:33:20.683', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'16', N'1229', N'自动完成', N'1900-01-01 00:00:00.000', N'1217', N'Empty000', N'空托盘', N'250419', N'250419E', N'', N'1.00', N'.00', N'5', NULL, N'PDA1', N'2025-04-20 15:36:00.343', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'17', N'1228', N'自动完成', N'1900-01-01 00:00:00.000', N'1216', N'Empty000', N'空托盘', N'250419', N'250419E', N'', N'1.00', N'.00', N'5', NULL, N'PDA1', N'2025-04-20 15:37:38.957', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'18', N'1227', N'自动完成', N'1900-01-01 00:00:00.000', N'1215', N'Empty000', N'空托盘', N'250419', N'250419E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-20 15:52:33.000', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'19', N'1234', N'自动完成', N'1900-01-01 00:00:00.000', N'1222', N'Empty000', N'空托盘', N'250419', N'250419E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-20 16:22:48.037', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'20', N'1225', N'自动完成', N'1900-01-01 00:00:00.000', N'1213', N'Empty000', N'空托盘', N'250418', N'250418E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-20 16:24:33.967', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'21', N'1220', N'自动完成', N'1900-01-01 00:00:00.000', N'1208', N'Empty000', N'空托盘', N'250418', N'250418E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-20 16:26:23.933', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'22', N'1219', N'自动完成', N'1900-01-01 00:00:00.000', N'1207', N'Empty000', N'空托盘', N'250418', N'250418E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-20 16:37:45.453', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'23', N'1215', N'自动完成', N'1900-01-01 00:00:00.000', N'1203', N'Empty000', N'空托盘', N'250417', N'250417E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-20 16:45:41.473', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'24', N'1214', N'自动完成', N'1900-01-01 00:00:00.000', N'1202', N'Empty000', N'空托盘', N'250417', N'250417E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-20 16:47:40.430', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'25', N'1213', N'自动完成', N'1900-01-01 00:00:00.000', N'1201', N'Empty000', N'空托盘', N'250417', N'250417E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-20 16:49:44.413', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'26', N'1212', N'自动完成', N'1900-01-01 00:00:00.000', N'1200', N'Empty000', N'空托盘', N'250417', N'250417E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-20 17:12:08.110', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'27', N'1211', N'自动完成', N'1900-01-01 00:00:00.000', N'1199', N'Empty000', N'空托盘', N'250417', N'250417E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-20 17:14:18.103', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'28', N'1210', N'自动完成', N'1900-01-01 00:00:00.000', N'1198', N'Empty000', N'空托盘', N'250417', N'250417E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-20 17:20:35.127', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'29', N'1209', N'自动完成', N'1900-01-01 00:00:00.000', N'1197', N'Empty000', N'空托盘', N'250417', N'250417E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-20 17:38:37.020', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'30', N'1208', N'自动完成', N'1900-01-01 00:00:00.000', N'1196', N'Empty000', N'空托盘', N'250417', N'250417E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 09:16:10.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'31', N'1207', N'自动完成', N'1900-01-01 00:00:00.000', N'1195', N'Empty000', N'空托盘', N'250417', N'250417E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 09:18:21.153', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'32', N'1206', N'自动完成', N'1900-01-01 00:00:00.000', N'1194', N'Empty000', N'空托盘', N'250417', N'250417E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 09:31:04.820', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'33', N'1205', N'自动完成', N'1900-01-01 00:00:00.000', N'1193', N'Empty000', N'空托盘', N'250416', N'250416E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 09:36:36.407', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'34', N'1204', N'自动完成', N'1900-01-01 00:00:00.000', N'1192', N'Empty000', N'空托盘', N'250416', N'250416E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 09:39:20.253', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'35', N'1238', N'自动完成', N'1900-01-01 00:00:00.000', N'1226', N'Empty000', N'空托盘', N'250420', N'250420E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 09:42:31.717', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'36', N'1237', N'自动完成', N'1900-01-01 00:00:00.000', N'1225', N'Empty000', N'空托盘', N'250420', N'250420E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 09:44:44.390', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'37', N'1221', N'自动完成', N'1900-01-01 00:00:00.000', N'1209', N'Empty000', N'空托盘', N'250418', N'250418E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 09:46:23.237', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'38', N'1216', N'自动完成', N'1900-01-01 00:00:00.000', N'1204', N'Empty000', N'空托盘', N'250418', N'250418E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 09:49:32.020', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'39', N'1222', N'自动完成', N'1900-01-01 00:00:00.000', N'1210', N'Empty000', N'空托盘', N'250418', N'250418E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 09:57:13.203', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'40', N'1224', N'自动完成', N'1900-01-01 00:00:00.000', N'1212', N'Empty000', N'空托盘', N'250418', N'250418E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 10:03:30.277', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'41', N'1218', N'自动完成', N'1900-01-01 00:00:00.000', N'1206', N'Empty000', N'空托盘', N'250418', N'250418E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 10:05:35.357', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'42', N'1217', N'自动完成', N'1900-01-01 00:00:00.000', N'1205', N'Empty000', N'空托盘', N'250418', N'250418E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 10:46:08.100', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'43', N'1223', N'自动完成', N'1900-01-01 00:00:00.000', N'1211', N'Empty000', N'空托盘', N'250418', N'250418E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 11:08:42.550', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'44', N'1239', N'自动完成', N'1900-01-01 00:00:00.000', N'1227', N'Empty000', N'空托盘', N'250420', N'250420E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 11:17:43.853', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'45', N'1254', N'自动完成', N'1900-01-01 00:00:00.000', N'1242', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 11:51:08.850', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'46', N'1252', N'自动完成', N'1900-01-01 00:00:00.000', N'1240', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 13:41:45.170', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'47', N'1251', N'自动完成', N'1900-01-01 00:00:00.000', N'1239', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 13:44:00.727', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'48', N'1245', N'自动完成', N'1900-01-01 00:00:00.000', N'1233', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 13:46:18.830', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'1243', N'自动完成', N'1900-01-01 00:00:00.000', N'1231', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 13:48:39.677', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'1255', N'自动完成', N'1900-01-01 00:00:00.000', N'1243', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 13:59:10.983', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'51', N'1242', N'自动完成', N'1900-01-01 00:00:00.000', N'1230', N'Empty000', N'空托盘', N'250420', N'250420E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 14:54:09.333', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'52', N'1241', N'自动完成', N'1900-01-01 00:00:00.000', N'1229', N'Empty000', N'空托盘', N'250420', N'250420E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 14:56:17.357', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'53', N'1240', N'自动完成', N'1900-01-01 00:00:00.000', N'1228', N'Empty000', N'空托盘', N'250420', N'250420E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-21 14:59:02.490', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'54', N'1269', N'自动完成', N'1900-01-01 00:00:00.000', N'1257', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-23 14:06:14.237', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'55', N'1268', N'自动完成', N'1900-01-01 00:00:00.000', N'1256', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-23 14:08:11.093', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'56', N'1267', N'自动完成', N'1900-01-01 00:00:00.000', N'1255', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-23 14:10:12.187', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'57', N'1266', N'自动完成', N'1900-01-01 00:00:00.000', N'1254', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-23 14:12:17.070', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'58', N'1265', N'自动完成', N'1900-01-01 00:00:00.000', N'1253', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-23 14:23:53.057', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'59', N'1264', N'自动完成', N'1900-01-01 00:00:00.000', N'1252', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-23 14:32:16.987', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'60', N'1263', N'自动完成', N'1900-01-01 00:00:00.000', N'1251', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-23 14:37:10.983', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'61', N'1262', N'自动完成', N'1900-01-01 00:00:00.000', N'1250', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-23 14:43:10.980', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'62', N'1261', N'自动完成', N'1900-01-01 00:00:00.000', N'1249', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-23 14:48:07.003', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'63', N'1260', N'自动完成', N'1900-01-01 00:00:00.000', N'1248', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-23 14:52:54.027', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'64', N'1258', N'自动完成', N'1900-01-01 00:00:00.000', N'1246', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-23 14:57:36.987', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'65', N'1257', N'自动完成', N'1900-01-01 00:00:00.000', N'1245', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-23 15:02:21.007', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockInfoDetail_Hty] ([Id], [SourceId], [OperateType], [InsertTime], [StockId], [MaterielCode], [MaterielName], [OrderNo], [BatchNo], [SerialNumber], [StockQuantity], [OutboundQuantity], [Status], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'66', N'1256', N'自动完成', N'1900-01-01 00:00:00.000', N'1244', N'Empty000', N'空托盘', N'250421', N'250421E', N'', N'1.00', N'.00', N'8', NULL, N'PDA1', N'2025-04-23 15:23:37.983', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_StockInfoDetail_Hty] OFF GO -- ---------------------------- -- Table structure for Dt_StockQuantityChangeRecord -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_StockQuantityChangeRecord]') AND type IN ('U')) DROP TABLE [dbo].[Dt_StockQuantityChangeRecord] GO CREATE TABLE [dbo].[Dt_StockQuantityChangeRecord] ( [Id] int IDENTITY(1,1) NOT NULL, [StockDetailId] int NOT NULL, [PalleCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [MaterielCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [MaterielName] varchar(200) COLLATE Chinese_PRC_CI_AS NOT NULL, [BatchNo] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [SerilNumber] varchar(100) COLLATE Chinese_PRC_CI_AS NOT NULL, [OrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [TaskNum] int NULL, [ChangeType] int NOT NULL, [ChangeQuantity] decimal(10,2) NOT NULL, [BeforeQuantity] decimal(10,2) DEFAULT '0' NOT NULL, [AfterQuantity] decimal(10,2) DEFAULT '0' NOT NULL, [Remark] varchar(255) 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_StockQuantityChangeRecord] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'库存明细主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'StockDetailId' GO EXEC sp_addextendedproperty 'MS_Description', N'托盘编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'PalleCode' GO EXEC sp_addextendedproperty 'MS_Description', N'物料编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'MaterielCode' GO EXEC sp_addextendedproperty 'MS_Description', N'物料名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'MaterielName' GO EXEC sp_addextendedproperty 'MS_Description', N'批次号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'BatchNo' GO EXEC sp_addextendedproperty 'MS_Description', N'序列号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'SerilNumber' GO EXEC sp_addextendedproperty 'MS_Description', N'单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'任务号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'TaskNum' GO EXEC sp_addextendedproperty 'MS_Description', N'变动类型(出库、入库、手动调整...)', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'ChangeType' GO EXEC sp_addextendedproperty 'MS_Description', N'变动数量(正数表示增加,负数表示减少)', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'ChangeQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'变动前库存量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'BeforeQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'变动后库存量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'AfterQuantity' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'库存变动信息记录', 'SCHEMA', N'dbo', 'TABLE', N'Dt_StockQuantityChangeRecord' GO -- ---------------------------- -- Records of Dt_StockQuantityChangeRecord -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_StockQuantityChangeRecord] ON GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'15', N'12345', N'3', N'3', N'30', N'241104145912 | 3 | 30 | 10', N'241104145912', NULL, N'0', N'10.00', N'.00', N'10.00', NULL, N'System', N'2024-11-04 15:01:21.440', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'32', N'34', N'123', N'1', N'1', N'10', N'241104164650 | 1 | 10 | 10', N'241104164650', NULL, N'0', N'10.00', N'.00', N'10.00', NULL, N'System', N'2024-11-04 22:37:39.183', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'33', N'35', N'123', N'1', N'1', N'1', N'241104230820 | 1 | 1 | 1', N'241104230820', NULL, N'0', N'1.00', N'10.00', N'11.00', NULL, N'System', N'2024-11-04 23:28:28.287', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'34', N'36', N'12345', N'3', N'3', N'30', N'241104164650 | 3 | 30 | 30', N'241104164650', NULL, N'0', N'30.00', N'.00', N'30.00', NULL, N'System', N'2024-11-05 10:04:55.953', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'35', N'37', N'123456', N'2', N'1', N'1', N'241104232159 | 2 | 1 | 1', N'241104232159', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2024-11-05 10:06:02.200', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'36', N'38', N'1001', N'1', N'1', N'1', N'241107153050 | 1 | 1 | 40', N'241107153050', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-07 15:46:39.293', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'37', N'39', N'1002', N'1', N'1', N'2', N'241107153050 | 1 | 2 | 40', N'241107153050', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-07 15:47:05.140', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'38', N'40', N'1003', N'1', N'1', N'3', N'241107153050 | 1 | 3 | 40', N'241107153050', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-07 15:47:13.883', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'39', N'41', N'1004', N'1', N'1', N'1', N'241108091715 | 1 | 1 | 1', N'241108091715', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2024-11-08 10:33:10.803', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'40', N'42', N'1005', N'1', N'1', N'1', N'241108091715 | 1 | 1 | 1', N'241108091715', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2024-11-08 10:33:30.563', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'41', N'43', N'1006', N'2', N'1', N'2', N'241108091715 | 2 | 2 | 10', N'241108091715', NULL, N'0', N'10.00', N'.00', N'10.00', NULL, N'System', N'2024-11-08 10:34:20.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'42', N'44', N'1007', N'1', N'1', N'1', N'241108093353 | 1 | 1 | 10', N'241108093353', NULL, N'0', N'10.00', N'.00', N'10.00', NULL, N'System', N'2024-11-08 14:19:34.080', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'43', N'45', N'1008', N'1', N'1', N'1', N'241108094736 | 1 | 1 | 10', N'241108094736', NULL, N'0', N'10.00', N'.00', N'10.00', NULL, N'System', N'2024-11-08 14:23:11.243', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'44', N'46', N'1009', N'1', N'1', N'1', N'241108142213 | 1 | 1 | 10', N'241108142213', NULL, N'0', N'10.00', N'.00', N'10.00', NULL, N'System', N'2024-11-08 14:24:05.017', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'45', N'47', N'1010', N'2', N'1', N'2', N'241108142213 | 2 | 2 | 10', N'241108142213', NULL, N'0', N'10.00', N'.00', N'10.00', NULL, N'System', N'2024-11-08 14:24:56.343', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'46', N'49', N'1001', N'1', N'1', N'1', N'241114164802 | 1 | 1 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 16:50:12.273', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'47', N'50', N'1002', N'1', N'1', N'1', N'241114164802 | 1 | 1 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 16:50:27.477', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'48', N'51', N'1003', N'1', N'1', N'1', N'241114164802 | 1 | 1 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:12:44.713', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'52', N'1004', N'1', N'1', N'1', N'241114164802 | 1 | 1 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:12:55.757', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'53', N'1005', N'1', N'1', N'1', N'241114164802 | 1 | 1 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:13:09.643', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'51', N'54', N'1006', N'1', N'1', N'1', N'241114164802 | 1 | 1 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:13:19.647', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'52', N'55', N'1007', N'1', N'1', N'1', N'241114164802 | 1 | 1 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:13:27.980', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'53', N'56', N'1008', N'1', N'1', N'1', N'241114164802 | 1 | 1 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:13:38.953', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'54', N'57', N'1009', N'1', N'1', N'1', N'241114164802 | 1 | 1 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:13:47.387', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'55', N'58', N'1010', N'1', N'1', N'1', N'241114164802 | 1 | 1 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:13:54.807', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'56', N'59', N'1011', N'1', N'1', N'1', N'241114164802 | 1 | 1 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:14:01.740', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'57', N'60', N'1012', N'1', N'1', N'1', N'241114164802 | 1 | 1 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:14:08.530', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'58', N'61', N'1013', N'1', N'1', N'2', N'241114164802 | 1 | 2 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:14:27.930', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'59', N'62', N'1014', N'1', N'1', N'2', N'241114164802 | 1 | 2 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:14:36.163', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'60', N'63', N'1015', N'1', N'1', N'2', N'241114164802 | 1 | 2 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:14:44.120', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'61', N'64', N'1016', N'1', N'1', N'2', N'241114164802 | 1 | 2 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:14:51.800', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'62', N'65', N'1017', N'1', N'1', N'2', N'241114164802 | 1 | 2 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:14:58.887', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'63', N'66', N'1018', N'1', N'1', N'2', N'241114164802 | 1 | 2 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:15:06.200', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'64', N'67', N'1019', N'1', N'1', N'2', N'241114164802 | 1 | 2 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:15:12.970', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'65', N'68', N'1020', N'1', N'1', N'2', N'241114164802 | 1 | 2 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:15:21.283', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'66', N'69', N'1021', N'1', N'1', N'2', N'241114164802 | 1 | 2 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:15:29.323', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'67', N'70', N'1022', N'1', N'1', N'2', N'241114164802 | 1 | 2 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:15:35.933', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'68', N'71', N'1023', N'1', N'1', N'2', N'241114164802 | 1 | 2 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:15:42.703', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'69', N'72', N'1024', N'1', N'1', N'2', N'241114164802 | 1 | 2 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:15:49.293', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'70', N'73', N'1028', N'1', N'1', N'3', N'241114164802 | 1 | 3 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:16:18.093', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'72', N'75', N'1025', N'1', N'1', N'3', N'241114164802 | 1 | 3 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:18:22.660', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'73', N'76', N'1026', N'1', N'1', N'3', N'241114164802 | 1 | 3 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:18:33.810', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'74', N'77', N'1027', N'1', N'1', N'3', N'241114164802 | 1 | 3 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 17:18:50.707', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'75', N'78', N'1029', N'1', N'1', N'3', N'241114164802 | 1 | 3 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:06:06.150', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'76', N'79', N'1030', N'1', N'1', N'3', N'241114164802 | 1 | 3 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:06:16.407', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'77', N'80', N'1031', N'1', N'1', N'3', N'241114164802 | 1 | 3 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:06:25.443', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'78', N'81', N'1032', N'1', N'1', N'3', N'241114164802 | 1 | 3 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:06:32.420', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'79', N'82', N'1033', N'1', N'1', N'3', N'241114164802 | 1 | 3 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:06:39.907', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'80', N'83', N'1034', N'1', N'1', N'3', N'241114164802 | 1 | 3 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:06:47.163', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'81', N'84', N'1035', N'1', N'1', N'3', N'241114164802 | 1 | 3 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:06:54.897', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'82', N'85', N'1036', N'1', N'1', N'3', N'241114164802 | 1 | 3 | 40', N'241114164802', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:07:03.510', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'83', N'86', N'1037', N'2', N'2', N'1', N'241114181114 | 2 | 1 | 40', N'241114181114', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:14:32.510', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'84', N'87', N'1038', N'2', N'2', N'1', N'241114181114 | 2 | 1 | 40', N'241114181114', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:14:45.127', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'85', N'88', N'1039', N'2', N'2', N'1', N'241114181114 | 2 | 1 | 40', N'241114181114', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:14:51.560', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'86', N'89', N'1040', N'2', N'2', N'1', N'241114181114 | 2 | 1 | 40', N'241114181114', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:14:58.447', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'87', N'90', N'1041', N'2', N'2', N'1', N'241114181114 | 2 | 1 | 40', N'241114181114', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:15:05.123', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'88', N'91', N'1042', N'2', N'2', N'1', N'241114181114 | 2 | 1 | 40', N'241114181114', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:15:11.530', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'89', N'92', N'1043', N'2', N'2', N'1', N'241114181114 | 2 | 1 | 40', N'241114181114', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:15:18.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'90', N'93', N'1044', N'2', N'2', N'1', N'241114181114 | 2 | 1 | 40', N'241114181114', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:15:27.757', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'91', N'94', N'1045', N'2', N'2', N'1', N'241114181114 | 2 | 1 | 40', N'241114181114', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:15:34.570', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'92', N'95', N'1046', N'2', N'2', N'1', N'241114181114 | 2 | 1 | 40', N'241114181114', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-14 18:15:41.577', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'93', N'96', N'1047', N'2', N'2', N'1', N'241114181114 | 2 | 1 | 40', N'241114181114', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-15 09:33:15.020', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'94', N'97', N'1048', N'2', N'2', N'1', N'241114181114 | 2 | 1 | 40', N'241114181114', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-15 09:33:26.147', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'96', N'99', N'1048', N'2', N'2', N'1', N'241114181114 | 2 | 1 | 40', N'241114181114', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-15 09:35:57.930', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'97', N'100', N'1049', N'1', N'1', N'124', N'241119100559 | 1 | 124 | 10', N'241119100559', NULL, N'0', N'10.00', N'.00', N'10.00', NULL, N'System', N'2024-11-19 10:13:02.863', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1097', N'1100', N'1050', N'1', N'1', N'T1', N'241121093847 | 1 | T1 | 40', N'241121093847', NULL, N'0', N'40.00', N'.00', N'40.00', NULL, N'System', N'2024-11-21 09:46:37.917', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1098', N'1101', N'A1001', N'3', N'3', N'20241212001T1', N'', N'20241212001', NULL, N'0', N'320.00', N'.00', N'320.00', NULL, N'System', N'2024-12-12 14:17:07.107', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1099', N'1102', N'A0216', N'1', N'1', N'20250113T2', N'', N'20250113', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-16 13:12:17.237', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1100', N'1103', N'25000002', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:25:22.923', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1101', N'1104', N'25000003', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:15.000', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1102', N'1105', N'25000003', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:15.053', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1103', N'1106', N'25000003', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:15.087', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1104', N'1107', N'25000005', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:15.900', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1105', N'1108', N'25000004', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:15.943', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1106', N'1109', N'25000006', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:16.020', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1107', N'1110', N'25000007', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:16.267', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1108', N'1111', N'25000009', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:16.327', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1109', N'1112', N'25000008', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:16.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1110', N'1113', N'25000010', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:16.497', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1111', N'1114', N'25000012', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:16.600', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1112', N'1115', N'25000011', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:16.643', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1113', N'1116', N'25000013', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:16.867', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1114', N'1117', N'25000015', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:17.037', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1115', N'1118', N'25000014', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:17.083', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1116', N'1119', N'25000016', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:17.160', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1117', N'1120', N'25000017', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:17.200', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1118', N'1121', N'25000018', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:17.283', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1119', N'1122', N'25000019', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:17.473', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1120', N'1123', N'25000021', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:17.527', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1121', N'1124', N'25000020', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:17.563', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1122', N'1125', N'25000022', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:17.743', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1123', N'1126', N'25000024', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:17.800', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1124', N'1127', N'25000023', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:17.847', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1125', N'1128', N'25000025', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:18.087', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1126', N'1129', N'25000026', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:18.230', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1127', N'1130', N'25000027', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:18.250', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1128', N'1131', N'25000028', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:18.293', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1129', N'1132', N'25000029', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:18.500', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1130', N'1133', N'25000030', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:18.543', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1131', N'1134', N'25000031', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:18.577', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1132', N'1135', N'25000032', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:18.747', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1133', N'1136', N'25000033', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:18.780', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1134', N'1137', N'25000034', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:18.830', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1135', N'1138', N'25000035', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:18.950', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1136', N'1139', N'25000037', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:19.013', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1137', N'1140', N'25000036', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:33:19.053', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1138', N'1141', N'25000001', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:41:06.350', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1139', N'1142', N'25000002', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:42:18.203', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1140', N'1143', N'25000002', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:42:18.260', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1141', N'1144', N'25000002', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:42:18.303', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1142', N'1145', N'25000003', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:46:09.060', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1143', N'1146', N'25000004', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:47:17.973', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1144', N'1147', N'25000005', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:47:45.473', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1145', N'1148', N'25000006', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:48:10.247', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1146', N'1149', N'25000007', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:48:31.160', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1147', N'1150', N'25000008', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:49:20.970', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1148', N'1151', N'25000009', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:49:43.863', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1149', N'1152', N'25000011', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:51:04.013', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1150', N'1153', N'25000010', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:51:04.033', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1151', N'1154', N'25000012', N'1', N'1', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:51:04.053', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1152', N'1155', N'25000013', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:57:13.383', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1153', N'1156', N'25000014', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:57:27.353', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1154', N'1157', N'25000015', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:57:37.480', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1155', N'1158', N'25000016', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:57:47.720', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1156', N'1159', N'25000017', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:57:54.903', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1157', N'1160', N'25000018', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:58:01.807', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1158', N'1161', N'25000019', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:58:08.987', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1159', N'1162', N'25000020', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:58:18.920', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1160', N'1163', N'25000021', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:58:26.840', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1161', N'1164', N'25000022', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:58:35.183', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1162', N'1165', N'25000023', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:59:29.920', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1163', N'1166', N'25000024', N'2', N'2', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 15:59:37.370', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1164', N'1167', N'25000025', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 16:02:11.420', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1165', N'1168', N'25000026', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 16:02:23.317', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1166', N'1169', N'25000027', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 16:02:26.713', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1167', N'1170', N'25000028', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 16:02:27.373', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1168', N'1171', N'25000029', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 16:02:27.967', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1169', N'1172', N'25000030', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 16:02:28.640', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1170', N'1173', N'25000031', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 16:02:29.470', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1171', N'1174', N'25000032', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 16:02:30.133', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1172', N'1175', N'25000033', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 16:02:30.853', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1173', N'1176', N'25000034', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 16:02:32.430', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1174', N'1177', N'25000035', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 16:02:33.167', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1175', N'1178', N'25000036', N'3', N'3', N'20250222T1', N'', N'20250222', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-02-22 16:02:34.167', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1176', N'1179', N'2', N'Empty000', N'空托盘', N'250313E', N'', N'250313', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-03-13 14:07:24.180', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1177', N'1180', N'25000001', N'Empty000', N'空托盘', N'250316E', N'', N'250316', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-03-16 09:34:18.713', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1178', N'1181', N'25000001', N'Empty000', N'空托盘', N'250317E', N'', N'250317', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-03-17 09:28:21.687', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1180', N'1183', N'25000001', N'Empty000', N'空托盘', N'250317E', N'', N'250317', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-03-17 13:04:06.763', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1181', N'1184', N'25000050', N'Empty000', N'空托盘', N'250317E', N'', N'250317', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-03-17 15:58:39.913', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1182', N'1185', N'25000050', N'Empty000', N'空托盘', N'250317E', N'', N'250317', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-03-17 17:48:14.127', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1184', N'1187', N'25000001', N'Empty000', N'空托盘', N'250319E', N'', N'250319', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-03-19 09:57:01.697', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1185', N'1188', N'25000001', N'Empty000', N'空托盘', N'250319E', N'', N'250319', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-03-19 10:16:03.713', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1186', N'1189', N'25000037', N'1', N'1', N'250325T1', N'', N'250325', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-03-25 10:54:29.357', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1189', N'1192', N'25000051', N'Empty000', N'空托盘', N'250415E', N'', N'250415', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'admin', N'2025-04-15 14:47:49.740', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1190', N'1193', N'25000052', N'Empty000', N'空托盘', N'250415E', N'', N'250415', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'admin', N'2025-04-15 14:53:21.723', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1191', N'1194', N'25000001', N'Empty000', N'空托盘', N'250415E', N'', N'250415', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'admin', N'2025-04-15 14:54:28.627', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1192', N'1195', N'25000241', N'Empty000', N'空托盘', N'250416E', N'', N'250416', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-16 10:29:25.683', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1193', N'1196', N'25000241', N'Empty000', N'空托盘', N'250416E', N'', N'250416', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-16 11:12:21.027', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1194', N'1197', N'25000050', N'Empty000', N'空托盘', N'250416E', N'', N'250416', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-16 12:01:58.220', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1195', N'1198', N'25000060', N'Empty000', N'空托盘', N'250416E', N'', N'250416', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-16 13:05:36.177', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1196', N'1199', N'25000152', N'Empty000', N'空托盘', N'250416E', N'', N'250416', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-16 13:24:46.543', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1197', N'1200', N'25000231', N'Empty000', N'空托盘', N'250416E', N'', N'250416', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-16 13:25:10.530', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1198', N'1201', N'25000245', N'Empty000', N'空托盘', N'250416E', N'', N'250416', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-16 13:25:35.217', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1199', N'1202', N'25000250', N'Empty000', N'空托盘', N'250416E', N'', N'250416', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-16 14:08:48.107', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1200', N'1203', N'25000601', N'Empty000', N'空托盘', N'250416E', N'', N'250416', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-16 14:22:33.923', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1201', N'1204', N'25000747', N'Empty000', N'空托盘', N'250416E', N'', N'250416', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-16 14:23:54.483', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1202', N'1205', N'25000165', N'Empty000', N'空托盘', N'250416E', N'', N'250416', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-16 17:02:35.667', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1203', N'1206', N'25000139', N'Empty000', N'空托盘', N'250417E', N'', N'250417', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-17 09:27:42.257', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1204', N'1207', N'25000046', N'Empty000', N'空托盘', N'250417E', N'', N'250417', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-17 09:28:13.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1205', N'1208', N'25000260', N'Empty000', N'空托盘', N'250417E', N'', N'250417', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-17 09:28:45.447', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1206', N'1209', N'25000273', N'Empty000', N'空托盘', N'250417E', N'', N'250417', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-17 10:00:51.413', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1207', N'1210', N'25000420', N'Empty000', N'空托盘', N'250417E', N'', N'250417', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-17 10:01:13.350', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1208', N'1211', N'25000220', N'Empty000', N'空托盘', N'250417E', N'', N'250417', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-17 13:03:45.077', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1209', N'1212', N'25000446', N'Empty000', N'空托盘', N'250417E', N'', N'250417', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-17 13:36:39.340', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1210', N'1213', N'25000370', N'Empty000', N'空托盘', N'250417E', N'', N'250417', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-17 13:45:08.937', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1211', N'1237', N'25000120', N'Empty000', N'空托盘', N'250420E', N'', N'250420', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-20 09:57:57.287', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1212', N'1239', N'25000070', N'Empty000', N'空托盘', N'250420E', N'', N'250420', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-20 15:35:05.387', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1213', N'1240', N'25000245', N'Empty000', N'空托盘', N'250420E', N'', N'250420', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-20 16:39:38.570', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1214', N'1241', N'25000250', N'Empty000', N'空托盘', N'250420E', N'', N'250420', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-20 16:40:04.590', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1215', N'1242', N'25000031', N'Empty000', N'空托盘', N'250420E', N'', N'250420', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-20 16:40:21.910', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1216', N'1243', N'25000411', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 10:09:02.310', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1218', N'1245', N'25000002', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 10:09:19.413', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1224', N'1251', N'25000263', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 10:43:25.657', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1225', N'1252', N'25000137', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 10:44:03.383', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1227', N'1254', N'25000367', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 10:44:29.803', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1228', N'1255', N'25000123', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 13:40:58.383', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1229', N'1256', N'25000070', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 13:41:05.737', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1230', N'1257', N'25000370', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 13:41:12.760', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1231', N'1258', N'2500012625000126', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 13:55:28.137', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1233', N'1260', N'25000480', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 13:57:34.810', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1234', N'1261', N'25000360', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 14:06:16.173', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1235', N'1262', N'25000134', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 14:23:44.797', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1236', N'1263', N'25000231', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 14:23:50.983', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1237', N'1264', N'25000493', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 14:49:53.647', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1238', N'1265', N'25000430', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 14:50:00.167', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1239', N'1266', N'25000002', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 14:50:06.380', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1240', N'1267', N'25000050', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 16:47:12.740', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1241', N'1268', N'25000276', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 16:47:21.877', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1242', N'1269', N'25000490', N'Empty000', N'空托盘', N'250421E', N'', N'250421', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'PDA1', N'2025-04-21 16:47:30.190', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1243', N'1270', N'25000411', N'1', N'1', N'1T', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-22 12:02:48.057', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1244', N'1342', N'25000001', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T1', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:42:49.183', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1245', N'1343', N'25000002', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T1', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:45:29.837', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1246', N'1344', N'25000003', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T1', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:45:35.913', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1247', N'1345', N'25000004', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T1', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:45:38.453', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1248', N'1346', N'25000005', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T1', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:45:40.553', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1249', N'1347', N'25000006', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T1', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:45:43.253', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1250', N'1348', N'25000007', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T1', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:45:46.250', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1251', N'1349', N'25000008', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T1', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:45:48.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1252', N'1350', N'25000009', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T1', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:45:51.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1253', N'1351', N'25000010', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T1', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:45:55.113', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1254', N'1352', N'25000011', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T1', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:45:57.413', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1255', N'1353', N'25000012', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T1', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:46:02.890', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1256', N'1354', N'25000013', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T2', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:46:39.227', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1257', N'1355', N'25000014', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T2', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:46:44.927', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1258', N'1356', N'25000015', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T2', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:46:48.573', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1259', N'1357', N'25000016', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T2', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:46:51.097', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1260', N'1358', N'25000017', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T2', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:46:55.363', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1261', N'1359', N'25000018', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T2', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:46:57.990', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1262', N'1360', N'25000019', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T2', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:47:01.287', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1263', N'1361', N'25000020', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T2', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:47:05.197', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1264', N'1362', N'25000021', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T2', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:47:07.497', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1265', N'1363', N'25000022', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T2', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:47:09.923', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1266', N'1364', N'25000023', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T2', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:47:13.243', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1267', N'1365', N'25000024', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T2', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 10:47:15.800', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1268', N'1366', N'25000025', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T3', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 11:02:58.293', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1269', N'1367', N'25000026', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T3', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 11:03:02.023', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1270', N'1368', N'25000027', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T3', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 11:03:04.413', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1271', N'1369', N'25000028', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T3', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 11:03:08.007', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1272', N'1370', N'25000029', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T3', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 11:03:11.487', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1273', N'1371', N'25000030', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T3', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 11:03:14.623', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1274', N'1372', N'25000031', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T3', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 11:03:17.353', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1275', N'1373', N'25000032', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T3', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 11:03:20.620', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1276', N'1374', N'25000033', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T3', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 11:03:23.107', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1277', N'1375', N'25000034', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T3', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 11:03:25.640', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1278', N'1376', N'25000035', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T3', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 11:03:28.383', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1279', N'1377', N'25000036', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T3', N'', N'250422', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 11:03:31.497', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1280', N'1378', N'25000037', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:45:06.960', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1281', N'1379', N'25000038', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:45:15.723', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1282', N'1380', N'25000039', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:45:19.110', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1283', N'1381', N'25000040', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:45:24.067', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1284', N'1382', N'25000041', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:45:26.353', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1285', N'1383', N'25000042', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:45:29.307', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1286', N'1384', N'25000043', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:45:32.337', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1287', N'1385', N'25000044', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:45:35.553', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1288', N'1386', N'25000045', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:45:38.193', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1289', N'1387', N'25000046', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'1T', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:45:40.653', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1290', N'1388', N'25000047', N'2', N'2', N'2T1', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:46:51.850', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1291', N'1389', N'25000048', N'2', N'2', N'2T1', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:46:57.193', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1292', N'1390', N'25000049', N'2', N'2', N'2T1', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:01.173', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1293', N'1391', N'25000050', N'2', N'2', N'2T1', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:06.323', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1294', N'1392', N'25000051', N'2', N'2', N'2T1', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:08.843', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1295', N'1393', N'25000052', N'2', N'2', N'2T1', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:12.467', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1296', N'1394', N'25000053', N'2', N'2', N'2T1', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:15.870', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1297', N'1395', N'25000054', N'2', N'2', N'2T1', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:18.313', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1298', N'1396', N'25000055', N'2', N'2', N'2T1', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:20.917', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1299', N'1397', N'25000056', N'2', N'2', N'2T1', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:23.463', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1300', N'1398', N'25000057', N'2', N'2', N'2T1', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:26.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1301', N'1399', N'25000058', N'2', N'2', N'2T1', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:29.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1302', N'1400', N'25000059', N'2', N'2', N'2T2', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:41.227', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1303', N'1401', N'25000060', N'2', N'2', N'2T2', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:47.853', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1304', N'1402', N'25000061', N'2', N'2', N'2T2', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:50.473', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1305', N'1403', N'25000062', N'2', N'2', N'2T2', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:53.963', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1306', N'1404', N'25000063', N'2', N'2', N'2T2', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:47:56.577', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1307', N'1405', N'25000064', N'2', N'2', N'2T2', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:48:00.833', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1308', N'1406', N'25000065', N'2', N'2', N'2T2', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:48:02.890', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1309', N'1407', N'25000066', N'2', N'2', N'2T2', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:48:06.050', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1310', N'1408', N'25000067', N'2', N'2', N'2T2', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:48:09.060', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1311', N'1409', N'25000068', N'2', N'2', N'2T2', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:48:12.230', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1312', N'1410', N'25000069', N'2', N'2', N'2T2', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:48:17.080', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1313', N'1411', N'25000070', N'2', N'2', N'2T2', N'', N'250424', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-24 14:48:23.990', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1314', N'1412', N'25000463', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'3T1', N'', N'250423', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-25 09:47:13.603', NULL, NULL) GO INSERT INTO [dbo].[Dt_StockQuantityChangeRecord] ([Id], [StockDetailId], [PalleCode], [MaterielCode], [MaterielName], [BatchNo], [SerilNumber], [OrderNo], [TaskNum], [ChangeType], [ChangeQuantity], [BeforeQuantity], [AfterQuantity], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1315', N'1413', N'25000577', N'1', N'低钙腹膜透析液(乳酸盐-G1.5%)', N'3T1', N'', N'250423', NULL, N'0', N'1.00', N'.00', N'1.00', NULL, N'System', N'2025-04-25 10:02:01.127', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_StockQuantityChangeRecord] OFF GO -- ---------------------------- -- Table structure for Dt_Task -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_Task]') AND type IN ('U')) DROP TABLE [dbo].[Dt_Task] GO CREATE TABLE [dbo].[Dt_Task] ( [TaskId] int IDENTITY(1,1) NOT NULL, [TaskNum] int NOT NULL, [SourceIsPickPlace] bit NULL, [PalletCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [Roadway] varchar(10) COLLATE Chinese_PRC_CI_AS NOT NULL, [TaskType] int NOT NULL, [TaskState] int NOT NULL, [SourceAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [TargetAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [CurrentAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [NextAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [OrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [Grade] int DEFAULT '0' NOT NULL, [Dispatchertime] datetime NULL, [Remark] varchar(255) 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, [TargetIsPickPlace] bit NULL ) GO ALTER TABLE [dbo].[Dt_Task] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'TaskId' GO EXEC sp_addextendedproperty 'MS_Description', N'任务号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'TaskNum' GO EXEC sp_addextendedproperty 'MS_Description', N'起点是否为堆垛机取放货位', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'SourceIsPickPlace' GO EXEC sp_addextendedproperty 'MS_Description', N'托盘编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'PalletCode' GO EXEC sp_addextendedproperty 'MS_Description', N'巷道号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'Roadway' GO EXEC sp_addextendedproperty 'MS_Description', N'任务类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'TaskType' GO EXEC sp_addextendedproperty 'MS_Description', N'任务状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'TaskState' GO EXEC sp_addextendedproperty 'MS_Description', N'起始地址', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'SourceAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'目标地址', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'TargetAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'当前位置', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'CurrentAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'下一地址', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'NextAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'优先级', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'Grade' GO EXEC sp_addextendedproperty 'MS_Description', N'任务下发时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'Dispatchertime' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'终点是否为堆垛机取放货位', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'TargetIsPickPlace' GO EXEC sp_addextendedproperty 'MS_Description', N'任务信息', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task' GO -- ---------------------------- -- Records of Dt_Task -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_Task] ON GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1901', N'819', N'1', N'25000024', N'SC01', N'300', N'400', N'001-002-001', N'002-005-001', N'001-002-001', N'002-005-001', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.613', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1902', N'820', N'0', N'25000023', N'SC01', N'300', N'400', N'001-002-001', N'002-005-001', N'001-002-001', N'002-005-001', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.620', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1903', N'821', N'0', N'25000022', N'SC01', N'300', N'400', N'001-002-001', N'002-005-001', N'001-002-001', N'002-005-001', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.620', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1904', N'822', N'0', N'25000021', N'SC01', N'300', N'400', N'001-002-001', N'002-005-001', N'001-002-001', N'002-005-001', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.620', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1905', N'823', N'0', N'25000020', N'SC01', N'300', N'400', N'001-002-001', N'002-005-001', N'001-002-001', N'002-005-001', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.623', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1906', N'824', N'0', N'25000019', N'SC01', N'300', N'400', N'001-002-001', N'002-005-001', N'001-002-001', N'002-005-001', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.623', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1907', N'825', N'0', N'25000018', N'SC01', N'300', N'400', N'001-002-001', N'002-005-001', N'001-002-001', N'002-005-001', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.623', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1908', N'826', N'0', N'25000017', N'SC01', N'300', N'400', N'001-002-001', N'002-005-001', N'001-002-001', N'002-005-001', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.627', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1909', N'827', N'0', N'25000016', N'SC01', N'300', N'400', N'001-002-001', N'002-005-001', N'001-002-001', N'002-005-001', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.627', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1910', N'828', N'0', N'25000015', N'SC01', N'300', N'400', N'001-002-001', N'002-005-001', N'001-002-001', N'002-005-001', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.627', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1911', N'829', N'0', N'25000014', N'SC01', N'300', N'400', N'001-002-001', N'002-005-001', N'001-002-001', N'002-005-001', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.627', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1912', N'830', N'0', N'25000013', N'SC01', N'300', N'400', N'001-002-001', N'002-005-001', N'001-002-001', N'002-005-001', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.630', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1913', N'831', N'0', N'25000012', N'SC01', N'100', N'100', N'001-002-001', N'1008', N'001-002-001', N'1008', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.630', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1914', N'832', N'0', N'25000011', N'SC01', N'100', N'100', N'001-002-001', N'1008', N'001-002-001', N'1008', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.630', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1915', N'833', N'0', N'25000010', N'SC01', N'100', N'100', N'001-002-001', N'1008', N'001-002-001', N'1008', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.633', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1916', N'834', N'0', N'25000009', N'SC01', N'100', N'100', N'001-002-001', N'1008', N'001-002-001', N'1008', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.633', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1917', N'835', N'0', N'25000008', N'SC01', N'100', N'100', N'001-002-001', N'1008', N'001-002-001', N'1008', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.637', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1918', N'836', N'0', N'25000007', N'SC01', N'100', N'100', N'001-002-001', N'1008', N'001-002-001', N'1008', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.637', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1919', N'837', N'0', N'25000006', N'SC01', N'100', N'100', N'001-002-001', N'1008', N'001-002-001', N'1008', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.640', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1920', N'838', N'0', N'25000005', N'SC01', N'100', N'100', N'001-002-001', N'1008', N'001-002-001', N'1008', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.640', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1921', N'839', N'0', N'25000004', N'SC01', N'100', N'100', N'001-002-001', N'1008', N'001-002-001', N'1008', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.643', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1922', N'840', N'0', N'25000003', N'SC01', N'100', N'100', N'001-002-001', N'1008', N'001-002-001', N'1008', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.643', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1923', N'841', N'0', N'25000002', N'SC01', N'100', N'100', N'001-002-001', N'1008', N'001-002-001', N'1008', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.647', NULL, NULL, N'0') GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [SourceIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate], [TargetIsPickPlace]) VALUES (N'1924', N'842', N'0', N'25000001', N'SC01', N'100', N'100', N'001-002-001', N'1008', N'001-002-001', N'1008', NULL, N'0', NULL, NULL, N'admin', N'2025-04-25 15:36:46.647', NULL, NULL, N'0') GO SET IDENTITY_INSERT [dbo].[Dt_Task] OFF GO -- ---------------------------- -- Table structure for Dt_Task_Hty -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_Task_Hty]') AND type IN ('U')) DROP TABLE [dbo].[Dt_Task_Hty] GO CREATE TABLE [dbo].[Dt_Task_Hty] ( [TaskId] int IDENTITY(1,1) NOT NULL, [SourceId] int DEFAULT '0' NOT NULL, [OperateType] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [InsertTime] datetime NOT NULL, [TaskNum] int NOT NULL, [SourceIsPickPlace] bit NULL, [TargetIsPickPlace] bit NULL, [PalletCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [Roadway] varchar(10) COLLATE Chinese_PRC_CI_AS NOT NULL, [TaskType] int NOT NULL, [TaskState] int NOT NULL, [SourceAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [TargetAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [CurrentAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [NextAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [OrderNo] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [Grade] int DEFAULT '0' NOT NULL, [Dispatchertime] datetime NULL, [Remark] varchar(255) 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_Task_Hty] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'TaskId' GO EXEC sp_addextendedproperty 'MS_Description', N'原表主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'SourceId' GO EXEC sp_addextendedproperty 'MS_Description', N'操作类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'OperateType' GO EXEC sp_addextendedproperty 'MS_Description', N'移入历史时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'InsertTime' GO EXEC sp_addextendedproperty 'MS_Description', N'任务号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'TaskNum' GO EXEC sp_addextendedproperty 'MS_Description', N'起点是否为堆垛机取放货位', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'SourceIsPickPlace' GO EXEC sp_addextendedproperty 'MS_Description', N'终点是否为堆垛机取放货位', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'TargetIsPickPlace' GO EXEC sp_addextendedproperty 'MS_Description', N'托盘编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'PalletCode' GO EXEC sp_addextendedproperty 'MS_Description', N'巷道号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'Roadway' GO EXEC sp_addextendedproperty 'MS_Description', N'任务类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'TaskType' GO EXEC sp_addextendedproperty 'MS_Description', N'任务状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'TaskState' GO EXEC sp_addextendedproperty 'MS_Description', N'起始地址', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'SourceAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'目标地址', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'TargetAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'当前位置', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'CurrentAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'下一地址', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'NextAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'单据编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'优先级', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'Grade' GO EXEC sp_addextendedproperty 'MS_Description', N'任务下发时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'Dispatchertime' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'任务信息历史', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty' GO -- ---------------------------- -- Records of Dt_Task_Hty -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_Task_Hty] ON GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'1111', N'自动完成', N'1900-01-01 00:00:00.000', N'154218', N'0', N'0', N'25000002', N'SC01', N'200', N'235', N'MDX01', N'001-002-001', N'1004', N'001-002-001', N'20250222', N'0', N'2025-02-22 15:42:18.110', N'', N'System', N'2025-02-23 10:30:45.780', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'1114', N'自动完成', N'1900-01-01 00:00:00.000', N'154609', N'0', N'0', N'25000003', N'SC01', N'200', N'235', N'MDX01', N'001-002-001', N'1004', N'001-002-001', N'20250222', N'0', N'2025-02-22 15:46:09.037', N'', N'System', N'2025-02-23 10:39:51.180', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'1115', N'自动完成', N'1900-01-01 00:00:00.000', N'154717', N'0', N'0', N'25000004', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'1004', N'001-002-001', N'20250222', N'0', N'2025-02-22 15:47:17.953', N'', N'System', N'2025-02-23 10:45:04.727', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'1116', N'自动完成', N'1900-01-01 00:00:00.000', N'154745', N'0', N'0', N'25000005', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'1004', N'001-002-001', N'20250222', N'0', N'2025-02-22 15:47:45.403', N'', N'System', N'2025-02-23 10:45:46.793', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'5', N'1117', N'自动完成', N'1900-01-01 00:00:00.000', N'154810', N'0', N'0', N'25000006', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'1004', N'001-002-001', N'20250222', N'0', N'2025-02-22 15:48:10.203', N'', N'System', N'2025-02-23 10:46:30.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'6', N'1118', N'自动完成', N'1900-01-01 00:00:00.000', N'154831', N'0', N'0', N'25000007', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'1004', N'001-002-001', N'20250222', N'0', N'2025-02-22 15:48:31.123', N'', N'System', N'2025-02-23 10:46:47.087', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7', N'1119', N'自动完成', N'1900-01-01 00:00:00.000', N'154920', N'0', N'0', N'25000008', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'1004', N'001-002-001', N'20250222', N'0', N'2025-02-22 15:49:20.897', N'', N'System', N'2025-02-23 10:47:05.853', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'8', N'1120', N'自动完成', N'1900-01-01 00:00:00.000', N'154943', N'0', N'0', N'25000009', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'1004', N'001-002-001', N'20250222', N'0', N'2025-02-22 15:49:43.830', N'', N'System', N'2025-02-23 10:47:18.637', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'9', N'1121', N'自动完成', N'1900-01-01 00:00:00.000', N'155103', N'0', N'0', N'25000011', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'1004', N'001-002-001', N'20250222', N'0', N'2025-02-22 15:51:03.993', N'', N'System', N'2025-02-23 10:47:30.047', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'10', N'1122', N'自动完成', N'1900-01-01 00:00:00.000', N'155104', N'0', N'0', N'25000010', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'1004', N'001-002-001', N'20250222', N'0', N'2025-02-22 15:51:03.993', N'', N'System', N'2025-02-23 10:47:40.973', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11', N'1123', N'自动完成', N'1900-01-01 00:00:00.000', N'155105', N'0', N'0', N'25000012', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'1004', N'001-002-001', N'20250222', N'0', N'2025-02-22 15:51:03.997', N'', N'System', N'2025-02-23 10:48:59.093', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'12', N'1124', N'自动完成', N'1900-01-01 00:00:00.000', N'155713', N'0', N'0', N'25000013', N'SC01', N'200', N'290', N'MDX01', N'002-002-001', N'002-002-001', N'', N'20250222', N'0', N'2025-02-22 15:57:13.360', N'', N'System', N'2025-02-23 10:53:53.210', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'1125', N'自动完成', N'1900-01-01 00:00:00.000', N'155727', N'0', N'0', N'25000014', N'SC01', N'200', N'290', N'MDX01', N'002-002-001', N'002-002-001', N'', N'20250222', N'0', N'2025-02-22 15:57:27.337', N'', N'System', N'2025-02-23 10:54:30.370', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'14', N'1126', N'自动完成', N'1900-01-01 00:00:00.000', N'155737', N'0', N'0', N'25000015', N'SC01', N'200', N'290', N'MDX01', N'002-002-001', N'002-002-001', N'', N'20250222', N'0', N'2025-02-22 15:57:37.467', N'', N'System', N'2025-02-23 10:54:40.410', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'15', N'1127', N'自动完成', N'1900-01-01 00:00:00.000', N'155747', N'0', N'0', N'25000016', N'SC01', N'200', N'290', N'MDX01', N'002-002-001', N'002-002-001', N'', N'20250222', N'0', N'2025-02-22 15:57:47.703', N'', N'System', N'2025-02-23 10:54:50.473', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'16', N'1128', N'自动完成', N'1900-01-01 00:00:00.000', N'155754', N'0', N'0', N'25000017', N'SC01', N'200', N'290', N'MDX01', N'002-002-001', N'002-002-001', N'', N'20250222', N'0', N'2025-02-22 15:57:54.880', N'', N'System', N'2025-02-23 10:54:59.107', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'17', N'1129', N'自动完成', N'1900-01-01 00:00:00.000', N'155801', N'0', N'0', N'25000018', N'SC01', N'200', N'290', N'MDX01', N'002-002-001', N'002-002-001', N'', N'20250222', N'0', N'2025-02-22 15:58:01.790', N'', N'System', N'2025-02-23 10:55:11.480', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'18', N'1130', N'自动完成', N'1900-01-01 00:00:00.000', N'155808', N'0', N'0', N'25000019', N'SC01', N'200', N'290', N'MDX01', N'002-002-001', N'002-002-001', N'', N'20250222', N'0', N'2025-02-22 15:58:08.960', N'', N'System', N'2025-02-23 10:55:24.097', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'19', N'1131', N'自动完成', N'1900-01-01 00:00:00.000', N'155818', N'0', N'0', N'25000020', N'SC01', N'200', N'290', N'MDX01', N'002-002-001', N'002-002-001', N'', N'20250222', N'0', N'2025-02-22 15:58:18.900', N'', N'System', N'2025-02-23 10:55:35.283', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'20', N'1132', N'自动完成', N'1900-01-01 00:00:00.000', N'155826', N'0', N'0', N'25000021', N'SC01', N'200', N'290', N'MDX01', N'002-002-001', N'002-002-001', N'', N'20250222', N'0', N'2025-02-22 15:58:26.827', N'', N'System', N'2025-02-23 10:56:24.133', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'21', N'1133', N'自动完成', N'1900-01-01 00:00:00.000', N'155835', N'0', N'0', N'25000022', N'SC01', N'200', N'290', N'MDX01', N'002-002-001', N'002-002-001', N'', N'20250222', N'0', N'2025-02-22 15:58:35.170', N'', N'System', N'2025-02-23 10:56:36.787', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'22', N'1134', N'自动完成', N'1900-01-01 00:00:00.000', N'155929', N'0', N'0', N'25000023', N'SC01', N'200', N'290', N'MDX01', N'002-002-001', N'002-002-001', N'', N'20250222', N'0', N'2025-02-22 15:59:29.897', N'', N'System', N'2025-02-23 10:57:01.990', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'23', N'1135', N'自动完成', N'2025-02-23 11:15:40.987', N'155937', N'0', N'1', N'25000024', N'SC01', N'200', N'290', N'MDX01', N'002-002-001', N'002-002-001', N'', N'20250222', N'0', N'2025-02-22 15:59:37.357', N'', N'System', N'2025-02-23 11:15:41.007', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'24', N'1136', N'自动完成', N'2025-02-23 11:56:00.513', N'160211', N'0', N'0', N'25000025', N'SC01', N'200', N'290', N'MDX01', N'003-002-001', N'003-002-001', N'', N'20250222', N'0', N'2025-02-22 16:02:11.400', N'', N'System', N'2025-02-23 11:56:00.513', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'25', N'1137', N'自动完成', N'2025-02-23 11:56:32.913', N'160223', N'0', N'0', N'25000026', N'SC01', N'200', N'290', N'MDX01', N'003-002-001', N'003-002-001', N'', N'20250222', N'0', N'2025-02-22 16:02:23.303', N'', N'System', N'2025-02-23 11:56:32.913', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'26', N'1138', N'自动完成', N'2025-02-23 11:56:47.830', N'160226', N'0', N'0', N'25000027', N'SC01', N'200', N'290', N'MDX01', N'003-002-001', N'003-002-001', N'', N'20250222', N'0', N'2025-02-22 16:02:26.680', N'', N'System', N'2025-02-23 11:56:47.830', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'27', N'1139', N'自动完成', N'2025-02-23 11:56:52.850', N'160227', N'0', N'0', N'25000028', N'SC01', N'200', N'290', N'MDX01', N'003-002-001', N'003-002-001', N'', N'20250222', N'0', N'2025-02-22 16:02:27.347', N'', N'System', N'2025-02-23 11:56:52.850', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'28', N'1140', N'自动完成', N'2025-02-23 11:56:59.873', N'160201', N'0', N'0', N'25000029', N'SC01', N'200', N'290', N'MDX01', N'003-002-001', N'003-002-001', N'', N'20250222', N'0', N'2025-02-22 16:02:27.940', N'', N'System', N'2025-02-23 11:56:59.873', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'29', N'1141', N'自动完成', N'2025-02-23 11:57:07.863', N'160228', N'0', N'0', N'25000030', N'SC01', N'200', N'290', N'MDX01', N'003-002-001', N'003-002-001', N'', N'20250222', N'0', N'2025-02-22 16:02:28.617', N'', N'System', N'2025-02-23 11:57:07.863', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'30', N'1142', N'自动完成', N'2025-02-23 11:57:20.827', N'160229', N'0', N'0', N'25000031', N'SC01', N'200', N'290', N'MDX01', N'003-002-001', N'003-002-001', N'', N'20250222', N'0', N'2025-02-22 16:02:29.437', N'', N'System', N'2025-02-23 11:57:20.830', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'31', N'1143', N'自动完成', N'2025-02-23 11:57:27.840', N'160202', N'0', N'0', N'25000032', N'SC01', N'200', N'290', N'MDX01', N'003-002-001', N'003-002-001', N'', N'20250222', N'0', N'2025-02-22 16:02:30.097', N'', N'System', N'2025-02-23 11:57:27.840', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'32', N'1144', N'自动完成', N'2025-02-23 11:57:33.827', N'160230', N'0', N'0', N'25000033', N'SC01', N'200', N'290', N'MDX01', N'003-002-001', N'003-002-001', N'', N'20250222', N'0', N'2025-02-22 16:02:30.827', N'', N'System', N'2025-02-23 11:57:33.827', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'33', N'1145', N'自动完成', N'2025-02-23 11:57:40.840', N'160232', N'0', N'0', N'25000034', N'SC01', N'200', N'290', N'MDX01', N'003-002-001', N'003-002-001', N'', N'20250222', N'0', N'2025-02-22 16:02:32.420', N'', N'System', N'2025-02-23 11:57:40.840', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'34', N'1146', N'自动完成', N'2025-02-23 11:57:47.837', N'160233', N'0', N'0', N'25000035', N'SC01', N'200', N'290', N'MDX01', N'003-002-001', N'003-002-001', N'', N'20250222', N'0', N'2025-02-22 16:02:33.150', N'', N'System', N'2025-02-23 11:57:47.837', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'35', N'1147', N'自动完成', N'2025-02-23 12:20:04.950', N'160234', N'0', N'1', N'25000036', N'SC01', N'200', N'290', N'MDX01', N'003-002-001', N'003-002-001', N'', N'20250222', N'0', N'2025-02-22 16:02:34.150', N'', N'System', N'2025-02-23 12:20:04.960', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'36', N'1366', N'自动完成', N'2025-03-13 16:07:48.857', N'313', N'0', N'0', N'2', N'SC01', N'204', N'290', N'1001', N'001-003-001', N'001-003-001', N'', N'250313', N'0', N'2025-03-13 14:07:24.067', NULL, N'PDA1', N'2025-03-13 16:07:48.877', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'37', N'1375', N'自动完成', N'2025-03-17 10:23:34.070', N'324', N'0', N'0', N'25000001', N'SC01', N'204', N'290', N'1001', N'003-002-001', N'003-002-001', N'', N'250317', N'0', N'2025-03-17 09:28:21.500', NULL, N'PDA1', N'2025-03-17 10:23:34.083', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'38', N'1379', N'自动完成', N'2025-03-17 13:19:06.397', N'328', N'0', N'0', N'25000001', N'SC01', N'204', N'290', N'1001', N'003-002-001', N'003-002-001', N'', N'250317', N'0', N'2025-03-17 13:04:06.750', NULL, N'PDA1', N'2025-03-17 13:19:06.400', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'39', N'1381', N'自动完成', N'2025-03-17 16:07:26.883', N'330', N'0', N'0', N'25000050', N'SC01', N'204', N'290', N'1001', N'003-002-001', N'003-002-001', N'', N'250317', N'0', N'2025-03-17 15:58:39.690', NULL, N'PDA1', N'2025-03-17 16:07:26.890', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'40', N'1382', N'自动完成', N'2025-03-17 18:00:41.043', N'331', N'0', N'0', N'25000050', N'SC01', N'204', N'290', N'1001', N'003-002-001', N'003-002-001', N'', N'250317', N'0', N'2025-03-17 17:48:13.947', NULL, N'PDA1', N'2025-03-17 18:00:41.057', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'41', N'1444', N'自动完成', N'2025-03-19 10:00:39.133', N'417', N'0', N'0', N'25000001', N'SC01', N'204', N'290', N'1001', N'003-002-001', N'003-002-001', N'', N'250319', N'0', N'2025-03-19 09:57:01.667', NULL, N'PDA1', N'2025-03-19 10:00:39.140', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'42', N'1448', N'自动完成', N'2025-03-19 10:29:44.677', N'421', N'0', N'0', N'25000001', N'SC01', N'204', N'290', N'1001', N'003-002-001', N'003-002-001', N'', N'250319', N'0', N'2025-03-19 10:16:03.687', NULL, N'PDA1', N'2025-03-19 10:29:44.677', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'43', N'1454', N'自动完成', N'2025-04-15 15:37:11.490', N'428', N'0', N'0', N'25000051', N'SC01', N'204', N'290', N'K001', N'003-002-001', N'003-002-001', N'', N'250415', N'0', N'2025-04-15 14:47:49.723', NULL, N'admin', N'2025-04-15 15:37:11.647', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'44', N'1455', N'自动完成', N'2025-04-15 16:18:47.467', N'429', N'0', N'0', N'25000052', N'SC01', N'204', N'290', N'K002', N'003-002-001', N'003-002-001', N'', N'250415', N'0', N'2025-04-15 14:53:21.707', NULL, N'admin', N'2025-04-15 16:18:47.470', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'45', N'1456', N'自动完成', N'2025-04-15 16:28:32.147', N'430', N'0', N'0', N'25000001', N'SC01', N'204', N'290', N'K003', N'003-002-001', N'003-002-001', N'', N'250415', N'0', N'2025-04-15 14:54:28.610', NULL, N'admin', N'2025-04-15 16:28:32.147', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'46', N'1458', N'自动完成', N'2025-04-16 12:01:24.870', N'432', N'0', N'0', N'25000241', N'SC01', N'204', N'290', N'K001', N'003-002-001', N'003-002-001', N'', N'250416', N'0', N'2025-04-16 11:12:21.013', NULL, N'PDA1', N'2025-04-16 12:01:24.873', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'47', N'1459', N'自动完成', N'2025-04-16 13:01:19.850', N'433', N'0', N'0', N'25000050', N'SC01', N'204', N'290', N'K002', N'003-002-001', N'003-002-001', N'', N'250416', N'0', N'2025-04-16 12:01:58.210', NULL, N'PDA1', N'2025-04-16 13:01:19.850', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'48', N'1460', N'自动完成', N'2025-04-16 13:19:15.847', N'434', N'0', N'0', N'25000060', N'SC01', N'204', N'290', N'K003', N'003-002-001', N'003-002-001', N'', N'250416', N'0', N'2025-04-16 13:05:36.163', NULL, N'PDA1', N'2025-04-16 13:19:15.847', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'1461', N'自动完成', N'2025-04-16 13:38:21.713', N'435', N'0', N'0', N'25000152', N'SC01', N'204', N'290', N'K003', N'003-002-001', N'003-002-001', N'', N'250416', N'0', N'2025-04-16 13:24:46.530', NULL, N'PDA1', N'2025-04-16 13:38:21.713', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'1462', N'自动完成', N'2025-04-16 13:50:41.917', N'436', N'0', N'0', N'25000231', N'SC01', N'204', N'290', N'K002', N'003-002-001', N'003-002-001', N'', N'250416', N'0', N'2025-04-16 13:25:10.520', NULL, N'PDA1', N'2025-04-16 13:50:41.917', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'51', N'1463', N'自动完成', N'2025-04-16 14:08:34.780', N'437', N'0', N'0', N'25000245', N'SC01', N'204', N'290', N'K001', N'003-002-001', N'003-002-001', N'', N'250416', N'0', N'2025-04-16 13:25:35.207', NULL, N'PDA1', N'2025-04-16 14:08:34.780', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'52', N'1464', N'自动完成', N'2025-04-16 14:35:18.953', N'438', N'0', N'0', N'25000250', N'SC01', N'204', N'290', N'K003', N'003-002-001', N'003-002-001', N'', N'250416', N'0', N'2025-04-16 14:08:48.097', NULL, N'PDA1', N'2025-04-16 14:35:18.957', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'53', N'1465', N'自动完成', N'2025-04-16 15:09:17.937', N'439', N'0', N'0', N'25000601', N'SC01', N'204', N'290', N'K001', N'003-002-001', N'003-002-001', N'', N'250416', N'0', N'2025-04-16 14:22:33.920', NULL, N'PDA1', N'2025-04-16 15:09:17.937', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'54', N'1467', N'自动完成', N'2025-04-16 17:14:43.957', N'441', N'0', N'0', N'25000165', N'SC01', N'204', N'290', N'K001', N'001-004-001', N'001-004-001', N'', N'250416', N'0', N'2025-04-16 17:02:35.517', NULL, N'PDA1', N'2025-04-16 17:14:43.960', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'55', N'1468', N'自动完成', N'2025-04-17 09:52:39.313', N'442', N'0', N'0', N'25000139', N'SC01', N'204', N'290', N'K001', N'001-004-001', N'001-004-001', N'', N'250417', N'0', N'2025-04-17 09:27:42.130', NULL, N'PDA1', N'2025-04-17 09:52:39.320', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'56', N'1469', N'自动完成', N'2025-04-17 09:55:58.913', N'443', N'0', N'0', N'25000046', N'SC01', N'204', N'290', N'K002', N'001-004-001', N'001-004-001', N'', N'250417', N'0', N'2025-04-17 09:28:13.407', NULL, N'PDA1', N'2025-04-17 09:55:58.913', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'57', N'1470', N'自动完成', N'2025-04-17 10:10:08.023', N'444', N'0', N'0', N'25000260', N'SC01', N'204', N'290', N'K003', N'001-004-001', N'001-004-001', N'', N'250417', N'0', N'2025-04-17 09:28:45.433', NULL, N'PDA1', N'2025-04-17 10:10:08.023', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'58', N'1471', N'自动完成', N'2025-04-17 10:37:35.383', N'445', N'0', N'0', N'25000273', N'SC01', N'204', N'290', N'K002', N'001-004-001', N'001-004-001', N'', N'250417', N'0', N'2025-04-17 10:00:51.400', NULL, N'PDA1', N'2025-04-17 10:37:35.383', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'59', N'1473', N'自动完成', N'2025-04-17 13:17:29.360', N'447', N'0', N'0', N'25000220', N'SC01', N'204', N'290', N'K003', N'001-004-001', N'001-004-001', N'', N'250417', N'0', N'2025-04-17 13:03:44.953', NULL, N'PDA1', N'2025-04-17 13:17:29.367', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'60', N'1474', N'自动完成', N'2025-04-17 13:45:00.310', N'448', N'0', N'0', N'25000446', N'SC01', N'204', N'290', N'K003', N'001-004-001', N'001-004-001', N'', N'250417', N'0', N'2025-04-17 13:36:39.330', NULL, N'PDA1', N'2025-04-17 13:45:00.310', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'61', N'1498', N'自动完成', N'2025-04-19 17:02:02.140', N'23', N'0', N'1', N'25000017', N'SC01', N'204', N'290', N'K003', N'002-004-001', N'002-004-001', N'', N'250419', N'0', N'2025-04-19 16:35:42.443', NULL, N'PDA1', N'2025-04-19 17:02:02.177', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'62', N'1557', N'自动完成', N'2025-04-20 10:14:09.270', N'508', N'0', N'0', N'25000120', N'SC01', N'204', N'290', N'K003', N'001-005-001', N'001-005-001', N'', N'250420', N'0', N'2025-04-20 09:57:57.137', NULL, N'PDA1', N'2025-04-20 10:14:09.273', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'63', N'1558', N'自动完成', N'2025-04-20 10:38:21.847', N'509', N'0', N'0', N'25000190', N'SC01', N'204', N'290', N'K003', N'001-005-001', N'001-005-001', N'', N'250420', N'0', N'2025-04-20 09:57:57.137', NULL, N'PDA1', N'2025-04-20 10:38:21.870', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'67', N'1560', N'自动完成', N'2025-04-20 11:36:52.250', N'510', N'0', N'0', N'25000601', N'SC01', N'104', N'190', N'003-002-001', N'1008', N'003-002-001', N'SC01', N'', N'0', N'2025-04-20 10:26:36.830', NULL, N'PDA1', N'2025-04-20 11:36:52.340', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'68', N'1561', N'自动完成', N'2025-04-20 11:44:42.390', N'511', N'1', N'0', N'25000381', N'SC01', N'104', N'190', N'002-006-002', N'1008', N'002-006-002', N'SC01', N'', N'0', N'2025-04-20 11:03:21.190', NULL, N'PDA1', N'2025-04-20 11:44:42.390', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'69', N'1562', N'自动完成', N'2025-04-20 14:32:59.617', N'512', N'0', N'0', N'25000250', N'SC01', N'104', N'190', N'003-002-001', N'1008', N'003-002-001', N'SC01', N'', N'0', N'2025-04-20 11:45:03.860', NULL, N'PDA1', N'2025-04-20 14:32:59.617', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'70', N'1563', N'自动完成', N'2025-04-20 14:33:08.263', N'513', N'0', N'0', N'25000245', N'SC01', N'104', N'190', N'003-002-001', N'1008', N'003-002-001', N'SC01', N'', N'0', N'2025-04-20 11:45:08.057', NULL, N'PDA1', N'2025-04-20 14:33:08.263', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'71', N'1564', N'自动完成', N'2025-04-20 14:37:30.533', N'514', N'0', N'0', N'25000231', N'SC01', N'104', N'190', N'003-002-001', N'1008', N'003-002-001', N'SC01', N'', N'0', N'2025-04-20 11:45:09.820', NULL, N'PDA1', N'2025-04-20 14:37:30.533', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'72', N'1572', N'自动完成', N'2025-04-20 14:47:22.820', N'522', N'1', N'0', N'25000017', N'SC01', N'104', N'190', N'002-004-001', N'1008', N'002-004-001', N'SC01', N'', N'0', N'2025-04-20 14:11:53.920', NULL, N'PDA1', N'2025-04-20 14:47:22.820', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'73', N'1568', N'自动完成', N'2025-04-20 14:59:57.340', N'518', N'0', N'0', N'25000241', N'SC01', N'104', N'190', N'003-002-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 14:11:33.170', NULL, N'PDA1', N'2025-04-20 14:59:57.343', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'74', N'1565', N'自动完成', N'2025-04-20 15:00:01.467', N'515', N'0', N'0', N'25000152', N'SC01', N'104', N'190', N'003-002-001', N'1008', N'003-002-001', N'SC01', N'', N'0', N'2025-04-20 11:45:11.107', NULL, N'PDA1', N'2025-04-20 15:00:01.467', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'75', N'1566', N'自动完成', N'2025-04-20 15:00:04.570', N'516', N'0', N'0', N'25000060', N'SC01', N'104', N'190', N'003-002-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-20 11:45:12.527', NULL, N'PDA1', N'2025-04-20 15:00:04.570', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'76', N'1570', N'自动完成', N'2025-04-20 15:21:23.463', N'520', N'0', N'0', N'25000052', N'SC01', N'104', N'190', N'003-002-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-20 14:11:46.303', NULL, N'PDA1', N'2025-04-20 15:21:23.463', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'77', N'1569', N'自动完成', N'2025-04-20 15:21:27.280', N'519', N'0', N'0', N'25000001', N'SC01', N'104', N'190', N'003-002-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 14:11:44.663', NULL, N'PDA1', N'2025-04-20 15:21:27.280', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'78', N'1567', N'自动完成', N'2025-04-20 15:21:31.570', N'517', N'0', N'0', N'25000050', N'SC01', N'104', N'190', N'003-002-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-20 11:45:13.910', NULL, N'PDA1', N'2025-04-20 15:21:31.570', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'79', N'1573', N'自动完成', N'2025-04-20 15:37:41.307', N'523', N'0', N'0', N'25000080', N'SC01', N'104', N'190', N'002-004-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 14:55:37.137', NULL, N'PDA1', N'2025-04-20 15:37:41.307', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'80', N'1571', N'自动完成', N'2025-04-20 15:37:45.170', N'521', N'0', N'0', N'25000051', N'SC01', N'104', N'190', N'003-002-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-20 14:11:47.777', NULL, N'PDA1', N'2025-04-20 15:37:45.170', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'81', N'1574', N'自动完成', N'2025-04-20 15:37:49.553', N'524', N'0', N'0', N'25000031', N'SC01', N'104', N'190', N'002-004-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-20 15:22:17.327', NULL, N'PDA1', N'2025-04-20 15:37:49.553', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'82', N'1601', N'自动完成', N'2025-04-20 16:15:36.887', N'551', N'0', N'0', N'25000070', N'SC01', N'204', N'290', N'K001', N'003-002-001', N'003-002-001', N'', N'250420', N'0', N'2025-04-20 15:35:05.307', NULL, N'PDA1', N'2025-04-20 16:15:36.913', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'83', N'1577', N'自动完成', N'2025-04-20 16:16:07.013', N'527', N'0', N'0', N'25000149', N'SC01', N'104', N'190', N'002-004-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-20 15:22:20.893', NULL, N'PDA1', N'2025-04-20 16:16:07.013', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'84', N'1576', N'自动完成', N'2025-04-20 16:16:10.417', N'526', N'0', N'0', N'25000400', N'SC01', N'104', N'190', N'002-004-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-20 15:22:19.710', NULL, N'PDA1', N'2025-04-20 16:16:10.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'85', N'1575', N'自动完成', N'2025-04-20 16:16:13.643', N'525', N'0', N'0', N'25000002', N'SC01', N'104', N'190', N'002-004-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 15:22:18.620', NULL, N'PDA1', N'2025-04-20 16:16:13.643', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'86', N'1579', N'自动完成', N'2025-04-20 16:27:35.037', N'529', N'0', N'0', N'25000390', N'SC01', N'104', N'190', N'002-004-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 15:26:47.973', NULL, N'PDA1', N'2025-04-20 16:27:35.040', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'87', N'1578', N'自动完成', N'2025-04-20 16:29:06.123', N'528', N'0', N'0', N'25000422', N'SC01', N'104', N'190', N'002-004-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-20 15:22:22.137', NULL, N'PDA1', N'2025-04-20 16:29:06.127', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'88', N'1580', N'自动完成', N'2025-04-20 16:57:10.793', N'530', N'0', N'0', N'25000748', N'SC01', N'104', N'190', N'002-004-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 15:26:49.177', NULL, N'PDA1', N'2025-04-20 16:57:10.793', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'89', N'1581', N'自动完成', N'2025-04-20 16:57:14.133', N'531', N'0', N'0', N'25000162', N'SC01', N'104', N'190', N'002-004-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-20 15:26:50.400', NULL, N'PDA1', N'2025-04-20 16:57:14.133', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'90', N'1584', N'自动完成', N'2025-04-20 17:08:51.163', N'534', N'0', N'0', N'25000172', N'SC01', N'104', N'190', N'001-004-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-20 15:28:46.723', NULL, N'PDA1', N'2025-04-20 17:08:51.163', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'91', N'1608', N'自动完成', N'2025-04-20 17:19:17.590', N'558', N'0', N'0', N'25000245', N'SC01', N'204', N'290', N'K003', N'001-002-001', N'001-002-001', N'', N'250420', N'0', N'2025-04-20 16:39:38.483', NULL, N'PDA1', N'2025-04-20 17:19:17.590', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'92', N'1609', N'自动完成', N'2025-04-20 17:37:17.513', N'559', N'0', N'0', N'25000250', N'SC01', N'204', N'290', N'K002', N'001-002-001', N'001-002-001', N'', N'250420', N'0', N'2025-04-20 16:40:04.577', NULL, N'PDA1', N'2025-04-20 17:37:17.513', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'93', N'1610', N'自动完成', N'2025-04-20 17:42:08.413', N'560', N'0', N'0', N'25000031', N'SC01', N'204', N'290', N'K001', N'001-002-001', N'001-002-001', N'', N'250420', N'0', N'2025-04-20 16:40:21.903', NULL, N'PDA1', N'2025-04-20 17:42:08.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'94', N'1583', N'自动完成', N'2025-04-21 08:30:25.680', N'533', N'0', N'0', N'25000445', N'SC01', N'104', N'190', N'002-004-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 15:26:52.727', NULL, N'PDA1', N'2025-04-21 08:30:25.697', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'95', N'1585', N'自动完成', N'2025-04-21 08:30:30.180', N'535', N'0', N'0', N'25000411', N'SC01', N'104', N'190', N'001-004-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-20 15:28:48.397', NULL, N'PDA1', N'2025-04-21 08:30:30.180', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'96', N'1582', N'自动完成', N'2025-04-21 08:30:33.343', N'532', N'0', N'0', N'25000136', N'SC01', N'104', N'190', N'002-004-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-20 15:26:51.540', NULL, N'PDA1', N'2025-04-21 08:30:33.343', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'97', N'1587', N'自动完成', N'2025-04-21 09:11:13.947', N'537', N'0', N'0', N'25000446', N'SC01', N'104', N'190', N'001-004-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 15:28:51.537', NULL, N'PDA1', N'2025-04-21 09:11:13.960', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'98', N'1589', N'自动完成', N'2025-04-21 09:22:22.693', N'539', N'0', N'0', N'25000420', N'SC01', N'104', N'190', N'001-004-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 15:29:41.653', NULL, N'PDA1', N'2025-04-21 09:22:22.697', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'99', N'1588', N'自动完成', N'2025-04-21 09:22:25.740', N'538', N'0', N'0', N'25000220', N'SC01', N'104', N'190', N'001-004-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-20 15:29:40.450', NULL, N'PDA1', N'2025-04-21 09:22:25.740', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'100', N'1590', N'自动完成', N'2025-04-21 09:30:11.967', N'540', N'0', N'0', N'25000273', N'SC01', N'104', N'190', N'001-004-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-20 15:29:42.750', NULL, N'PDA1', N'2025-04-21 09:30:11.967', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'101', N'1591', N'自动完成', N'2025-04-21 09:34:31.387', N'541', N'0', N'0', N'25000260', N'SC01', N'104', N'190', N'001-004-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 15:29:43.910', NULL, N'PDA1', N'2025-04-21 09:34:31.387', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'102', N'1592', N'自动完成', N'2025-04-21 09:34:35.407', N'542', N'0', N'0', N'25000046', N'SC01', N'104', N'190', N'001-004-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-20 15:29:45.433', NULL, N'PDA1', N'2025-04-21 09:34:35.407', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'103', N'1606', N'自动完成', N'2025-04-21 09:38:39.653', N'556', N'1', N'0', N'25000380', N'SC01', N'104', N'190', N'003-005-002', N'D003', N'D003', N'', N'', N'0', N'2025-04-20 15:40:23.837', NULL, N'PDA1', N'2025-04-21 09:38:39.653', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'104', N'1593', N'自动完成', N'2025-04-21 09:46:07.847', N'543', N'0', N'0', N'25000139', N'SC01', N'104', N'190', N'001-004-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 15:29:46.750', NULL, N'PDA1', N'2025-04-21 09:46:07.847', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'105', N'1594', N'自动完成', N'2025-04-21 09:46:11.030', N'544', N'0', N'0', N'25000165', N'SC01', N'104', N'190', N'001-004-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-20 15:29:47.980', NULL, N'PDA1', N'2025-04-21 09:46:11.030', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'106', N'1596', N'自动完成', N'2025-04-21 10:06:01.403', N'546', N'0', N'0', N'25000190', N'SC01', N'104', N'190', N'001-005-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 15:29:50.650', NULL, N'PDA1', N'2025-04-21 10:06:01.403', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'107', N'1597', N'自动完成', N'2025-04-21 10:06:06.693', N'547', N'0', N'0', N'25000120', N'SC01', N'104', N'190', N'001-005-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-20 15:29:56.620', NULL, N'PDA1', N'2025-04-21 10:06:06.693', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'108', N'1595', N'自动完成', N'2025-04-21 10:06:09.567', N'545', N'0', N'0', N'25000747', N'SC01', N'104', N'190', N'001-004-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-20 15:29:49.340', NULL, N'PDA1', N'2025-04-21 10:06:09.570', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'109', N'1598', N'自动完成', N'2025-04-21 10:18:57.717', N'548', N'0', N'0', N'25000126', N'SC01', N'104', N'190', N'001-005-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 15:30:02.330', NULL, N'PDA1', N'2025-04-21 10:18:57.720', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'110', N'1599', N'自动完成', N'2025-04-21 10:19:00.943', N'549', N'0', N'0', N'25000180', N'SC01', N'104', N'190', N'001-005-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-20 15:30:03.613', NULL, N'PDA1', N'2025-04-21 10:19:00.943', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'111', N'1603', N'自动完成', N'2025-04-21 10:38:31.983', N'553', N'0', N'0', N'25000134', N'SC01', N'104', N'190', N'002-007-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-20 15:39:58.420', NULL, N'PDA1', N'2025-04-21 10:38:31.983', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'112', N'1604', N'自动完成', N'2025-04-21 10:39:56.413', N'554', N'0', N'0', N'25000360', N'SC01', N'104', N'190', N'001-007-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 15:39:59.990', NULL, N'PDA1', N'2025-04-21 10:39:56.413', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'113', N'1600', N'自动完成', N'2025-04-21 11:07:57.253', N'550', N'0', N'0', N'25000480', N'SC01', N'104', N'190', N'002-006-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 15:30:04.953', NULL, N'PDA1', N'2025-04-21 11:07:57.253', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'114', N'1611', N'自动完成', N'2025-04-21 11:27:25.883', N'561', N'0', N'0', N'25000411', N'SC01', N'204', N'290', N'K001', N'001-002-001', N'001-002-001', N'', N'250421', N'0', N'2025-04-21 10:09:02.210', NULL, N'PDA1', N'2025-04-21 11:27:25.883', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'115', N'1613', N'自动完成', N'2025-04-21 11:34:45.120', N'563', N'0', N'0', N'25000002', N'SC01', N'204', N'290', N'K003', N'001-002-001', N'001-002-001', N'', N'250421', N'0', N'2025-04-21 10:09:19.397', NULL, N'PDA1', N'2025-04-21 11:34:45.123', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'116', N'1619', N'自动完成', N'2025-04-21 11:36:53.793', N'569', N'0', N'0', N'25000263', N'SC01', N'204', N'290', N'K003', N'001-002-001', N'001-002-001', N'', N'250421', N'0', N'2025-04-21 10:43:25.640', NULL, N'PDA1', N'2025-04-21 11:36:53.793', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'117', N'1620', N'自动完成', N'2025-04-21 11:40:49.523', N'570', N'0', N'0', N'25000136', N'SC01', N'204', N'290', N'K001', N'001-002-001', N'001-002-001', N'', N'250421', N'0', N'2025-04-21 10:44:03.373', NULL, N'PDA1', N'2025-04-21 11:40:49.523', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'118', N'1622', N'自动完成', N'2025-04-21 11:46:01.407', N'572', N'0', N'0', N'25000370', N'SC01', N'204', N'290', N'K002', N'001-002-001', N'001-002-001', N'', N'250421', N'0', N'2025-04-21 10:44:29.793', NULL, N'PDA1', N'2025-04-21 11:46:01.407', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'119', N'1605', N'自动完成', N'2025-04-21 11:47:39.047', N'555', N'0', N'0', N'25000123', N'SC01', N'104', N'190', N'001-008-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-20 15:40:21.197', NULL, N'PDA1', N'2025-04-21 11:47:39.047', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'120', N'1602', N'自动完成', N'2025-04-21 11:47:42.647', N'552', N'0', N'0', N'25000171', N'SC01', N'104', N'190', N'001-006-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-20 15:39:57.173', NULL, N'PDA1', N'2025-04-21 11:47:42.647', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'121', N'1607', N'自动完成', N'2025-04-21 11:47:45.733', N'557', N'0', N'0', N'25000070', N'SC01', N'104', N'190', N'003-002-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-20 16:26:44.713', NULL, N'PDA1', N'2025-04-21 11:47:45.737', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'122', N'1623', N'自动完成', N'2025-04-21 13:37:32.807', N'573', N'0', N'0', N'25000370', N'SC01', N'104', N'190', N'001-002-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-21 11:48:49.000', NULL, N'PDA1', N'2025-04-21 13:37:32.827', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'123', N'1628', N'自动完成', N'2025-04-21 13:49:50.163', N'578', N'0', N'0', N'25000123', N'SC01', N'204', N'290', N'K003', N'002-002-001', N'002-002-001', N'', N'250421', N'0', N'2025-04-21 13:40:58.307', NULL, N'PDA1', N'2025-04-21 13:49:50.163', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'124', N'1629', N'自动完成', N'2025-04-21 14:02:02.300', N'579', N'0', N'0', N'25000070', N'SC01', N'204', N'290', N'K002', N'001-003-001', N'001-003-001', N'', N'250421', N'0', N'2025-04-21 13:41:05.730', NULL, N'PDA1', N'2025-04-21 14:02:02.303', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'125', N'1630', N'自动完成', N'2025-04-21 14:09:29.000', N'580', N'0', N'0', N'25000370', N'SC01', N'204', N'290', N'K001', N'001-003-001', N'001-003-001', N'', N'250421', N'0', N'2025-04-21 13:41:12.750', NULL, N'PDA1', N'2025-04-21 14:09:29.003', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'126', N'1632', N'自动完成', N'2025-04-21 14:23:30.060', N'582', N'0', N'0', N'25000126', N'SC01', N'204', N'290', N'K003', N'001-003-001', N'001-003-001', N'', N'250421', N'0', N'2025-04-21 13:55:28.127', NULL, N'PDA1', N'2025-04-21 14:23:30.063', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'127', N'1624', N'自动完成', N'2025-04-21 14:26:07.590', N'574', N'0', N'0', N'25000136', N'SC01', N'104', N'190', N'001-002-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-21 13:37:57.043', NULL, N'PDA1', N'2025-04-21 14:26:07.590', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'128', N'1625', N'自动完成', N'2025-04-21 14:26:11.950', N'575', N'0', N'0', N'25000263', N'SC01', N'104', N'190', N'001-002-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-21 13:37:58.660', NULL, N'PDA1', N'2025-04-21 14:26:11.950', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'129', N'1634', N'自动完成', N'2025-04-21 14:26:13.937', N'584', N'0', N'0', N'25000480', N'SC01', N'204', N'290', N'K002', N'001-003-001', N'001-003-001', N'', N'250421', N'0', N'2025-04-21 13:57:34.617', NULL, N'PDA1', N'2025-04-21 14:26:13.937', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'130', N'1626', N'自动完成', N'2025-04-21 14:26:16.287', N'576', N'0', N'0', N'25000002', N'SC01', N'104', N'190', N'001-002-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-21 13:38:01.773', NULL, N'PDA1', N'2025-04-21 14:26:16.287', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'131', N'1635', N'自动完成', N'2025-04-21 14:48:02.687', N'585', N'0', N'0', N'25000360', N'SC01', N'204', N'290', N'K001', N'001-003-001', N'001-003-001', N'', N'250421', N'0', N'2025-04-21 14:06:16.067', NULL, N'PDA1', N'2025-04-21 14:48:02.687', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'132', N'1637', N'自动完成', N'2025-04-21 14:50:33.863', N'587', N'0', N'0', N'25000134', N'SC01', N'204', N'290', N'K003', N'001-003-001', N'001-003-001', N'', N'250421', N'0', N'2025-04-21 14:23:44.723', NULL, N'PDA1', N'2025-04-21 14:50:33.863', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'133', N'1638', N'自动完成', N'2025-04-21 14:52:54.803', N'588', N'0', N'0', N'25000231', N'SC01', N'204', N'290', N'K002', N'001-003-001', N'001-003-001', N'', N'250421', N'0', N'2025-04-21 14:23:50.977', NULL, N'PDA1', N'2025-04-21 14:52:54.803', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'134', N'1641', N'自动完成', N'2025-04-21 15:01:34.500', N'591', N'0', N'0', N'25000493', N'SC01', N'204', N'290', N'K003', N'001-003-001', N'001-003-001', N'', N'250421', N'0', N'2025-04-21 14:49:53.637', NULL, N'PDA1', N'2025-04-21 15:01:34.503', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'135', N'1642', N'自动完成', N'2025-04-21 15:03:49.383', N'592', N'0', N'0', N'25000430', N'SC01', N'204', N'290', N'K002', N'001-003-001', N'001-003-001', N'', N'250421', N'0', N'2025-04-21 14:50:00.157', NULL, N'PDA1', N'2025-04-21 15:03:49.383', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'136', N'1643', N'自动完成', N'2025-04-21 15:10:19.670', N'593', N'0', N'0', N'25000002', N'SC01', N'204', N'290', N'K001', N'001-003-001', N'001-003-001', N'', N'250421', N'0', N'2025-04-21 14:50:06.370', NULL, N'PDA1', N'2025-04-21 15:10:19.670', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'137', N'1627', N'自动完成', N'2025-04-21 16:47:04.383', N'577', N'0', N'0', N'25000411', N'SC01', N'104', N'190', N'001-002-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-21 13:38:09.020', NULL, N'PDA1', N'2025-04-21 16:47:04.383', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'138', N'1631', N'自动完成', N'2025-04-21 16:47:09.037', N'581', N'0', N'0', N'25000123', N'SC01', N'104', N'190', N'002-002-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-21 13:52:09.667', NULL, N'admin', N'2025-04-21 16:47:09.037', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'139', N'1636', N'自动完成', N'2025-04-21 16:47:12.107', N'586', N'0', N'0', N'25000031', N'SC01', N'104', N'190', N'001-002-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-21 14:23:21.553', NULL, N'PDA1', N'2025-04-21 16:47:12.107', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'140', N'1644', N'自动完成', N'2025-04-21 16:57:14.340', N'594', N'0', N'0', N'25000050', N'SC01', N'204', N'290', N'K003', N'001-003-001', N'001-003-001', N'', N'250421', N'0', N'2025-04-21 16:47:12.727', NULL, N'PDA1', N'2025-04-21 16:57:14.340', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'141', N'1645', N'自动完成', N'2025-04-21 17:09:59.460', N'595', N'0', N'0', N'25000276', N'SC01', N'204', N'290', N'K002', N'001-003-001', N'001-003-001', N'', N'250421', N'0', N'2025-04-21 16:47:21.867', NULL, N'PDA1', N'2025-04-21 17:09:59.460', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'142', N'1646', N'自动完成', N'2025-04-21 17:17:02.537', N'596', N'0', N'0', N'25000490', N'SC01', N'204', N'290', N'K001', N'001-003-001', N'001-003-001', N'', N'250421', N'0', N'2025-04-21 16:47:30.183', NULL, N'PDA1', N'2025-04-21 17:17:02.537', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'143', N'1639', N'自动完成', N'2025-04-21 17:19:07.663', N'589', N'0', N'0', N'25000250', N'SC01', N'104', N'190', N'001-002-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-21 14:24:28.087', NULL, N'PDA1', N'2025-04-21 17:19:07.663', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'144', N'1640', N'自动完成', N'2025-04-21 17:19:10.517', N'590', N'0', N'0', N'25000245', N'SC01', N'104', N'190', N'001-002-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-21 14:24:29.323', NULL, N'PDA1', N'2025-04-21 17:19:10.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'145', N'1686', N'自动完成', N'2025-04-23 14:39:23.747', N'602', N'0', N'0', N'25000490', N'SC01', N'104', N'190', N'001-003-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-23 14:01:14.257', NULL, N'PDA1', N'2025-04-23 14:39:23.750', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'146', N'1687', N'自动完成', N'2025-04-23 14:39:28.310', N'603', N'0', N'0', N'25000276', N'SC01', N'104', N'190', N'001-003-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-23 14:04:20.340', NULL, N'PDA1', N'2025-04-23 14:39:28.310', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'147', N'1688', N'自动完成', N'2025-04-23 14:39:31.397', N'604', N'0', N'0', N'25000050', N'SC01', N'104', N'190', N'001-003-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-23 14:04:21.697', NULL, N'PDA1', N'2025-04-23 14:39:31.397', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'148', N'1689', N'自动完成', N'2025-04-23 14:50:23.067', N'605', N'0', N'0', N'25000002', N'SC01', N'104', N'190', N'001-003-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-23 14:04:22.910', NULL, N'PDA1', N'2025-04-23 14:50:23.067', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'149', N'1690', N'自动完成', N'2025-04-23 14:50:26.637', N'606', N'0', N'0', N'25000430', N'SC01', N'104', N'190', N'001-003-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-23 14:04:24.010', NULL, N'PDA1', N'2025-04-23 14:50:26.637', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'150', N'1692', N'自动完成', N'2025-04-23 15:19:46.937', N'608', N'0', N'0', N'25000231', N'SC01', N'104', N'190', N'001-003-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-23 14:04:26.650', NULL, N'PDA1', N'2025-04-23 15:19:46.937', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'151', N'1693', N'自动完成', N'2025-04-23 15:19:49.907', N'609', N'0', N'0', N'25000134', N'SC01', N'104', N'190', N'001-003-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-23 14:04:27.767', NULL, N'PDA1', N'2025-04-23 15:19:49.907', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'152', N'1691', N'自动完成', N'2025-04-23 15:19:52.517', N'607', N'0', N'0', N'25000493', N'SC01', N'104', N'190', N'001-003-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-23 14:04:25.500', NULL, N'PDA1', N'2025-04-23 15:19:52.517', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'153', N'1694', N'自动完成', N'2025-04-23 15:57:08.203', N'610', N'0', N'0', N'25000360', N'SC01', N'104', N'190', N'001-003-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-23 14:04:29.010', NULL, N'PDA1', N'2025-04-23 15:57:08.203', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'154', N'1695', N'自动完成', N'2025-04-24 15:57:11.017', N'611', N'0', N'0', N'25000480', N'SC01', N'104', N'190', N'001-003-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-23 14:04:30.160', NULL, N'PDA1', N'2025-04-23 15:57:11.020', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'155', N'1696', N'自动完成', N'2025-04-26 15:57:13.577', N'612', N'0', N'0', N'25000126', N'SC01', N'104', N'190', N'001-003-001', N'D003', N'D003', N'', N'', N'0', N'2025-04-23 14:04:31.227', NULL, N'PDA1', N'2025-04-23 15:57:13.577', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'156', N'1697', N'自动完成', N'2025-04-23 16:18:41.390', N'613', N'0', N'0', N'25000370', N'SC01', N'104', N'190', N'001-003-001', N'D001', N'D001', N'', N'', N'0', N'2025-04-23 14:04:32.280', NULL, N'PDA1', N'2025-04-23 16:18:41.393', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'157', N'1698', N'自动完成', N'2025-04-25 16:18:44.123', N'614', N'0', N'0', N'25000070', N'SC01', N'104', N'190', N'001-003-001', N'D002', N'D002', N'', N'', N'0', N'2025-04-23 14:04:33.530', NULL, N'PDA1', N'2025-04-23 16:18:44.123', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'158', N'1771', N'自动完成', N'2025-04-24 15:01:30.350', N'616', N'0', N'0', N'25000001', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T1', N'0', N'2025-04-24 10:42:42.527', NULL, N'System', N'2025-04-24 15:01:30.353', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'159', N'1772', N'自动完成', N'2025-04-24 15:02:51.530', N'617', N'0', N'0', N'25000002', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T1', N'0', N'2025-04-24 10:45:29.817', NULL, N'System', N'2025-04-24 15:02:51.530', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'160', N'1773', N'自动完成', N'2025-04-24 15:02:55.703', N'618', N'0', N'0', N'25000003', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T1', N'0', N'2025-04-24 10:45:35.887', NULL, N'System', N'2025-04-24 15:02:55.703', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'161', N'1774', N'自动完成', N'2025-04-24 15:02:59.240', N'619', N'0', N'0', N'25000004', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T1', N'0', N'2025-04-24 10:45:38.430', NULL, N'System', N'2025-04-24 15:02:59.240', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'162', N'1775', N'自动完成', N'2025-04-24 15:03:02.380', N'620', N'0', N'0', N'25000005', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T1', N'0', N'2025-04-24 10:45:40.527', NULL, N'System', N'2025-04-24 15:03:02.380', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'163', N'1776', N'自动完成', N'2025-04-24 15:03:05.810', N'621', N'0', N'0', N'25000006', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T1', N'0', N'2025-04-24 10:45:43.227', NULL, N'System', N'2025-04-24 15:03:05.810', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'164', N'1777', N'自动完成', N'2025-04-24 15:03:09.127', N'622', N'0', N'0', N'25000007', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T1', N'0', N'2025-04-24 10:45:46.217', NULL, N'System', N'2025-04-24 15:03:09.127', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'165', N'1778', N'自动完成', N'2025-04-24 15:03:11.757', N'623', N'0', N'0', N'25000008', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T1', N'0', N'2025-04-24 10:45:48.403', NULL, N'System', N'2025-04-24 15:03:11.757', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'166', N'1779', N'自动完成', N'2025-04-24 15:03:15.657', N'624', N'0', N'0', N'25000009', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T1', N'0', N'2025-04-24 10:45:51.403', NULL, N'System', N'2025-04-24 15:03:15.657', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'167', N'1780', N'自动完成', N'2025-04-24 15:04:02.460', N'625', N'0', N'0', N'25000010', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T1', N'0', N'2025-04-24 10:45:55.080', NULL, N'System', N'2025-04-24 15:04:02.460', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'168', N'1781', N'自动完成', N'2025-04-24 15:04:04.993', N'626', N'0', N'0', N'25000011', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T1', N'0', N'2025-04-24 10:45:57.387', NULL, N'System', N'2025-04-24 15:04:04.993', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'169', N'1782', N'自动完成', N'2025-04-24 15:04:07.883', N'627', N'0', N'0', N'25000012', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T1', N'0', N'2025-04-24 10:46:02.863', NULL, N'System', N'2025-04-24 15:04:07.883', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'170', N'1783', N'自动完成', N'2025-04-24 15:05:07.623', N'628', N'0', N'0', N'25000013', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T2', N'0', N'2025-04-24 10:46:39.193', NULL, N'System', N'2025-04-24 15:05:07.623', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'171', N'1784', N'自动完成', N'2025-04-24 15:05:12.300', N'629', N'0', N'0', N'25000014', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T2', N'0', N'2025-04-24 10:46:44.900', NULL, N'System', N'2025-04-24 15:05:12.303', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'172', N'1785', N'自动完成', N'2025-04-24 15:05:15.710', N'630', N'0', N'0', N'25000015', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T2', N'0', N'2025-04-24 10:46:48.547', NULL, N'System', N'2025-04-24 15:05:15.710', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'173', N'1786', N'自动完成', N'2025-04-24 15:05:18.853', N'631', N'0', N'0', N'25000016', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T2', N'0', N'2025-04-24 10:46:51.067', NULL, N'System', N'2025-04-24 15:05:18.853', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'174', N'1787', N'自动完成', N'2025-04-24 15:05:20.923', N'632', N'0', N'0', N'25000017', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T2', N'0', N'2025-04-24 10:46:55.327', NULL, N'System', N'2025-04-24 15:05:20.923', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'175', N'1788', N'自动完成', N'2025-04-24 15:05:23.687', N'633', N'0', N'0', N'25000018', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T2', N'0', N'2025-04-24 10:46:57.963', NULL, N'System', N'2025-04-24 15:05:23.687', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'176', N'1789', N'自动完成', N'2025-04-24 15:05:32.443', N'634', N'0', N'0', N'25000019', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T2', N'0', N'2025-04-24 10:47:01.257', NULL, N'System', N'2025-04-24 15:05:32.443', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'177', N'1790', N'自动完成', N'2025-04-24 15:05:35.430', N'635', N'0', N'0', N'25000020', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T2', N'0', N'2025-04-24 10:47:05.170', NULL, N'System', N'2025-04-24 15:05:35.433', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'178', N'1791', N'自动完成', N'2025-04-24 15:05:37.840', N'636', N'0', N'0', N'25000021', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T2', N'0', N'2025-04-24 10:47:07.467', NULL, N'System', N'2025-04-24 15:05:37.840', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'179', N'1792', N'自动完成', N'2025-04-24 15:05:40.603', N'637', N'0', N'0', N'25000022', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T2', N'0', N'2025-04-24 10:47:09.893', NULL, N'System', N'2025-04-24 15:05:40.603', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'180', N'1793', N'自动完成', N'2025-04-24 15:05:44.933', N'638', N'0', N'0', N'25000023', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T2', N'0', N'2025-04-24 10:47:13.213', NULL, N'System', N'2025-04-24 15:05:44.933', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'181', N'1794', N'自动完成', N'2025-04-24 15:05:50.033', N'639', N'0', N'1', N'25000024', N'SC01', N'200', N'290', N'MDX01', N'001-002-001', N'001-002-001', N'', N'2504221T2', N'0', N'2025-04-24 10:47:15.783', NULL, N'System', N'2025-04-24 15:05:50.033', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'184', N'1795', N'自动完成', N'2025-04-24 15:08:57.903', N'640', N'0', N'0', N'25000025', N'SC01', N'200', N'290', N'MDX01', N'002-003-001', N'002-003-001', N'', N'2504221T3', N'0', N'2025-04-24 11:02:58.270', NULL, N'System', N'2025-04-24 15:08:57.903', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'185', N'1796', N'自动完成', N'2025-04-24 15:09:24.247', N'641', N'0', N'0', N'25000026', N'SC01', N'200', N'290', N'MDX01', N'002-003-001', N'002-003-001', N'', N'2504221T3', N'0', N'2025-04-24 11:03:02.007', NULL, N'System', N'2025-04-24 15:09:24.247', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'186', N'1797', N'自动完成', N'2025-04-24 15:09:26.743', N'642', N'0', N'0', N'25000027', N'SC01', N'200', N'290', N'MDX01', N'002-003-001', N'002-003-001', N'', N'2504221T3', N'0', N'2025-04-24 11:03:04.393', NULL, N'System', N'2025-04-24 15:09:26.743', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'187', N'1798', N'自动完成', N'2025-04-24 15:09:29.357', N'643', N'0', N'0', N'25000028', N'SC01', N'200', N'290', N'MDX01', N'002-003-001', N'002-003-001', N'', N'2504221T3', N'0', N'2025-04-24 11:03:07.990', NULL, N'System', N'2025-04-24 15:09:29.360', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'188', N'1799', N'自动完成', N'2025-04-24 15:09:32.203', N'644', N'0', N'0', N'25000029', N'SC01', N'200', N'290', N'MDX01', N'002-003-001', N'002-003-001', N'', N'2504221T3', N'0', N'2025-04-24 11:03:11.457', NULL, N'System', N'2025-04-24 15:09:32.203', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'189', N'1800', N'自动完成', N'2025-04-24 15:09:34.347', N'645', N'0', N'0', N'25000030', N'SC01', N'200', N'290', N'MDX01', N'002-003-001', N'002-003-001', N'', N'2504221T3', N'0', N'2025-04-24 11:03:14.597', NULL, N'System', N'2025-04-24 15:09:34.347', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'190', N'1801', N'自动完成', N'2025-04-24 15:09:36.907', N'646', N'0', N'0', N'25000031', N'SC01', N'200', N'290', N'MDX01', N'002-003-001', N'002-003-001', N'', N'2504221T3', N'0', N'2025-04-24 11:03:17.337', NULL, N'System', N'2025-04-24 15:09:36.907', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'191', N'1802', N'自动完成', N'2025-04-24 15:10:44.277', N'647', N'0', N'0', N'25000032', N'SC01', N'200', N'290', N'MDX01', N'002-003-001', N'002-003-001', N'', N'2504221T3', N'0', N'2025-04-24 11:03:20.600', NULL, N'System', N'2025-04-24 15:10:44.277', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'192', N'1803', N'自动完成', N'2025-04-24 15:10:47.347', N'648', N'0', N'0', N'25000033', N'SC01', N'200', N'290', N'MDX01', N'002-003-001', N'002-003-001', N'', N'2504221T3', N'0', N'2025-04-24 11:03:23.090', NULL, N'System', N'2025-04-24 15:10:47.347', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'193', N'1804', N'自动完成', N'2025-04-24 15:11:01.187', N'649', N'0', N'0', N'25000034', N'SC01', N'200', N'290', N'MDX01', N'002-003-001', N'002-003-001', N'', N'2504221T3', N'0', N'2025-04-24 11:03:25.623', NULL, N'System', N'2025-04-24 15:11:01.187', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'194', N'1805', N'自动完成', N'2025-04-24 15:11:05.487', N'650', N'0', N'0', N'25000035', N'SC01', N'200', N'290', N'MDX01', N'002-003-001', N'002-003-001', N'', N'2504221T3', N'0', N'2025-04-24 11:03:28.367', NULL, N'System', N'2025-04-24 15:11:05.487', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'196', N'1806', N'自动完成', N'2025-04-24 15:16:03.330', N'651', N'0', N'1', N'25000036', N'SC01', N'200', N'290', N'MDX01', N'002-003-001', N'002-003-001', N'', N'2504221T3', N'0', N'2025-04-24 11:03:31.477', NULL, N'System', N'2025-04-24 15:16:03.343', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'197', N'1807', N'自动完成', N'2025-04-24 16:06:10.510', N'652', N'0', N'0', N'25000037', N'SC01', N'200', N'290', N'MDX01', N'002-004-001', N'002-004-001', N'', N'2504241T', N'0', N'2025-04-24 14:45:06.810', NULL, N'System', N'2025-04-24 16:06:10.523', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'198', N'1808', N'自动完成', N'2025-04-24 16:06:12.953', N'653', N'0', N'0', N'25000038', N'SC01', N'200', N'290', N'MDX01', N'002-004-001', N'002-004-001', N'', N'2504241T', N'0', N'2025-04-24 14:45:15.707', NULL, N'System', N'2025-04-24 16:06:12.953', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'199', N'1809', N'自动完成', N'2025-04-24 16:06:15.357', N'654', N'0', N'0', N'25000039', N'SC01', N'200', N'290', N'MDX01', N'002-004-001', N'002-004-001', N'', N'2504241T', N'0', N'2025-04-24 14:45:19.093', NULL, N'System', N'2025-04-24 16:06:15.357', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'200', N'1810', N'自动完成', N'2025-04-24 16:06:18.190', N'655', N'0', N'0', N'25000040', N'SC01', N'200', N'290', N'MDX01', N'002-004-001', N'002-004-001', N'', N'2504241T', N'0', N'2025-04-24 14:45:24.050', NULL, N'System', N'2025-04-24 16:06:18.190', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'201', N'1811', N'自动完成', N'2025-04-24 16:06:20.863', N'656', N'0', N'0', N'25000041', N'SC01', N'200', N'290', N'MDX01', N'002-004-001', N'002-004-001', N'', N'2504241T', N'0', N'2025-04-24 14:45:26.340', NULL, N'System', N'2025-04-24 16:06:20.863', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'202', N'1812', N'自动完成', N'2025-04-24 16:06:23.213', N'657', N'0', N'0', N'25000042', N'SC01', N'200', N'290', N'MDX01', N'002-004-001', N'002-004-001', N'', N'2504241T', N'0', N'2025-04-24 14:45:29.293', NULL, N'System', N'2025-04-24 16:06:23.213', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'203', N'1813', N'自动完成', N'2025-04-24 16:06:26.683', N'658', N'0', N'0', N'25000043', N'SC01', N'200', N'290', N'MDX01', N'002-004-001', N'002-004-001', N'', N'2504241T', N'0', N'2025-04-24 14:45:32.323', NULL, N'System', N'2025-04-24 16:06:26.683', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'204', N'1814', N'自动完成', N'2025-04-24 16:06:28.997', N'659', N'0', N'0', N'25000044', N'SC01', N'200', N'290', N'MDX01', N'002-004-001', N'002-004-001', N'', N'2504241T', N'0', N'2025-04-24 14:45:35.537', NULL, N'System', N'2025-04-24 16:06:28.997', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'205', N'1815', N'自动完成', N'2025-04-24 16:06:33.663', N'660', N'0', N'0', N'25000045', N'SC01', N'200', N'290', N'MDX01', N'002-004-001', N'002-004-001', N'', N'2504241T', N'0', N'2025-04-24 14:45:38.173', NULL, N'System', N'2025-04-24 16:06:33.663', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'206', N'1816', N'自动完成', N'2025-04-24 16:06:36.403', N'661', N'0', N'0', N'25000046', N'SC01', N'200', N'290', N'MDX01', N'002-004-001', N'002-004-001', N'', N'2504241T', N'0', N'2025-04-24 14:45:40.637', NULL, N'System', N'2025-04-24 16:06:36.403', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'207', N'1817', N'自动完成', N'2025-04-24 16:06:38.947', N'662', N'0', N'0', N'25000047', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T1', N'0', N'2025-04-24 14:46:51.817', NULL, N'System', N'2025-04-24 16:06:38.947', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'208', N'1818', N'自动完成', N'2025-04-24 16:06:41.217', N'663', N'0', N'0', N'25000048', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T1', N'0', N'2025-04-24 14:46:57.170', NULL, N'System', N'2025-04-24 16:06:41.217', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'209', N'1819', N'自动完成', N'2025-04-24 16:06:43.787', N'664', N'0', N'0', N'25000049', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T1', N'0', N'2025-04-24 14:47:01.157', NULL, N'System', N'2025-04-24 16:06:43.787', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'210', N'1820', N'自动完成', N'2025-04-24 16:06:46.320', N'665', N'0', N'0', N'25000050', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T1', N'0', N'2025-04-24 14:47:06.310', NULL, N'System', N'2025-04-24 16:06:46.320', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'211', N'1821', N'自动完成', N'2025-04-24 16:06:48.733', N'666', N'0', N'0', N'25000051', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T1', N'0', N'2025-04-24 14:47:08.827', NULL, N'System', N'2025-04-24 16:06:48.733', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'212', N'1822', N'自动完成', N'2025-04-24 16:06:51.683', N'667', N'0', N'0', N'25000052', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T1', N'0', N'2025-04-24 14:47:12.453', NULL, N'System', N'2025-04-24 16:06:51.683', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'213', N'1823', N'自动完成', N'2025-04-24 16:06:54.063', N'668', N'0', N'0', N'25000053', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T1', N'0', N'2025-04-24 14:47:15.853', NULL, N'System', N'2025-04-24 16:06:54.063', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'214', N'1824', N'自动完成', N'2025-04-24 16:06:59.837', N'669', N'0', N'0', N'25000054', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T1', N'0', N'2025-04-24 14:47:18.297', NULL, N'System', N'2025-04-24 16:06:59.837', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'215', N'1825', N'自动完成', N'2025-04-24 16:07:04.543', N'670', N'0', N'0', N'25000055', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T1', N'0', N'2025-04-24 14:47:20.897', NULL, N'System', N'2025-04-24 16:07:04.543', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'216', N'1826', N'自动完成', N'2025-04-24 16:07:12.320', N'671', N'0', N'0', N'25000056', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T1', N'0', N'2025-04-24 14:47:23.450', NULL, N'System', N'2025-04-24 16:07:12.320', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'217', N'1827', N'自动完成', N'2025-04-24 16:07:14.753', N'672', N'0', N'0', N'25000057', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T1', N'0', N'2025-04-24 14:47:26.410', NULL, N'System', N'2025-04-24 16:07:14.753', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'218', N'1828', N'自动完成', N'2025-04-24 16:07:17.220', N'673', N'0', N'0', N'25000058', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T1', N'0', N'2025-04-24 14:47:29.403', NULL, N'System', N'2025-04-24 16:07:17.220', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'219', N'1829', N'自动完成', N'2025-04-24 16:08:10.273', N'674', N'0', N'0', N'25000059', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T2', N'0', N'2025-04-24 14:47:41.210', NULL, N'System', N'2025-04-24 16:08:10.273', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'220', N'1830', N'自动完成', N'2025-04-24 16:08:20.080', N'675', N'0', N'0', N'25000060', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T2', N'0', N'2025-04-24 14:47:47.840', NULL, N'System', N'2025-04-24 16:08:20.083', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'221', N'1831', N'自动完成', N'2025-04-24 16:08:23.833', N'676', N'0', N'0', N'25000061', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T2', N'0', N'2025-04-24 14:47:50.453', NULL, N'System', N'2025-04-24 16:08:23.833', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'222', N'1832', N'自动完成', N'2025-04-24 16:08:27.400', N'677', N'0', N'0', N'25000062', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T2', N'0', N'2025-04-24 14:47:53.947', NULL, N'System', N'2025-04-24 16:08:27.400', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'223', N'1833', N'自动完成', N'2025-04-24 16:08:30.020', N'678', N'0', N'0', N'25000063', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T2', N'0', N'2025-04-24 14:47:56.560', NULL, N'System', N'2025-04-24 16:08:30.020', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'224', N'1834', N'自动完成', N'2025-04-24 16:08:33.010', N'679', N'0', N'0', N'25000064', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T2', N'0', N'2025-04-24 14:48:00.810', NULL, N'System', N'2025-04-24 16:08:33.010', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'225', N'1835', N'自动完成', N'2025-04-24 16:08:38.413', N'680', N'0', N'0', N'25000065', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T2', N'0', N'2025-04-24 14:48:02.867', NULL, N'System', N'2025-04-24 16:08:38.417', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'226', N'1836', N'自动完成', N'2025-04-24 16:08:41.263', N'681', N'0', N'0', N'25000066', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T2', N'0', N'2025-04-24 14:48:06.033', NULL, N'System', N'2025-04-24 16:08:41.263', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'227', N'1837', N'自动完成', N'2025-04-24 16:08:43.830', N'682', N'0', N'0', N'25000067', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T2', N'0', N'2025-04-24 14:48:09.043', NULL, N'System', N'2025-04-24 16:08:43.830', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'228', N'1838', N'自动完成', N'2025-04-24 16:08:46.203', N'683', N'0', N'0', N'25000068', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T2', N'0', N'2025-04-24 14:48:12.217', NULL, N'System', N'2025-04-24 16:08:46.203', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'229', N'1839', N'自动完成', N'2025-04-26 16:09:05.650', N'684', N'0', N'0', N'25000069', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T2', N'0', N'2025-04-24 14:48:17.063', NULL, N'System', N'2025-04-24 16:09:05.650', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [SourceId], [OperateType], [InsertTime], [TaskNum], [SourceIsPickPlace], [TargetIsPickPlace], [PalletCode], [Roadway], [TaskType], [TaskState], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [OrderNo], [Grade], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'230', N'1840', N'自动完成', N'2025-04-26 16:10:34.083', N'685', N'0', N'1', N'25000070', N'SC01', N'200', N'290', N'MDX01', N'001-003-001', N'001-003-001', N'', N'2504242T2', N'0', N'2025-04-24 14:48:23.973', NULL, N'System', N'2025-04-24 16:10:34.083', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_Task_Hty] OFF GO -- ---------------------------- -- Table structure for Dt_Warehouse -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_Warehouse]') AND type IN ('U')) DROP TABLE [dbo].[Dt_Warehouse] GO CREATE TABLE [dbo].[Dt_Warehouse] ( [Id] int IDENTITY(1,1) NOT NULL, [WarehouseCode] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [WarehouseName] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [WarehouseType] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [WarehouseStatus] int DEFAULT '0' NOT NULL, [WarehouseDes] varchar(255) COLLATE Chinese_PRC_CI_AS 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_Warehouse] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Warehouse', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'仓库编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Warehouse', 'COLUMN', N'WarehouseCode' GO EXEC sp_addextendedproperty 'MS_Description', N'仓库名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Warehouse', 'COLUMN', N'WarehouseName' GO EXEC sp_addextendedproperty 'MS_Description', N'仓库类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Warehouse', 'COLUMN', N'WarehouseType' GO EXEC sp_addextendedproperty 'MS_Description', N'仓库状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Warehouse', 'COLUMN', N'WarehouseStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'仓库描述', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Warehouse', 'COLUMN', N'WarehouseDes' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Warehouse', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Warehouse', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Warehouse', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Warehouse', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Warehouse', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'仓库信息', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Warehouse' GO -- ---------------------------- -- Records of Dt_Warehouse -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_Warehouse] ON GO INSERT INTO [dbo].[Dt_Warehouse] ([Id], [WarehouseCode], [WarehouseName], [WarehouseType], [WarehouseStatus], [WarehouseDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'RSC1', N'1号立库', N'穿梭车立库', N'1', N'道润药业', NULL, N'admin', N'2024-10-15 15:07:26.287', N'admin', N'2024-10-29 16:43:13.980') GO SET IDENTITY_INSERT [dbo].[Dt_Warehouse] OFF GO -- ---------------------------- -- Table structure for Sys_Department -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Department]') AND type IN ('U')) DROP TABLE [dbo].[Sys_Department] GO CREATE TABLE [dbo].[Sys_Department] ( [DepartmentId] int IDENTITY(1,1) NOT NULL, [DepartmentName] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [DepartmentCode] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [ParentId] int NOT NULL, [DepartmentType] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [Enable] int NOT NULL, [Remark] varchar(2000) 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].[Sys_Department] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'组织ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'DepartmentId' GO EXEC sp_addextendedproperty 'MS_Description', N'组织名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'DepartmentName' GO EXEC sp_addextendedproperty 'MS_Description', N'组织编号', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'DepartmentCode' GO EXEC sp_addextendedproperty 'MS_Description', N'上级组织', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'ParentId' GO EXEC sp_addextendedproperty 'MS_Description', N'部门类型', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'DepartmentType' GO EXEC sp_addextendedproperty 'MS_Description', N'是否可用', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'Enable' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'组织架构', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department' GO -- ---------------------------- -- Records of Sys_Department -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_Department] ON GO SET IDENTITY_INSERT [dbo].[Sys_Department] OFF GO -- ---------------------------- -- Table structure for Sys_Dictionary -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Dictionary]') AND type IN ('U')) DROP TABLE [dbo].[Sys_Dictionary] GO CREATE TABLE [dbo].[Sys_Dictionary] ( [DicId] int IDENTITY(1,1) NOT NULL, [Config] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [Sql] varchar(500) COLLATE Chinese_PRC_CI_AS NULL, [DicName] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [DicNo] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [Enable] tinyint NULL, [OrderNo] int NULL, [ParentId] int NULL, [Remark] varchar(2000) 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].[Sys_Dictionary] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'字典ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'DicId' GO EXEC sp_addextendedproperty 'MS_Description', N'配置项', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'Config' GO EXEC sp_addextendedproperty 'MS_Description', N'Sql语句', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'Sql' GO EXEC sp_addextendedproperty 'MS_Description', N'字典名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'DicName' GO EXEC sp_addextendedproperty 'MS_Description', N'字典编号', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'DicNo' GO EXEC sp_addextendedproperty 'MS_Description', N'是否启用', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'Enable' GO EXEC sp_addextendedproperty 'MS_Description', N'排序号', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'父级ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'ParentId' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'字典数据', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary' GO -- ---------------------------- -- Records of Sys_Dictionary -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_Dictionary] ON GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'{valueField: ''Enable'', textField: ''Enable'', containField: null, handler: null }', NULL, N'是否值', N'enable', N'1', NULL, N'0', NULL, N'system', N'2024-10-15 13:49:15.360', N'超级管理员', N'2022-01-03 18:30:18.113') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'30', N'{valueField: ''Success'', textField: ''Success'', containField: null, handler: null } ', NULL, N'响应状态', N'restatus', N'1', NULL, N'0', NULL, N'system', N'2024-10-15 13:49:15.360', N'测试超级管理员', N'2018-06-12 10:21:48.000') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'31', N'{valueField: ''LogType'', textField: ''LogType'', containField: null, handler: null } ', NULL, N'日志类型', N'log', N'1', NULL, N'0', NULL, N'system', N'2024-10-15 13:49:15.360', N'超级管理员', N'2022-04-04 13:21:54.927') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'32', N'{valueField: ''Role_Id'', textField: ''RoleName'', containField: [''Role_Id'',''RoleName''], handler: null } ', N'SELECT RoleId as ''key'',RoleName as ''value'' FROM Sys_Role WHERE Enable=1', N'角色列表', N'roles', N'1', N'123', N'0', N'sql语句需要key,value列,界面才能绑定数据源', N'system', N'2024-10-15 13:49:15.360', N'测试超级管理员', N'2018-07-13 15:03:53.000') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'35', N'{ valueField: ''AuditStatus'', textField: ''AuditStatus'', containField:null }', NULL, N'审核状态', N'audit', N'1', NULL, N'0', NULL, N'system', N'2024-10-15 13:49:15.360', N'超级管理员', N'2023-05-08 01:05:44.193') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'{ valueField: ''Gender'', textField: ''Gender'', containField:null }', NULL, N'性别', N'gender', N'1', NULL, N'0', NULL, N'system', N'2024-10-15 13:49:15.360', N'测试超级管理员', N'2018-07-23 11:10:28.000') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'{ valueField: ''Enable'', textField: ''Enable'', containField:null }', NULL, N'启用状态', N'status', N'1', NULL, N'0', NULL, N'system', N'2024-10-15 13:49:15.360', NULL, N'2024-09-04 11:07:01.817') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'59', N'{ valueField: ''IsRegregisterPhone'', textField: ''IsRegregisterPhone'', containField:null }', NULL, N'手机用户', N'isphone', N'1', NULL, N'0', NULL, N'system', N'2024-10-15 13:49:15.360', N'超级管理员', N'2020-11-20 23:05:48.303') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'66', NULL, N'SELECT RoleId AS id,parentId,RoleId AS [key],RoleName AS value FROM Sys_Role', N'级联角色', N'tree_roles', N'1', NULL, N'0', NULL, N'system', N'2024-10-15 13:49:15.360', N'超级管理员', N'2020-11-20 23:08:03.217') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'67', NULL, NULL, N'nav', N'nav', N'1', NULL, N'0', NULL, N'system', N'2024-10-15 13:49:15.360', NULL, N'2024-09-04 11:07:01.817') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'70', NULL, NULL, N'请求方式', N'请求方式', N'1', NULL, N'0', NULL, N'system', N'2024-10-15 13:49:15.360', NULL, N'2024-09-04 11:07:01.817') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'71', NULL, NULL, N'定时任务状态', N'定时任务状态', N'1', NULL, N'0', NULL, N'system', N'2024-10-15 13:49:15.360', NULL, N'2024-09-04 11:07:01.817') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'72', NULL, N'SELECT DepartmentId AS ''key'',DepartmentId AS ''id'',ParentId AS parentId,DepartmentName as ''value'' FROM Sys_Department', N'组织机构', N'组织机构', N'1', NULL, N'0', NULL, N'system', N'2024-10-15 13:49:15.360', NULL, N'2024-09-04 11:07:01.817') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'75', NULL, NULL, N'日志状态', N'LogState', N'1', NULL, N'0', NULL, N'超级管理员', N'2024-10-15 13:49:15.360', NULL, N'2024-09-04 11:07:01.817') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'78', NULL, N'SELECT Id AS ''key'', WarehouseName AS ''value'' FROM Dt_Warehouse UNION ALL SELECT ''0'' AS ''key'', ''无'' AS ''value''', N'仓库', N'warehouse', N'1', NULL, N'0', NULL, N'admin', N'2024-10-15 13:49:15.360', NULL, NULL) GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'79', NULL, N'SELECT Id AS ''key'', AreaName AS ''value'' FROM Dt_AreaInfo UNION ALL SELECT ''0'' AS ''key'', ''无'' AS ''value''', N'区域', N'areainfo', N'1', NULL, N'0', NULL, N'admin', N'2024-10-15 13:49:15.360', NULL, NULL) GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'81', N'{ valueField: ''Enable'', textField: ''Enable'', containField:null }', NULL, N'是否值', N'yesno', N'1', N'0', N'0', NULL, N'admin', N'2024-10-15 13:49:15.360', NULL, NULL) GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'82', NULL, N'SELECT MaterielCode AS ''key'', MaterielCode AS ''value'' FROM Dt_MaterielInfo', N'物料', N'materielInfo', N'1', NULL, N'0', NULL, N'admin', N'2024-10-15 13:49:15.360', NULL, NULL) GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1082', NULL, N'SELECT Id AS ''key'', PalletCode AS ''value'' FROM Dt_StockInfo', N'托盘号', N'palletCodes', N'1', NULL, N'0', NULL, N'admin', N'2024-10-15 13:49:15.360', NULL, NULL) GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1083', NULL, N'SELECT DISTINCT BatchNo AS ''key'', BatchNo AS ''value'' FROM Dt_StockInfoDetail WHERE Status=5', N'库存批号', N'StockbatchNos', N'1', NULL, N'0', NULL, N'admin', N'2024-10-15 13:49:15.360', NULL, NULL) GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1084', NULL, N'SELECT LocationCode AS ''key'', LocationCode AS ''value'' FROM Dt_LocationInfo WHERE EnableStatus=0', N'可入货位编号', N'locationCodes', N'1', NULL, N'0', NULL, N'admin', N'2024-11-20 21:06:59.000', NULL, NULL) GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [Sql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2084', NULL, N'SELECT DISTINCT MaterielCode AS ''key'', MaterielCode AS ''value'' FROM Dt_StockInfoDetail WHERE Status=5', N'库存物料', N'StockMaterielCodes', N'1', NULL, N'0', NULL, N'admin', N'2024-10-15 13:49:15.360', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Sys_Dictionary] OFF GO -- ---------------------------- -- Table structure for Sys_DictionaryList -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_DictionaryList]') AND type IN ('U')) DROP TABLE [dbo].[Sys_DictionaryList] GO CREATE TABLE [dbo].[Sys_DictionaryList] ( [DicListId] int IDENTITY(1,1) NOT NULL, [DicName] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [DicValue] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [DicId] int NOT NULL, [Enable] tinyint NULL, [OrderNo] int NULL, [Remark] varchar(2000) 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].[Sys_DictionaryList] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'字典列表ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'DicListId' GO EXEC sp_addextendedproperty 'MS_Description', N'数据源Text', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'DicName' GO EXEC sp_addextendedproperty 'MS_Description', N'数据源Value', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'DicValue' GO EXEC sp_addextendedproperty 'MS_Description', N'数据源ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'DicId' GO EXEC sp_addextendedproperty 'MS_Description', N'是否可用', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'Enable' GO EXEC sp_addextendedproperty 'MS_Description', N'排序号', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'字典明细', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList' GO -- ---------------------------- -- Records of Sys_DictionaryList -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_DictionaryList] ON GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'否', N'0', N'3', NULL, N'2', NULL, N'admin', N'2024-10-21 14:40:51.787', N'超级管理员', N'2022-01-03 18:30:18.113') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'是', N'1', N'3', NULL, N'1', NULL, N'xxx', N'2024-10-21 14:40:51.787', N'超级管理员', N'2022-01-03 18:30:18.113') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'22', N'其他', N'0', N'30', NULL, N'10', NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2019-08-21 16:49:43.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'23', N'成功', N'1', N'30', NULL, N'100', NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2019-08-21 16:49:43.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'24', N'异常', N'2', N'30', NULL, N'50', NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2019-08-21 16:49:43.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'25', N'系统', N'System', N'31', NULL, N'100', NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2022-04-04 13:21:54.947') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'26', N'登陆', N'Login', N'31', NULL, N'90', NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2022-04-04 13:21:54.947') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'27', N'新建', N'Add', N'31', NULL, NULL, NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2022-04-04 13:21:54.943') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'28', N'删除', N'Del', N'31', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2022-04-04 13:21:54.943') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'29', N'编辑', N'Edit', N'31', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2022-04-04 13:21:54.943') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'37', N'待审核', N'0', N'35', N'0', NULL, NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2023-05-08 01:05:44.193') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'38', N'审核通过', N'1', N'35', NULL, NULL, NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2023-05-08 01:05:44.193') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'39', N'审核中', N'2', N'35', N'0', NULL, NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2023-05-08 01:05:44.193') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'71', N'异常', N'Exception', N'31', N'0', NULL, NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2022-04-04 13:21:54.943') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'90', N'男', N'0', N'49', NULL, NULL, NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'测试超级管理员', N'2018-07-23 11:10:28.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'91', N'女', N'1', N'49', NULL, NULL, NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'测试超级管理员', N'2018-07-23 11:10:28.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'96', N'未启用', N'0', N'50', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2019-08-16 18:17:47.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'97', N'已启用', N'1', N'50', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2019-08-16 18:17:47.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'98', N'已删除', N'2', N'50', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2019-08-16 18:17:47.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'128', N'是', N'1', N'59', N'0', NULL, NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2020-11-20 23:05:48.303') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'129', N'否', N'0', N'59', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2020-11-20 23:05:48.303') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'144', N'刷新Token', N'ReplaceToeken', N'31', NULL, N'110', NULL, N'超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2022-04-04 13:21:54.937') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'145', N'Info', N'3', N'30', NULL, NULL, NULL, N'超级管理员', N'2024-10-21 14:40:51.787', NULL, N'2024-09-04 11:07:07.187') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'423', N'是', N'1', N'67', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 14:40:51.787', NULL, N'2024-09-04 11:07:07.187') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'424', N'否', N'0', N'67', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 14:40:51.787', NULL, N'2024-09-04 11:07:07.187') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'435', N'审核未通过', N'3', N'35', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 14:40:51.787', N'超级管理员', N'2023-05-08 01:05:44.193') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'436', N'get', N'get', N'70', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 14:40:51.787', NULL, N'2024-09-04 11:07:07.187') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'437', N'post', N'post', N'70', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 14:40:51.787', NULL, N'2024-09-04 11:07:07.187') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'438', N'正常', N'0', N'71', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 14:40:51.787', NULL, N'2024-09-04 11:07:07.187') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'439', N'暂停', N'1', N'71', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 14:40:51.787', NULL, N'2024-09-04 11:07:07.187') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'442', N'驳回', N'4', N'35', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 14:40:51.787', NULL, N'2024-09-04 11:07:07.187') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'443', N'禁用', N'DisEnable', N'73', N'1', N'1', NULL, N'超级管理员', N'2024-10-21 14:40:51.787', N'开发', N'2023-07-14 14:17:01.037') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'444', N'启用', N'Enable', N'73', N'1', N'0', NULL, N'超级管理员', N'2024-10-21 14:40:51.787', N'开发', N'2023-07-14 14:17:01.017') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'449', N'信息', N'Info', N'75', N'0', N'1', NULL, N'超级管理员', N'2024-10-21 14:40:51.787', NULL, N'2024-09-04 11:07:07.187') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'450', N'成功', N'Sucess', N'75', N'0', N'2', NULL, N'超级管理员', N'2024-10-21 14:40:51.787', NULL, N'2024-09-04 11:07:07.187') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'451', N'失败', N'Error', N'75', N'0', N'3', NULL, N'超级管理员', N'2024-10-21 14:40:51.787', NULL, N'2024-09-04 11:07:07.187') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'456', N'未审核', N'OrderState_Unaudited', N'84', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 14:40:51.787', NULL, N'2024-09-04 11:07:07.187') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'457', N'已审核', N'OrderState_Audited', N'84', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 14:40:51.787', NULL, N'2024-09-04 11:07:07.187') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'458', N'是', N'true', N'81', NULL, NULL, NULL, N'admin', N'2024-10-21 14:40:51.787', NULL, NULL) GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'459', N'否', N'false', N'81', NULL, NULL, NULL, N'admin', N'2024-10-21 14:40:51.787', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Sys_DictionaryList] OFF GO -- ---------------------------- -- Table structure for Sys_Log -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Log]') AND type IN ('U')) DROP TABLE [dbo].[Sys_Log] GO CREATE TABLE [dbo].[Sys_Log] ( [Id] int IDENTITY(1,1) NOT NULL, [BeginDate] datetime NULL, [ElapsedTime] int NULL, [EndDate] datetime NULL, [RequestParam] varchar(2000) COLLATE Chinese_PRC_CI_AS NULL, [ResponseParam] varchar(2000) COLLATE Chinese_PRC_CI_AS NULL, [Success] int NULL, [Url] varchar(2000) COLLATE Chinese_PRC_CI_AS NULL, [UserIP] varchar(20) COLLATE Chinese_PRC_CI_AS NULL, [UserName] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [MethodName] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [Methodremark] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [User_Id] int NULL ) GO ALTER TABLE [dbo].[Sys_Log] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'开始时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'BeginDate' GO EXEC sp_addextendedproperty 'MS_Description', N'时长', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'ElapsedTime' GO EXEC sp_addextendedproperty 'MS_Description', N'结束时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'EndDate' GO EXEC sp_addextendedproperty 'MS_Description', N'请求参数', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'RequestParam' GO EXEC sp_addextendedproperty 'MS_Description', N'响应参数', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'ResponseParam' GO EXEC sp_addextendedproperty 'MS_Description', N'响应状态', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'Success' GO EXEC sp_addextendedproperty 'MS_Description', N'请求地址', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'Url' GO EXEC sp_addextendedproperty 'MS_Description', N'用户IP', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'UserIP' GO EXEC sp_addextendedproperty 'MS_Description', N'用户名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'UserName' GO EXEC sp_addextendedproperty 'MS_Description', N'方法名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'MethodName' GO EXEC sp_addextendedproperty 'MS_Description', N'方法描述', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'Methodremark' GO EXEC sp_addextendedproperty 'MS_Description', N'用户主键', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'User_Id' GO EXEC sp_addextendedproperty 'MS_Description', N'接口日志', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log' GO -- ---------------------------- -- Records of Sys_Log -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_Log] ON GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1', N'2025-02-11 13:32:25.320', N'464', N'2025-02-11 13:32:25.783', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"5513f84a-bbd6-4dea-b681-db453bd1cc8d\"}"}', N'', NULL, N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', NULL, NULL, NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2', N'2025-02-11 13:35:00.217', N'79', N'2025-02-11 13:35:00.297', N'{"QueryString":"","BodyData":"{\"menuId\":29,\"parentId\":20,\"menuName\":\"库存信息\",\"tableName\":\"Dt_StockInfo\",\"url\":\"/stockInfo\",\"auth\":\"[{\\\"text\\\":\\\"查询\\\",\\\"value\\\":\\\"Search\\\"},{\\\"text\\\":\\\"新建\\\",\\\"value\\\":\\\"Add\\\"},{\\\"text\\\":\\\"删除\\\",\\\"value\\\":\\\"Delete\\\"},{\\\"text\\\":\\\"编辑\\\",\\\"value\\\":\\\"Update\\\"}]\",\"icon\":\"\",\"orderNo\":10000,\"enable\":1,\"menuType\":0}"}', N'', NULL, N'http://127.0.0.1:9290/api/Sys_Menu/save', N'127.0.0.1', N'admin', NULL, NULL, NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3', N'2025-02-11 13:50:56.500', N'527', N'2025-02-11 13:50:57.027', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"57c6db8f-11b1-4ff2-a817-1c267a07a02f\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'4', N'2025-02-11 13:51:31.060', N'83', N'2025-02-11 13:51:31.143', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"4f410796-148f-4ea9-9f14-912017850986\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'5', N'2025-02-11 13:55:53.930', N'77', N'2025-02-11 13:55:54.007', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"c40b3ffd-0c2e-40f5-bbc7-73bc72bc05a5\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'6', N'2025-02-11 13:56:41.920', N'54', N'2025-02-11 13:56:41.973', N'{"QueryString":"","BodyData":"{\"menuId\":3,\"parentId\":1,\"menuName\":\"权限管理\",\"tableName\":\",\",\"url\":\"/permission\",\"auth\":\"[{\\\"text\\\":\\\"查询\\\",\\\"value\\\":\\\"Search\\\"},{\\\"text\\\":\\\"编辑\\\",\\\"value\\\":\\\"Update\\\"}]\",\"icon\":\"ivu-icon ivu-icon-ios-boat\",\"orderNo\":1000,\"enable\":1,\"menuType\":0}"}', N'', N'1', N'http://127.0.0.1:9290/api/Sys_Menu/save', N'127.0.0.1', N'admin', N'Save', N'Save', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'7', N'2025-02-11 13:58:01.847', N'25', N'2025-02-11 13:58:01.873', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"00233201\",\"orderStatus\":\"\",\"createType\":\"\",\"orderType\":\"100\",\"upperOrderNo\":\"\",\"remark\":\"\"},\"detailData\":[],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/InboundOrder/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'8', N'2025-02-11 13:58:18.590', N'100', N'2025-02-11 13:58:18.690', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"00233201\",\"orderStatus\":\"\",\"createType\":\"\",\"orderType\":\"100\",\"upperOrderNo\":\"\",\"remark\":\"\"},\"detailData\":[{\"materielCode\":\"1\",\"materielName\":\"1\",\"batchNo\":\"110\",\"orderQuantity\":\"11\",\"elementIndex\":0}],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/InboundOrder/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'9', N'2025-02-11 14:03:13.863', N'4', N'2025-02-11 14:03:13.867', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"21\",\"orderStatus\":\"\",\"createType\":\"\",\"orderType\":\"100\",\"upperOrderNo\":\"\",\"remark\":\"\"},\"detailData\":[],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/InboundOrder/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'10', N'2025-02-11 15:36:59.637', N'5', N'2025-02-11 15:36:59.643', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTczOTI1OTQxOSIsIm5iZiI6IjE3MzkyNTk0MTkiLCJleHAiOiIxNzM5MjY2NjE5IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.EDTLaYHZ_JvGc1P8GOe9ZkTySPKMEtlF2E7ZbQ1in2g","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'11', N'2025-02-11 15:36:59.647', N'7', N'2025-02-11 15:36:59.653', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'12', N'2025-02-11 15:37:02.823', N'8', N'2025-02-11 15:37:02.830', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"80b471ab-e57e-4e9b-9448-6f013dcb8b37\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'13', N'2025-02-15 10:18:14.347', N'1174', N'2025-02-15 10:18:15.523', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"060f006a-b2f3-4988-a758-bef134a89591\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'14', N'2025-02-16 09:32:05.997', N'1293', N'2025-02-16 09:32:07.290', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"bbb2c3df-1001-4293-99f9-e1fe1b3c9ce5\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'15', N'2025-02-16 10:54:36.860', N'148416', N'2025-02-16 10:57:05.277', N'{"QueryString":"","BodyData":"{\"Barcode\":\"A0216\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250113T2\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"未找到入库单【20250113】","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'16', N'2025-02-16 10:57:05.703', N'2241', N'2025-02-16 10:57:07.943', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTczOTY3NDYyNyIsIm5iZiI6IjE3Mzk2NzQ2MjciLCJleHAiOiIxNzM5NjgxODI3IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.znwwfKGx2jAkBv_UZ9k9aCr7Kfug-MmPYDsbfc5JVck","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'17', N'2025-02-16 10:57:07.947', N'11', N'2025-02-16 10:57:07.957', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'18', N'2025-02-16 10:57:10.730', N'203', N'2025-02-16 10:57:10.933', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"64069b85-8bd8-464e-a5f5-1757bf8e3bca\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'19', N'2025-02-16 10:57:27.407', N'188', N'2025-02-16 10:57:27.593', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"20250113\",\"orderStatus\":\"0\",\"createType\":\"0\",\"orderType\":\"100\",\"upperOrderNo\":\"\",\"remark\":\"\",\"id\":\"1047\"},\"detailData\":[{\"id\":86,\"orderId\":1047,\"materielCode\":\"1\",\"materielName\":\"1\",\"batchNo\":\"20250113T2\",\"orderQuantity\":12,\"receiptQuantity\":0,\"overInQuantity\":0,\"orderDetailStatus\":0,\"remark\":null,\"creater\":\"admin\",\"createDate\":\"2025-01-13 11:00:57\",\"modifier\":\"admin\",\"modifyDate\":\"2025-01-13 11:01:29\",\"locationCode\":null,\"rowIndex\":1,\"elementIndex\":0}],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/InboundOrder/update', N'127.0.0.1', N'admin', N'Update', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'20', N'2025-02-16 13:11:54.343', N'22967', N'2025-02-16 13:12:17.310', N'{"QueryString":"","BodyData":"{\"Barcode\":\"A0216\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250113T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":131205,"isPickPlace":false,"palletCode":"A0216","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250113","grade":0,"dispatchertime":"2025-02-16 13:12:05","remark":null,"creater":"System","createDate":"2025-02-16 13:12:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'21', N'2025-02-17 10:35:16.720', N'3295', N'2025-02-17 10:35:20.017', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'22', N'2025-02-17 10:36:27.797', N'170', N'2025-02-17 10:36:27.967', N'{"QueryString":"","BodyData":"{\"mainData\":{\"width\":\"500\",\"height\":\"150\",\"size\":\"28\",\"palletCode\":\"AC005\"},\"detailData\":null,\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'23', N'2025-02-17 11:02:02.843', N'13296', N'2025-02-17 11:02:16.140', N'{"QueryString":"","BodyData":"[7]"}', N'{"status":true,"code":0,"message":"打印成功","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/PrintBarcodeLib', N'127.0.0.1', N'', N'PrintBarcodeLib', N'打印条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'24', N'2025-02-17 11:02:51.477', N'2751', N'2025-02-17 11:02:54.230', N'{"QueryString":"","BodyData":"[7]"}', N'{"status":true,"code":0,"message":"打印成功","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/PrintBarcodeLib', N'127.0.0.1', N'admin', N'PrintBarcodeLib', N'打印条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'25', N'2025-02-17 11:04:31.577', N'1779', N'2025-02-17 11:04:33.357', N'{"QueryString":"","BodyData":"[7]"}', N'{"status":true,"code":0,"message":"打印成功","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/PrintBarcodeLib', N'127.0.0.1', N'admin', N'PrintBarcodeLib', N'打印条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'26', N'2025-02-17 14:02:30.657', N'1136', N'2025-02-17 14:02:31.793', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"73f68cfc-32dd-42eb-ae80-d5d8b4d0e9b6\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'27', N'2025-02-17 16:30:17.200', N'1031', N'2025-02-17 16:30:18.230', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"538d92e2-8834-4aae-b9de-21962d96ff8f\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'28', N'2025-02-17 16:30:23.733', N'120', N'2025-02-17 16:30:23.853', N'{"QueryString":"","BodyData":"[7]"}', N'{"status":true,"code":0,"message":"打印成功","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/PrintBarcodeLib', N'127.0.0.1', N'admin', N'PrintBarcodeLib', N'打印条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'29', N'2025-02-17 16:31:32.533', N'3882', N'2025-02-17 16:31:36.417', N'{"QueryString":"","BodyData":"{\"PalletCode\":\"AC\",\"Width\":500,\"Height\":150,\"Size\":28}"}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'30', N'2025-02-17 16:33:09.180', N'18778', N'2025-02-17 16:33:27.957', N'{"QueryString":"","BodyData":"{\"PalletCode\":\"AC\",\"Width\":500,\"Height\":150,\"Size\":28,\"Code\":1}"}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'31', N'2025-02-17 16:35:01.650', N'2883', N'2025-02-17 16:35:04.533', N'{"QueryString":"","BodyData":"{\"PalletCode\":\"AC\",\"Width\":500,\"Height\":150,\"Size\":28,\"Code\":1}"}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'32', N'2025-02-17 16:35:08.240', N'25', N'2025-02-17 16:35:08.267', N'{"QueryString":"","BodyData":"{\"PalletCode\":\"AC\",\"Width\":500,\"Height\":150,\"Size\":28,\"Code\":1}"}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'33', N'2025-02-17 16:35:12.240', N'19', N'2025-02-17 16:35:12.260', N'{"QueryString":"","BodyData":"{\"PalletCode\":\"AC\",\"Width\":500,\"Height\":150,\"Size\":28,\"Code\":1}"}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'34', N'2025-02-17 16:35:14.500', N'20', N'2025-02-17 16:35:14.520', N'{"QueryString":"","BodyData":"{\"PalletCode\":\"AC\",\"Width\":500,\"Height\":150,\"Size\":28,\"Code\":1}"}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'35', N'2025-02-17 16:35:57.400', N'18', N'2025-02-17 16:35:57.417', N'{"QueryString":"","BodyData":"{\"PalletCode\":\"AC\",\"Width\":300,\"Height\":100,\"Size\":16,\"Code\":10}"}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'36', N'2025-02-17 16:36:10.763', N'18', N'2025-02-17 16:36:10.783', N'{"QueryString":"","BodyData":"{\"PalletCode\":\"AC\",\"Width\":300,\"Height\":100,\"Size\":16,\"Code\":100}"}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'37', N'2025-02-17 16:36:18.737', N'24', N'2025-02-17 16:36:18.760', N'{"QueryString":"","BodyData":"{\"PalletCode\":\"AC\",\"Width\":300,\"Height\":100,\"Size\":16,\"Code\":100}"}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'38', N'2025-02-17 16:36:22.787', N'17', N'2025-02-17 16:36:22.803', N'{"QueryString":"","BodyData":"{\"PalletCode\":\"AC\",\"Width\":300,\"Height\":100,\"Size\":16,\"Code\":1000}"}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'39', N'2025-02-17 16:37:08.303', N'26', N'2025-02-17 16:37:08.330', N'{"QueryString":"","BodyData":"{\"PalletCode\":\"AC\",\"Width\":300,\"Height\":100,\"Size\":16,\"Code\":1000}"}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'40', N'2025-02-17 16:37:14.830', N'18', N'2025-02-17 16:37:14.850', N'{"QueryString":"","BodyData":"{\"PalletCode\":\"AC\",\"Width\":500,\"Height\":150,\"Size\":28,\"Code\":1}"}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'41', N'2025-02-17 16:44:12.340', N'8727', N'2025-02-17 16:44:21.067', N'{"QueryString":"?key=7","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'42', N'2025-02-17 16:46:11.967', N'2642', N'2025-02-17 16:46:14.610', N'{"QueryString":"?key=7","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'43', N'2025-02-17 16:46:23.400', N'41', N'2025-02-17 16:46:23.440', N'{"QueryString":"?key=7","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'44', N'2025-02-17 16:46:28.100', N'31', N'2025-02-17 16:46:28.133', N'{"QueryString":"?key=7","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'45', N'2025-02-17 16:46:30.637', N'31', N'2025-02-17 16:46:30.670', N'{"QueryString":"?key=7","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'46', N'2025-02-17 16:46:33.387', N'28', N'2025-02-17 16:46:33.417', N'{"QueryString":"?key=7","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'47', N'2025-02-17 16:46:36.123', N'64', N'2025-02-17 16:46:36.187', N'{"QueryString":"?key=7","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'48', N'2025-02-17 16:46:40.617', N'26', N'2025-02-17 16:46:40.643', N'{"QueryString":"?key=7","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/PalletCodeInfo/newBarcodeLib', N'127.0.0.1', N'admin', N'newBarcodeLib', N'生成条码', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'49', N'2025-02-18 11:34:12.067', N'14905', N'2025-02-18 11:34:26.970', N'{"QueryString":"","BodyData":"{\"TaskNum\":131205,\"Barcode\":\"A0216\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'50', N'2025-02-19 09:25:59.083', N'33664', N'2025-02-19 09:26:32.747', N'{"QueryString":"","BodyData":"{\"TaskNum\":131205,\"Barcode\":\"25000001\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000001]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'51', N'2025-02-19 09:29:39.270', N'20547', N'2025-02-19 09:29:59.817', N'{"QueryString":"","BodyData":"{\"TaskNum\":131205,\"Barcode\":\"25000001\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"isPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'52', N'2025-02-21 08:49:27.290', N'1530', N'2025-02-21 08:49:28.820', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"b6b44c98-112a-471b-82a3-d5b4c8708498\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'53', N'2025-02-22 15:21:32.163', N'2180', N'2025-02-22 15:21:34.343', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'54', N'2025-02-22 15:22:37.717', N'373', N'2025-02-22 15:22:38.090', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"20250222\",\"orderStatus\":\"\",\"createType\":\"\",\"orderType\":\"100\",\"upperOrderNo\":\"\",\"remark\":\"\"},\"detailData\":[{\"materielCode\":\"1\",\"materielName\":\"1\",\"batchNo\":\"20250222T1\",\"orderQuantity\":\"12\",\"elementIndex\":0},{\"materielCode\":\"2\",\"materielName\":\"2\",\"batchNo\":\"20250222T2\",\"orderQuantity\":\"12\",\"elementIndex\":1},{\"materielCode\":\"3\",\"materielName\":\"3\",\"batchNo\":\"20250222T3\",\"orderQuantity\":\"12\",\"elementIndex\":2}],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/InboundOrder/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'55', N'2025-02-22 15:25:19.503', N'3442', N'2025-02-22 15:25:22.947', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":152522,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000002","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:25:22","remark":null,"creater":"System","createDate":"2025-02-22 15:25:22","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'56', N'2025-02-22 15:33:03.533', N'11566', N'2025-02-22 15:33:15.100', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000003\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153314,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000003","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:14","remark":null,"creater":"System","createDate":"2025-02-22 15:33:15","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'57', N'2025-02-22 15:33:03.533', N'11557', N'2025-02-22 15:33:15.090', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000003\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153314,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000003","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:14","remark":null,"creater":"System","createDate":"2025-02-22 15:33:15","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'58', N'2025-02-22 15:33:03.533', N'11557', N'2025-02-22 15:33:15.090', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000003\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153314,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000003","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:14","remark":null,"creater":"System","createDate":"2025-02-22 15:33:15","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'59', N'2025-02-22 15:33:15.677', N'235', N'2025-02-22 15:33:15.913', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000005\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153315,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000005","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:15","remark":null,"creater":"System","createDate":"2025-02-22 15:33:15","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'60', N'2025-02-22 15:33:15.677', N'271', N'2025-02-22 15:33:15.950', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000004\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153315,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000004","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:15","remark":null,"creater":"System","createDate":"2025-02-22 15:33:15","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'61', N'2025-02-22 15:33:15.743', N'296', N'2025-02-22 15:33:16.040', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000006\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153315,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000006","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:15","remark":null,"creater":"System","createDate":"2025-02-22 15:33:16","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'62', N'2025-02-22 15:33:16.090', N'188', N'2025-02-22 15:33:16.277', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000007\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153316,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000007","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:16","remark":null,"creater":"System","createDate":"2025-02-22 15:33:16","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'63', N'2025-02-22 15:33:16.173', N'163', N'2025-02-22 15:33:16.337', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000009\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153316,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000009","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:16","remark":null,"creater":"System","createDate":"2025-02-22 15:33:16","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'64', N'2025-02-22 15:33:16.137', N'238', N'2025-02-22 15:33:16.377', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000008\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153316,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000008","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:16","remark":null,"creater":"System","createDate":"2025-02-22 15:33:16","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'65', N'2025-02-22 15:33:16.363', N'178', N'2025-02-22 15:33:16.543', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000010\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153316,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000010","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:16","remark":null,"creater":"System","createDate":"2025-02-22 15:33:16","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'66', N'2025-02-22 15:33:16.480', N'134', N'2025-02-22 15:33:16.613', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000012\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153316,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000012","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:16","remark":null,"creater":"System","createDate":"2025-02-22 15:33:16","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'67', N'2025-02-22 15:33:16.427', N'226', N'2025-02-22 15:33:16.650', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000011\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153316,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000011","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:16","remark":null,"creater":"System","createDate":"2025-02-22 15:33:16","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'68', N'2025-02-22 15:33:16.700', N'177', N'2025-02-22 15:33:16.877', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000013\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153316,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000013","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:16","remark":null,"creater":"System","createDate":"2025-02-22 15:33:16","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'69', N'2025-02-22 15:33:16.737', N'306', N'2025-02-22 15:33:17.043', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000015\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153316,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000015","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:16","remark":null,"creater":"System","createDate":"2025-02-22 15:33:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'70', N'2025-02-22 15:33:16.737', N'356', N'2025-02-22 15:33:17.093', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000014\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153316,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000014","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:16","remark":null,"creater":"System","createDate":"2025-02-22 15:33:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'71', N'2025-02-22 15:33:16.973', N'196', N'2025-02-22 15:33:17.170', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000016\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153317,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000016","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:17","remark":null,"creater":"System","createDate":"2025-02-22 15:33:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'72', N'2025-02-22 15:33:17.127', N'79', N'2025-02-22 15:33:17.207', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000017\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153317,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000017","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:17","remark":null,"creater":"System","createDate":"2025-02-22 15:33:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'73', N'2025-02-22 15:33:17.200', N'91', N'2025-02-22 15:33:17.293', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000018\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153317,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000018","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:17","remark":null,"creater":"System","createDate":"2025-02-22 15:33:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'74', N'2025-02-22 15:33:17.317', N'162', N'2025-02-22 15:33:17.480', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000019\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153317,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000019","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:17","remark":null,"creater":"System","createDate":"2025-02-22 15:33:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'75', N'2025-02-22 15:33:17.370', N'165', N'2025-02-22 15:33:17.533', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000021\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153317,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000021","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:17","remark":null,"creater":"System","createDate":"2025-02-22 15:33:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'76', N'2025-02-22 15:33:17.353', N'246', N'2025-02-22 15:33:17.600', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000020\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153317,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000020","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:17","remark":null,"creater":"System","createDate":"2025-02-22 15:33:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'77', N'2025-02-22 15:33:17.557', N'198', N'2025-02-22 15:33:17.753', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000022\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153317,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000022","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:17","remark":null,"creater":"System","createDate":"2025-02-22 15:33:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'78', N'2025-02-22 15:33:17.667', N'151', N'2025-02-22 15:33:17.817', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000024\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153317,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000024","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:17","remark":null,"creater":"System","createDate":"2025-02-22 15:33:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'79', N'2025-02-22 15:33:17.597', N'259', N'2025-02-22 15:33:17.857', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000023\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153317,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000023","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:17","remark":null,"creater":"System","createDate":"2025-02-22 15:33:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'80', N'2025-02-22 15:33:17.937', N'159', N'2025-02-22 15:33:18.097', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000025\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153317,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000025","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:17","remark":null,"creater":"System","createDate":"2025-02-22 15:33:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'81', N'2025-02-22 15:33:17.970', N'266', N'2025-02-22 15:33:18.237', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000026\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153318,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000026","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:18","remark":null,"creater":"System","createDate":"2025-02-22 15:33:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'82', N'2025-02-22 15:33:17.970', N'285', N'2025-02-22 15:33:18.253', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000027\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153318,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000027","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:18","remark":null,"creater":"System","createDate":"2025-02-22 15:33:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'83', N'2025-02-22 15:33:18.157', N'144', N'2025-02-22 15:33:18.300', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000028\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153318,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000028","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:18","remark":null,"creater":"System","createDate":"2025-02-22 15:33:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'84', N'2025-02-22 15:33:18.317', N'191', N'2025-02-22 15:33:18.507', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000029\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153318,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000029","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:18","remark":null,"creater":"System","createDate":"2025-02-22 15:33:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'85', N'2025-02-22 15:33:18.350', N'201', N'2025-02-22 15:33:18.550', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000030\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153318,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000030","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:18","remark":null,"creater":"System","createDate":"2025-02-22 15:33:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'86', N'2025-02-22 15:33:18.420', N'221', N'2025-02-22 15:33:18.643', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000031\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153318,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000031","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:18","remark":null,"creater":"System","createDate":"2025-02-22 15:33:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'87', N'2025-02-22 15:33:18.567', N'186', N'2025-02-22 15:33:18.753', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000032\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153318,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000032","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:18","remark":null,"creater":"System","createDate":"2025-02-22 15:33:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'88', N'2025-02-22 15:33:18.637', N'153', N'2025-02-22 15:33:18.790', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000033\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153318,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000033","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:18","remark":null,"creater":"System","createDate":"2025-02-22 15:33:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'89', N'2025-02-22 15:33:18.700', N'172', N'2025-02-22 15:33:18.873', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000034\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153318,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000034","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:18","remark":null,"creater":"System","createDate":"2025-02-22 15:33:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'90', N'2025-02-22 15:33:18.823', N'161', N'2025-02-22 15:33:18.983', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000035\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153318,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000035","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:18","remark":null,"creater":"System","createDate":"2025-02-22 15:33:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'91', N'2025-02-22 15:33:18.937', N'87', N'2025-02-22 15:33:19.023', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000037\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153318,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000037","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:18","remark":null,"creater":"System","createDate":"2025-02-22 15:33:19","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'92', N'2025-02-22 15:33:18.873', N'189', N'2025-02-22 15:33:19.060', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000036\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":153318,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000036","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:33:18","remark":null,"creater":"System","createDate":"2025-02-22 15:33:19","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'93', N'2025-02-22 15:41:06.223', N'136', N'2025-02-22 15:41:06.360', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000001\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":154106,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000001","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:41:06","remark":null,"creater":"System","createDate":"2025-02-22 15:41:06","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'94', N'2025-02-22 15:42:17.963', N'248', N'2025-02-22 15:42:18.213', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":154218,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000002","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:42:18","remark":null,"creater":"System","createDate":"2025-02-22 15:42:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'95', N'2025-02-22 15:42:18.080', N'192', N'2025-02-22 15:42:18.270', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":154218,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000002","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:42:18","remark":null,"creater":"System","createDate":"2025-02-22 15:42:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'96', N'2025-02-22 15:42:18.080', N'233', N'2025-02-22 15:42:18.313', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":154218,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000002","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:42:18","remark":null,"creater":"System","createDate":"2025-02-22 15:42:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'97', N'2025-02-22 15:42:18.770', N'224', N'2025-02-22 15:42:18.993', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'98', N'2025-02-22 15:42:18.770', N'361', N'2025-02-22 15:42:19.133', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'99', N'2025-02-22 15:42:18.823', N'391', N'2025-02-22 15:42:19.213', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'100', N'2025-02-22 15:42:19.130', N'221', N'2025-02-22 15:42:19.353', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'101', N'2025-02-22 15:42:19.250', N'289', N'2025-02-22 15:42:19.540', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'102', N'2025-02-22 15:42:19.353', N'279', N'2025-02-22 15:42:19.630', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'103', N'2025-02-22 15:42:19.410', N'417', N'2025-02-22 15:42:19.827', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'104', N'2025-02-22 15:42:19.630', N'337', N'2025-02-22 15:42:19.967', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'105', N'2025-02-22 15:42:19.753', N'287', N'2025-02-22 15:42:20.040', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'106', N'2025-02-22 15:42:19.867', N'316', N'2025-02-22 15:42:20.180', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'107', N'2025-02-22 15:42:20.040', N'294', N'2025-02-22 15:42:20.333', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'108', N'2025-02-22 15:42:20.107', N'317', N'2025-02-22 15:42:20.423', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'109', N'2025-02-22 15:42:20.303', N'234', N'2025-02-22 15:42:20.537', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'110', N'2025-02-22 15:42:20.457', N'244', N'2025-02-22 15:42:20.700', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'111', N'2025-02-22 15:42:20.493', N'276', N'2025-02-22 15:42:20.770', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'112', N'2025-02-22 15:42:21.127', N'91', N'2025-02-22 15:42:21.220', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'113', N'2025-02-22 15:42:21.217', N'207', N'2025-02-22 15:42:21.423', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'114', N'2025-02-22 15:42:21.220', N'206', N'2025-02-22 15:42:21.423', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'115', N'2025-02-22 15:42:22.137', N'86', N'2025-02-22 15:42:22.223', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'116', N'2025-02-22 15:42:22.223', N'184', N'2025-02-22 15:42:22.407', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'117', N'2025-02-22 15:42:22.223', N'184', N'2025-02-22 15:42:22.407', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'118', N'2025-02-22 15:42:23.120', N'115', N'2025-02-22 15:42:23.233', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'119', N'2025-02-22 15:42:23.273', N'148', N'2025-02-22 15:42:23.423', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'120', N'2025-02-22 15:42:23.287', N'198', N'2025-02-22 15:42:23.487', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'121', N'2025-02-22 15:42:24.133', N'104', N'2025-02-22 15:42:24.237', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'122', N'2025-02-22 15:42:24.233', N'239', N'2025-02-22 15:42:24.473', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'123', N'2025-02-22 15:42:24.233', N'239', N'2025-02-22 15:42:24.473', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'124', N'2025-02-22 15:42:25.130', N'101', N'2025-02-22 15:42:25.230', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'125', N'2025-02-22 15:42:25.230', N'153', N'2025-02-22 15:42:25.380', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'126', N'2025-02-22 15:42:25.230', N'174', N'2025-02-22 15:42:25.403', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'127', N'2025-02-22 15:42:26.127', N'106', N'2025-02-22 15:42:26.233', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'128', N'2025-02-22 15:42:26.230', N'206', N'2025-02-22 15:42:26.437', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'129', N'2025-02-22 15:42:26.230', N'207', N'2025-02-22 15:42:26.437', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'130', N'2025-02-22 15:42:27.137', N'90', N'2025-02-22 15:42:27.227', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'131', N'2025-02-22 15:42:27.227', N'109', N'2025-02-22 15:42:27.333', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'132', N'2025-02-22 15:42:27.263', N'173', N'2025-02-22 15:42:27.437', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'133', N'2025-02-22 15:42:28.130', N'127', N'2025-02-22 15:42:28.257', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'134', N'2025-02-22 15:42:28.257', N'248', N'2025-02-22 15:42:28.503', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'135', N'2025-02-22 15:42:28.257', N'248', N'2025-02-22 15:42:28.503', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'136', N'2025-02-22 15:42:29.130', N'112', N'2025-02-22 15:42:29.243', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'137', N'2025-02-22 15:42:29.243', N'367', N'2025-02-22 15:42:29.610', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'138', N'2025-02-22 15:42:29.243', N'368', N'2025-02-22 15:42:29.610', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'139', N'2025-02-22 15:42:30.127', N'122', N'2025-02-22 15:42:30.247', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'140', N'2025-02-22 15:42:30.273', N'129', N'2025-02-22 15:42:30.403', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'141', N'2025-02-22 15:42:30.327', N'190', N'2025-02-22 15:42:30.517', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'142', N'2025-02-22 15:42:31.127', N'95', N'2025-02-22 15:42:31.223', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'143', N'2025-02-22 15:42:31.223', N'276', N'2025-02-22 15:42:31.500', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'144', N'2025-02-22 15:42:31.223', N'277', N'2025-02-22 15:42:31.500', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'145', N'2025-02-22 15:42:32.127', N'95', N'2025-02-22 15:42:32.220', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'146', N'2025-02-22 15:42:32.220', N'180', N'2025-02-22 15:42:32.400', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'147', N'2025-02-22 15:42:32.220', N'180', N'2025-02-22 15:42:32.400', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'148', N'2025-02-22 15:42:33.170', N'101', N'2025-02-22 15:42:33.270', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'149', N'2025-02-22 15:42:33.233', N'238', N'2025-02-22 15:42:33.473', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'150', N'2025-02-22 15:42:33.250', N'223', N'2025-02-22 15:42:33.473', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'151', N'2025-02-22 15:42:34.133', N'93', N'2025-02-22 15:42:34.227', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'152', N'2025-02-22 15:42:34.227', N'289', N'2025-02-22 15:42:34.517', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'153', N'2025-02-22 15:42:34.227', N'289', N'2025-02-22 15:42:34.517', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'154', N'2025-02-22 15:42:35.133', N'99', N'2025-02-22 15:42:35.230', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'155', N'2025-02-22 15:42:35.230', N'177', N'2025-02-22 15:42:35.407', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'156', N'2025-02-22 15:42:35.230', N'178', N'2025-02-22 15:42:35.410', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'157', N'2025-02-22 15:42:36.130', N'91', N'2025-02-22 15:42:36.220', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'158', N'2025-02-22 15:42:36.220', N'181', N'2025-02-22 15:42:36.403', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'159', N'2025-02-22 15:42:36.220', N'181', N'2025-02-22 15:42:36.403', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'160', N'2025-02-22 15:42:37.133', N'134', N'2025-02-22 15:42:37.267', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'161', N'2025-02-22 15:42:37.273', N'103', N'2025-02-22 15:42:37.377', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'162', N'2025-02-22 15:42:37.307', N'158', N'2025-02-22 15:42:37.467', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'163', N'2025-02-22 15:42:38.140', N'89', N'2025-02-22 15:42:38.230', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'164', N'2025-02-22 15:42:38.230', N'168', N'2025-02-22 15:42:38.397', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'165', N'2025-02-22 15:42:38.230', N'168', N'2025-02-22 15:42:38.397', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'166', N'2025-02-22 15:42:39.293', N'121', N'2025-02-22 15:42:39.417', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'167', N'2025-02-22 15:42:39.450', N'119', N'2025-02-22 15:42:39.567', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'168', N'2025-02-22 15:42:39.730', N'105', N'2025-02-22 15:42:39.837', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'169', N'2025-02-22 15:42:40.127', N'90', N'2025-02-22 15:42:40.217', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'170', N'2025-02-22 15:42:40.217', N'199', N'2025-02-22 15:42:40.417', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'171', N'2025-02-22 15:42:40.217', N'200', N'2025-02-22 15:42:40.417', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000002\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000002】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'172', N'2025-02-22 15:46:08.957', N'112', N'2025-02-22 15:46:09.067', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000003\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":154609,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000003","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:46:09","remark":null,"creater":"System","createDate":"2025-02-22 15:46:09","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'173', N'2025-02-22 15:47:17.850', N'129', N'2025-02-22 15:47:17.980', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000004\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":154717,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000004","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:47:17","remark":null,"creater":"System","createDate":"2025-02-22 15:47:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'174', N'2025-02-22 15:47:45.343', N'134', N'2025-02-22 15:47:45.477', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000005\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":154745,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000005","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:47:45","remark":null,"creater":"System","createDate":"2025-02-22 15:47:45","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'175', N'2025-02-22 15:48:10.157', N'96', N'2025-02-22 15:48:10.253', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000006\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":154810,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000006","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:48:10","remark":null,"creater":"System","createDate":"2025-02-22 15:48:10","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'176', N'2025-02-22 15:48:31.087', N'80', N'2025-02-22 15:48:31.167', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000007\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":154831,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000007","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:48:31","remark":null,"creater":"System","createDate":"2025-02-22 15:48:31","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'177', N'2025-02-22 15:49:20.847', N'143', N'2025-02-22 15:49:20.990', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000008\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":154920,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000008","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:49:20","remark":null,"creater":"System","createDate":"2025-02-22 15:49:20","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'178', N'2025-02-22 15:49:43.790', N'79', N'2025-02-22 15:49:43.870', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000009\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":154943,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000009","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:49:43","remark":null,"creater":"System","createDate":"2025-02-22 15:49:43","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'179', N'2025-02-22 15:51:03.903', N'116', N'2025-02-22 15:51:04.020', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000011\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155103,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000011","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:51:03","remark":null,"creater":"System","createDate":"2025-02-22 15:51:04","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'180', N'2025-02-22 15:51:03.893', N'142', N'2025-02-22 15:51:04.037', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000010\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155103,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000010","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:51:03","remark":null,"creater":"System","createDate":"2025-02-22 15:51:04","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'181', N'2025-02-22 15:51:03.893', N'163', N'2025-02-22 15:51:04.057', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000012\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155103,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000012","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:51:03","remark":null,"creater":"System","createDate":"2025-02-22 15:51:04","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'182', N'2025-02-22 15:53:23.993', N'220', N'2025-02-22 15:53:24.213', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000013\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"批号【20250222T1】组盘数量超出","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'183', N'2025-02-22 15:53:23.997', N'216', N'2025-02-22 15:53:24.213', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000013\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"批号【20250222T1】组盘数量超出","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'184', N'2025-02-22 15:53:23.987', N'227', N'2025-02-22 15:53:24.213', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000013\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"批号【20250222T1】组盘数量超出","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'185', N'2025-02-22 15:57:13.297', N'93', N'2025-02-22 15:57:13.390', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000013\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155713,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000013","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:57:13","remark":null,"creater":"System","createDate":"2025-02-22 15:57:13","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'186', N'2025-02-22 15:57:27.310', N'44', N'2025-02-22 15:57:27.357', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000014\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155727,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000014","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:57:27","remark":null,"creater":"System","createDate":"2025-02-22 15:57:27","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'187', N'2025-02-22 15:57:37.437', N'45', N'2025-02-22 15:57:37.483', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000015\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155737,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000015","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:57:37","remark":null,"creater":"System","createDate":"2025-02-22 15:57:37","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'188', N'2025-02-22 15:57:47.677', N'51', N'2025-02-22 15:57:47.727', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000016\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155747,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000016","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:57:47","remark":null,"creater":"System","createDate":"2025-02-22 15:57:47","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'189', N'2025-02-22 15:57:54.843', N'62', N'2025-02-22 15:57:54.907', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000017\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155754,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000017","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:57:54","remark":null,"creater":"System","createDate":"2025-02-22 15:57:54","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'190', N'2025-02-22 15:58:01.760', N'50', N'2025-02-22 15:58:01.810', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000018\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155801,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000018","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:58:01","remark":null,"creater":"System","createDate":"2025-02-22 15:58:01","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'191', N'2025-02-22 15:58:08.933', N'58', N'2025-02-22 15:58:08.993', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000019\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155808,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000019","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:58:08","remark":null,"creater":"System","createDate":"2025-02-22 15:58:08","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'192', N'2025-02-22 15:58:18.873', N'48', N'2025-02-22 15:58:18.923', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000020\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155818,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000020","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:58:18","remark":null,"creater":"System","createDate":"2025-02-22 15:58:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'193', N'2025-02-22 15:58:26.800', N'42', N'2025-02-22 15:58:26.843', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000021\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155826,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000021","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:58:26","remark":null,"creater":"System","createDate":"2025-02-22 15:58:26","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'194', N'2025-02-22 15:58:35.147', N'41', N'2025-02-22 15:58:35.187', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000022\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155835,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000022","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:58:35","remark":null,"creater":"System","createDate":"2025-02-22 15:58:35","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'195', N'2025-02-22 15:59:29.813', N'112', N'2025-02-22 15:59:29.923', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000023\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155929,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000023","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:59:29","remark":null,"creater":"System","createDate":"2025-02-22 15:59:29","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'196', N'2025-02-22 15:59:37.330', N'45', N'2025-02-22 15:59:37.373', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000024\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":155937,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000024","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 15:59:37","remark":null,"creater":"System","createDate":"2025-02-22 15:59:37","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'197', N'2025-02-22 15:59:45.513', N'82', N'2025-02-22 15:59:45.597', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000025\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"批号【20250222T2】组盘数量超出","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'198', N'2025-02-22 16:00:16.587', N'82', N'2025-02-22 16:00:16.670', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000025\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"批号【20250222T2】组盘数量超出","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'199', N'2025-02-22 16:00:31.620', N'88', N'2025-02-22 16:00:31.707', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000025\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T2\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"批号【20250222T2】组盘数量超出","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'200', N'2025-02-22 16:02:11.333', N'94', N'2025-02-22 16:02:11.427', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000025\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":160211,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000025","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 16:02:11","remark":null,"creater":"System","createDate":"2025-02-22 16:02:11","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'201', N'2025-02-22 16:02:23.280', N'40', N'2025-02-22 16:02:23.320', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000026\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":160223,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000026","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 16:02:23","remark":null,"creater":"System","createDate":"2025-02-22 16:02:23","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'202', N'2025-02-22 16:02:26.650', N'72', N'2025-02-22 16:02:26.720', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000027\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":160226,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000027","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 16:02:26","remark":null,"creater":"System","createDate":"2025-02-22 16:02:26","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'203', N'2025-02-22 16:02:27.317', N'61', N'2025-02-22 16:02:27.377', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000028\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":160227,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000028","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 16:02:27","remark":null,"creater":"System","createDate":"2025-02-22 16:02:27","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'204', N'2025-02-22 16:02:27.913', N'59', N'2025-02-22 16:02:27.970', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000029\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":160227,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000029","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 16:02:27","remark":null,"creater":"System","createDate":"2025-02-22 16:02:27","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'205', N'2025-02-22 16:02:28.587', N'58', N'2025-02-22 16:02:28.647', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000030\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":160228,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000030","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 16:02:28","remark":null,"creater":"System","createDate":"2025-02-22 16:02:28","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'206', N'2025-02-22 16:02:29.400', N'76', N'2025-02-22 16:02:29.477', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000031\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":160229,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000031","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 16:02:29","remark":null,"creater":"System","createDate":"2025-02-22 16:02:29","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'207', N'2025-02-22 16:02:30.063', N'78', N'2025-02-22 16:02:30.140', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000032\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":160230,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000032","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 16:02:30","remark":null,"creater":"System","createDate":"2025-02-22 16:02:30","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'208', N'2025-02-22 16:02:30.793', N'66', N'2025-02-22 16:02:30.860', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000033\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":160230,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000033","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 16:02:30","remark":null,"creater":"System","createDate":"2025-02-22 16:02:30","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'209', N'2025-02-22 16:02:32.397', N'38', N'2025-02-22 16:02:32.437', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000034\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":160232,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000034","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 16:02:32","remark":null,"creater":"System","createDate":"2025-02-22 16:02:32","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'210', N'2025-02-22 16:02:33.113', N'55', N'2025-02-22 16:02:33.170', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000035\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":160233,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000035","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 16:02:33","remark":null,"creater":"System","createDate":"2025-02-22 16:02:33","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'211', N'2025-02-22 16:02:34.120', N'49', N'2025-02-22 16:02:34.167', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000036\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":160234,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000036","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"20250222","grade":0,"dispatchertime":"2025-02-22 16:02:34","remark":null,"creater":"System","createDate":"2025-02-22 16:02:34","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'212', N'2025-02-22 16:02:38.643', N'68', N'2025-02-22 16:02:38.710', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000037\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"批号【20250222T3】组盘数量超出","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'213', N'2025-02-22 16:02:39.157', N'74', N'2025-02-22 16:02:39.230', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000038\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"20250222T3\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"批号【20250222T3】组盘数量超出","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'214', N'2025-02-22 16:33:02.330', N'15852', N'2025-02-22 16:33:18.183', N'{"QueryString":"","BodyData":"{\"TaskNum\":154106,\"Barcode\":\"25000001\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'215', N'2025-02-22 16:35:39.543', N'11864', N'2025-02-22 16:35:51.407', N'{"QueryString":"","BodyData":"{\"TaskNum\":154106,\"Barcode\":\"25000001\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"该组盘状态不可入库","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'216', N'2025-02-22 16:38:21.603', N'6719', N'2025-02-22 16:38:28.323', N'{"QueryString":"","BodyData":"{\"TaskNum\":154218,\"Barcode\":\"25000002\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'217', N'2025-02-22 16:38:43.307', N'40', N'2025-02-22 16:38:43.347', N'{"QueryString":"","BodyData":"{\"TaskNum\":154609,\"Barcode\":\"25000003\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'218', N'2025-02-22 16:38:57.303', N'39', N'2025-02-22 16:38:57.340', N'{"QueryString":"","BodyData":"{\"TaskNum\":154717,\"Barcode\":\"25000004\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'219', N'2025-02-22 16:39:19.310', N'79', N'2025-02-22 16:39:19.387', N'{"QueryString":"","BodyData":"{\"TaskNum\":154745,\"Barcode\":\"25000005\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'220', N'2025-02-22 16:39:26.303', N'38', N'2025-02-22 16:39:26.340', N'{"QueryString":"","BodyData":"{\"TaskNum\":154810,\"Barcode\":\"25000006\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'221', N'2025-02-22 16:39:33.300', N'35', N'2025-02-22 16:39:33.333', N'{"QueryString":"","BodyData":"{\"TaskNum\":154831,\"Barcode\":\"25000007\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'222', N'2025-02-22 16:39:38.297', N'37', N'2025-02-22 16:39:38.333', N'{"QueryString":"","BodyData":"{\"TaskNum\":154920,\"Barcode\":\"25000008\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'223', N'2025-02-22 16:39:44.293', N'33', N'2025-02-22 16:39:44.327', N'{"QueryString":"","BodyData":"{\"TaskNum\":154943,\"Barcode\":\"25000009\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'224', N'2025-02-22 16:39:51.297', N'38', N'2025-02-22 16:39:51.333', N'{"QueryString":"","BodyData":"{\"TaskNum\":155103,\"Barcode\":\"25000010\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'225', N'2025-02-22 16:39:57.303', N'26', N'2025-02-22 16:39:57.330', N'{"QueryString":"","BodyData":"{\"TaskNum\":155103,\"Barcode\":\"25000011\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'226', N'2025-02-22 16:40:42.300', N'71', N'2025-02-22 16:40:42.370', N'{"QueryString":"","BodyData":"{\"TaskNum\":155103,\"Barcode\":\"25000012\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'227', N'2025-02-22 16:42:59.317', N'119', N'2025-02-22 16:42:59.437', N'{"QueryString":"","BodyData":"{\"TaskNum\":155713,\"Barcode\":\"25000013\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'228', N'2025-02-22 16:43:05.303', N'40', N'2025-02-22 16:43:05.343', N'{"QueryString":"","BodyData":"{\"TaskNum\":155727,\"Barcode\":\"25000014\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'229', N'2025-02-22 16:43:11.300', N'27', N'2025-02-22 16:43:11.327', N'{"QueryString":"","BodyData":"{\"TaskNum\":155737,\"Barcode\":\"25000015\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'230', N'2025-02-22 16:43:18.297', N'26', N'2025-02-22 16:43:18.323', N'{"QueryString":"","BodyData":"{\"TaskNum\":155747,\"Barcode\":\"25000016\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'231', N'2025-02-22 16:43:23.297', N'33', N'2025-02-22 16:43:23.330', N'{"QueryString":"","BodyData":"{\"TaskNum\":155754,\"Barcode\":\"25000017\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'232', N'2025-02-22 16:43:28.290', N'28', N'2025-02-22 16:43:28.317', N'{"QueryString":"","BodyData":"{\"TaskNum\":155801,\"Barcode\":\"25000018\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'233', N'2025-02-22 16:43:33.297', N'39', N'2025-02-22 16:43:33.333', N'{"QueryString":"","BodyData":"{\"TaskNum\":155808,\"Barcode\":\"25000019\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'234', N'2025-02-22 16:43:38.300', N'31', N'2025-02-22 16:43:38.330', N'{"QueryString":"","BodyData":"{\"TaskNum\":155818,\"Barcode\":\"25000020\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'235', N'2025-02-22 16:43:44.293', N'27', N'2025-02-22 16:43:44.320', N'{"QueryString":"","BodyData":"{\"TaskNum\":155826,\"Barcode\":\"25000021\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'236', N'2025-02-22 16:43:48.290', N'26', N'2025-02-22 16:43:48.317', N'{"QueryString":"","BodyData":"{\"TaskNum\":155835,\"Barcode\":\"25000022\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'237', N'2025-02-22 16:43:52.303', N'39', N'2025-02-22 16:43:52.343', N'{"QueryString":"","BodyData":"{\"TaskNum\":155929,\"Barcode\":\"25000023\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'238', N'2025-02-22 16:43:56.297', N'31', N'2025-02-22 16:43:56.327', N'{"QueryString":"","BodyData":"{\"TaskNum\":155937,\"Barcode\":\"25000024\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'239', N'2025-02-22 16:44:01.323', N'34', N'2025-02-22 16:44:01.360', N'{"QueryString":"","BodyData":"{\"TaskNum\":160211,\"Barcode\":\"25000025\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'240', N'2025-02-22 16:44:05.303', N'43', N'2025-02-22 16:44:05.347', N'{"QueryString":"","BodyData":"{\"TaskNum\":160223,\"Barcode\":\"25000026\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'241', N'2025-02-22 16:44:10.297', N'37', N'2025-02-22 16:44:10.333', N'{"QueryString":"","BodyData":"{\"TaskNum\":160226,\"Barcode\":\"25000027\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'242', N'2025-02-22 16:44:14.300', N'63', N'2025-02-22 16:44:14.363', N'{"QueryString":"","BodyData":"{\"TaskNum\":160227,\"Barcode\":\"25000028\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'243', N'2025-02-22 16:44:19.313', N'46', N'2025-02-22 16:44:19.360', N'{"QueryString":"","BodyData":"{\"TaskNum\":160227,\"Barcode\":\"25000029\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'244', N'2025-02-22 16:44:24.300', N'28', N'2025-02-22 16:44:24.327', N'{"QueryString":"","BodyData":"{\"TaskNum\":160228,\"Barcode\":\"25000030\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'245', N'2025-02-22 16:44:28.297', N'33', N'2025-02-22 16:44:28.330', N'{"QueryString":"","BodyData":"{\"TaskNum\":160229,\"Barcode\":\"25000031\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'246', N'2025-02-22 16:44:32.287', N'29', N'2025-02-22 16:44:32.317', N'{"QueryString":"","BodyData":"{\"TaskNum\":160230,\"Barcode\":\"25000032\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'247', N'2025-02-22 16:44:36.297', N'33', N'2025-02-22 16:44:36.330', N'{"QueryString":"","BodyData":"{\"TaskNum\":160230,\"Barcode\":\"25000033\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'248', N'2025-02-22 16:44:41.290', N'29', N'2025-02-22 16:44:41.320', N'{"QueryString":"","BodyData":"{\"TaskNum\":160232,\"Barcode\":\"25000034\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'249', N'2025-02-22 16:44:46.307', N'33', N'2025-02-22 16:44:46.340', N'{"QueryString":"","BodyData":"{\"TaskNum\":160233,\"Barcode\":\"25000035\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'250', N'2025-02-22 16:44:51.297', N'30', N'2025-02-22 16:44:51.327', N'{"QueryString":"","BodyData":"{\"TaskNum\":160234,\"Barcode\":\"25000036\",\"stationCode\":\"1002\",\"Weight\":1000,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'251', N'2025-02-22 16:49:40.867', N'20314', N'2025-02-22 16:50:01.180', N'{"QueryString":"","BodyData":"{\"TaskNum\":154106,\"Barcode\":\"25000001\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"isPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'252', N'2025-02-22 16:53:20.927', N'8429', N'2025-02-22 16:53:29.353', N'{"QueryString":"","BodyData":"{\"TaskNum\":154106,\"Barcode\":\"25000001\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"托盘号[25000001]的入库任务状态不匹配","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'253', N'2025-02-22 16:53:58.400', N'34130', N'2025-02-22 16:54:32.530', N'{"QueryString":"","BodyData":"{\"TaskNum\":154106,\"Barcode\":\"25000001\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"isPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'254', N'2025-02-22 16:54:59.913', N'60', N'2025-02-22 16:54:59.973', N'{"QueryString":"","BodyData":"{\"TaskNum\":154218,\"Barcode\":\"25000002\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"isPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'255', N'2025-02-22 16:56:11.913', N'111', N'2025-02-22 16:56:12.023', N'{"QueryString":"","BodyData":"{\"TaskNum\":154609,\"Barcode\":\"25000003\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"isPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'256', N'2025-02-22 16:56:18.900', N'54', N'2025-02-22 16:56:18.953', N'{"QueryString":"","BodyData":"{\"TaskNum\":154717,\"Barcode\":\"25000004\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"isPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'257', N'2025-02-22 16:56:24.900', N'35', N'2025-02-22 16:56:24.937', N'{"QueryString":"","BodyData":"{\"TaskNum\":154745,\"Barcode\":\"25000005\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"isPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'258', N'2025-02-22 16:56:44.903', N'43', N'2025-02-22 16:56:44.947', N'{"QueryString":"","BodyData":"{\"TaskNum\":154810,\"Barcode\":\"25000006\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"isPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'259', N'2025-02-22 16:56:48.913', N'36', N'2025-02-22 16:56:48.950', N'{"QueryString":"","BodyData":"{\"TaskNum\":154831,\"Barcode\":\"25000007\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"isPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'260', N'2025-02-22 16:56:53.893', N'32', N'2025-02-22 16:56:53.927', N'{"QueryString":"","BodyData":"{\"TaskNum\":154920,\"Barcode\":\"25000008\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"isPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'261', N'2025-02-22 16:56:56.903', N'61', N'2025-02-22 16:56:56.963', N'{"QueryString":"","BodyData":"{\"TaskNum\":154943,\"Barcode\":\"25000009\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"isPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'262', N'2025-02-22 16:57:01.897', N'31', N'2025-02-22 16:57:01.927', N'{"QueryString":"","BodyData":"{\"TaskNum\":155103,\"Barcode\":\"25000010\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"isPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'263', N'2025-02-22 17:07:46.440', N'14336', N'2025-02-22 17:08:00.777', N'{"QueryString":"","BodyData":"{\"TaskNum\":155103,\"Barcode\":\"25000011\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'264', N'2025-02-22 17:08:38.610', N'124', N'2025-02-22 17:08:38.733', N'{"QueryString":"","BodyData":"{\"TaskNum\":155103,\"Barcode\":\"25000012\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'265', N'2025-02-22 17:40:35.107', N'41707', N'2025-02-22 17:41:16.813', N'{"QueryString":"","BodyData":"{\"TaskNum\":155713,\"Barcode\":\"25000013\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'266', N'2025-02-22 17:41:48.737', N'14435', N'2025-02-22 17:42:03.173', N'{"QueryString":"","BodyData":"{\"TaskNum\":155727,\"Barcode\":\"25000014\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'267', N'2025-02-22 17:42:09.677', N'71', N'2025-02-22 17:42:09.750', N'{"QueryString":"","BodyData":"{\"TaskNum\":155737,\"Barcode\":\"25000015\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'268', N'2025-02-22 17:42:13.663', N'66', N'2025-02-22 17:42:13.730', N'{"QueryString":"","BodyData":"{\"TaskNum\":155747,\"Barcode\":\"25000016\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'269', N'2025-02-22 17:42:17.680', N'70', N'2025-02-22 17:42:17.750', N'{"QueryString":"","BodyData":"{\"TaskNum\":155754,\"Barcode\":\"25000017\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'270', N'2025-02-22 17:42:22.660', N'64', N'2025-02-22 17:42:22.723', N'{"QueryString":"","BodyData":"{\"TaskNum\":155801,\"Barcode\":\"25000018\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'271', N'2025-02-22 17:42:26.660', N'67', N'2025-02-22 17:42:26.727', N'{"QueryString":"","BodyData":"{\"TaskNum\":155808,\"Barcode\":\"25000019\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'272', N'2025-02-22 17:42:30.657', N'52', N'2025-02-22 17:42:30.707', N'{"QueryString":"","BodyData":"{\"TaskNum\":155818,\"Barcode\":\"25000020\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'273', N'2025-02-22 17:42:33.690', N'75', N'2025-02-22 17:42:33.763', N'{"QueryString":"","BodyData":"{\"TaskNum\":155826,\"Barcode\":\"25000021\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'274', N'2025-02-22 17:42:38.683', N'55', N'2025-02-22 17:42:38.740', N'{"QueryString":"","BodyData":"{\"TaskNum\":155835,\"Barcode\":\"25000022\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'275', N'2025-02-22 17:42:41.670', N'76', N'2025-02-22 17:42:41.747', N'{"QueryString":"","BodyData":"{\"TaskNum\":155929,\"Barcode\":\"25000023\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'276', N'2025-02-22 17:42:58.677', N'23374', N'2025-02-22 17:43:22.050', N'{"QueryString":"","BodyData":"{\"TaskNum\":155937,\"Barcode\":\"25000024\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":true,"targetAddress":"002-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'277', N'2025-02-22 17:49:33.637', N'55147', N'2025-02-22 17:50:28.783', N'{"QueryString":"","BodyData":"{\"TaskNum\":160211,\"Barcode\":\"25000025\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'278', N'2025-02-22 17:51:05.343', N'128', N'2025-02-22 17:51:05.470', N'{"QueryString":"","BodyData":"{\"TaskNum\":160223,\"Barcode\":\"25000026\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'279', N'2025-02-22 17:51:09.290', N'56', N'2025-02-22 17:51:09.343', N'{"QueryString":"","BodyData":"{\"TaskNum\":160226,\"Barcode\":\"25000027\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'280', N'2025-02-22 17:51:13.287', N'35', N'2025-02-22 17:51:13.323', N'{"QueryString":"","BodyData":"{\"TaskNum\":160227,\"Barcode\":\"25000028\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'281', N'2025-02-22 17:51:17.270', N'36', N'2025-02-22 17:51:17.307', N'{"QueryString":"","BodyData":"{\"TaskNum\":160227,\"Barcode\":\"25000029\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'282', N'2025-02-22 17:51:21.283', N'37', N'2025-02-22 17:51:21.320', N'{"QueryString":"","BodyData":"{\"TaskNum\":160228,\"Barcode\":\"25000030\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'283', N'2025-02-22 17:51:27.273', N'44', N'2025-02-22 17:51:27.317', N'{"QueryString":"","BodyData":"{\"TaskNum\":160229,\"Barcode\":\"25000031\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'284', N'2025-02-22 17:51:31.273', N'36', N'2025-02-22 17:51:31.310', N'{"QueryString":"","BodyData":"{\"TaskNum\":160230,\"Barcode\":\"25000032\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'285', N'2025-02-22 17:51:35.273', N'37', N'2025-02-22 17:51:35.310', N'{"QueryString":"","BodyData":"{\"TaskNum\":160230,\"Barcode\":\"25000033\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'286', N'2025-02-22 17:51:39.273', N'42', N'2025-02-22 17:51:39.313', N'{"QueryString":"","BodyData":"{\"TaskNum\":160232,\"Barcode\":\"25000034\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'287', N'2025-02-22 17:51:43.267', N'35', N'2025-02-22 17:51:43.300', N'{"QueryString":"","BodyData":"{\"TaskNum\":160233,\"Barcode\":\"25000035\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'288', N'2025-02-22 17:51:47.283', N'33', N'2025-02-22 17:51:47.317', N'{"QueryString":"","BodyData":"{\"TaskNum\":160234,\"Barcode\":\"25000036\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":true,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'289', N'2025-02-22 21:58:48.837', N'129340', N'2025-02-22 22:00:58.177', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":154106,\"PalletCode\":\"25000001\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"001-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'290', N'2025-02-22 22:01:27.240', N'361', N'2025-02-22 22:01:27.600', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"3446631f-dba5-4b0c-9054-288534139f90\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'291', N'2025-02-23 09:23:13.797', N'52303', N'2025-02-23 09:24:06.100', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":154106,\"PalletCode\":\"25000001\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"001-002-001\",\"Grade\":0}"}', N'{"status":false,"code":0,"message":"该任务状态有误,任务号:【154106】,任务状态:【235】","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'292', N'2025-02-23 09:52:49.423', N'362', N'2025-02-23 09:52:49.787', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"35a8c50b-2adf-4de4-bfa7-263376ad5db1\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'293', N'2025-02-23 10:30:24.560', N'26805', N'2025-02-23 10:30:51.363', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":154218,\"PalletCode\":\"25000002\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"001-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'294', N'2025-02-23 10:39:14.350', N'36850', N'2025-02-23 10:39:51.200', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":154609,\"PalletCode\":\"25000003\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"001-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'295', N'2025-02-23 10:44:41.760', N'23090', N'2025-02-23 10:45:04.853', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":154717,\"PalletCode\":\"25000004\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"001-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'296', N'2025-02-23 10:45:46.737', N'104', N'2025-02-23 10:45:46.840', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":154745,\"PalletCode\":\"25000005\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"001-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'297', N'2025-02-23 10:46:30.367', N'91', N'2025-02-23 10:46:30.460', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":154810,\"PalletCode\":\"25000006\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"001-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'298', N'2025-02-23 10:46:47.040', N'71', N'2025-02-23 10:46:47.110', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":154831,\"PalletCode\":\"25000007\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"001-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'299', N'2025-02-23 10:47:05.793', N'89', N'2025-02-23 10:47:05.880', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":154920,\"PalletCode\":\"25000008\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"001-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'300', N'2025-02-23 10:47:18.583', N'77', N'2025-02-23 10:47:18.660', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":154943,\"PalletCode\":\"25000009\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"001-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'301', N'2025-02-23 10:47:29.990', N'79', N'2025-02-23 10:47:30.070', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155103,\"PalletCode\":\"25000011\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"001-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'302', N'2025-02-23 10:47:40.923', N'76', N'2025-02-23 10:47:40.997', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155104,\"PalletCode\":\"25000012\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"001-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'303', N'2025-02-23 10:48:59.040', N'76', N'2025-02-23 10:48:59.117', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155105,\"PalletCode\":\"25000010\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"001-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'304', N'2025-02-23 10:53:53.053', N'282', N'2025-02-23 10:53:53.337', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155713,\"PalletCode\":\"25000013\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"002-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'305', N'2025-02-23 10:54:30.317', N'90', N'2025-02-23 10:54:30.407', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155727,\"PalletCode\":\"25000014\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"002-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'306', N'2025-02-23 10:54:40.350', N'91', N'2025-02-23 10:54:40.440', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155737,\"PalletCode\":\"25000015\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"002-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'307', N'2025-02-23 10:54:50.377', N'127', N'2025-02-23 10:54:50.503', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155747,\"PalletCode\":\"25000016\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"002-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'308', N'2025-02-23 10:54:59.043', N'93', N'2025-02-23 10:54:59.137', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155754,\"PalletCode\":\"25000017\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"002-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'309', N'2025-02-23 10:55:11.427', N'80', N'2025-02-23 10:55:11.507', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155801,\"PalletCode\":\"25000018\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"002-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'310', N'2025-02-23 10:55:24.043', N'77', N'2025-02-23 10:55:24.120', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155808,\"PalletCode\":\"25000019\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"002-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'311', N'2025-02-23 10:55:35.220', N'91', N'2025-02-23 10:55:35.313', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155818,\"PalletCode\":\"25000020\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"002-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'312', N'2025-02-23 10:56:24.043', N'112', N'2025-02-23 10:56:24.157', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155826,\"PalletCode\":\"25000021\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"002-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'313', N'2025-02-23 10:56:36.733', N'80', N'2025-02-23 10:56:36.813', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155835,\"PalletCode\":\"25000022\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"002-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'314', N'2025-02-23 10:57:01.893', N'124', N'2025-02-23 10:57:02.017', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155929,\"PalletCode\":\"25000023\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"002-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'315', N'2025-02-23 11:15:31.123', N'10088', N'2025-02-23 11:15:41.210', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155937,\"PalletCode\":\"25000024\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"002-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'316', N'2025-02-23 11:18:31.597', N'44', N'2025-02-23 11:18:31.643', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155937,\"PalletCode\":\"25000024\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"002-002-001\",\"Grade\":0}"}', N'{"status":false,"code":0,"message":"未找到任务信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'317', N'2025-02-23 11:18:52.770', N'2157', N'2025-02-23 11:18:54.927', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MDI4MDczNCIsIm5iZiI6IjE3NDAyODA3MzQiLCJleHAiOiIxNzQwMjg3OTM0IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.Om7kbWBUZ-sEtfXRFySxpIiEA1psaaQMz8EX1r85giQ","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'318', N'2025-02-23 11:18:54.927', N'10', N'2025-02-23 11:18:54.940', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'319', N'2025-02-23 11:18:57.773', N'220', N'2025-02-23 11:18:57.993', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"458bd4aa-15ab-46b7-b990-715c1d29ea43\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'320', N'2025-02-23 11:27:39.520', N'50', N'2025-02-23 11:27:39.570', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":155937,\"PalletCode\":\"25000024\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":290,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"002-002-001\",\"Grade\":0}"}', N'{"status":false,"code":0,"message":"未找到任务信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'321', N'2025-02-23 11:56:00.453', N'85', N'2025-02-23 11:56:00.540', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":160211,\"PalletCode\":\"25000025\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"003-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'322', N'2025-02-23 11:56:32.830', N'92', N'2025-02-23 11:56:32.923', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":160223,\"PalletCode\":\"25000026\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"003-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'323', N'2025-02-23 11:56:47.793', N'50', N'2025-02-23 11:56:47.843', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":160226,\"PalletCode\":\"25000027\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"003-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'324', N'2025-02-23 11:56:52.810', N'52', N'2025-02-23 11:56:52.863', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":160227,\"PalletCode\":\"25000028\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"003-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'325', N'2025-02-23 11:56:59.817', N'78', N'2025-02-23 11:56:59.897', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":160201,\"PalletCode\":\"25000029\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"003-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'326', N'2025-02-23 11:57:07.817', N'73', N'2025-02-23 11:57:07.890', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":160228,\"PalletCode\":\"25000030\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"003-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'327', N'2025-02-23 11:57:20.793', N'45', N'2025-02-23 11:57:20.837', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":160229,\"PalletCode\":\"25000031\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"003-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'328', N'2025-02-23 11:57:27.800', N'56', N'2025-02-23 11:57:27.857', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":160202,\"PalletCode\":\"25000032\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"003-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'329', N'2025-02-23 11:57:33.797', N'46', N'2025-02-23 11:57:33.840', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":160230,\"PalletCode\":\"25000033\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"003-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'330', N'2025-02-23 11:57:40.810', N'41', N'2025-02-23 11:57:40.850', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":160232,\"PalletCode\":\"25000034\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"003-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'331', N'2025-02-23 11:57:47.803', N'45', N'2025-02-23 11:57:47.850', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":160233,\"PalletCode\":\"25000035\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":235,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"003-002-001\",\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'332', N'2025-02-23 12:05:24.810', N'85', N'2025-02-23 12:05:24.897', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":160234,\"PalletCode\":\"25000036\",\"RoadWay\":\"SC01\",\"TaskType\":200,\"TaskState\":290,\"SourceAddress\":\"MDX01\",\"TargetAddress\":\"003-002-001\",\"Grade\":0}"}', N'{"status":false,"code":0,"message":"该任务状态有误,任务号:【160234】,任务状态:【230】","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'333', N'2025-02-23 12:19:18.613', N'133', N'2025-02-23 12:19:18.747', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 160234,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 100,\n \"taskState\": 235,\n \"sourceAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"grade\": 0\n}"}', N'{"status":false,"code":0,"message":"未找到任务信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'334', N'2025-02-23 12:19:33.477', N'36062', N'2025-02-23 12:20:09.537', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 160234,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 235,\n \"sourceAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'335', N'2025-02-23 12:39:22.680', N'1105', N'2025-02-23 12:39:23.787', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MDI4NTU2MyIsIm5iZiI6IjE3NDAyODU1NjMiLCJleHAiOiIxNzQwMjkyNzYzIiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.UVsWGNUK0ZmzYLf6nYCoe9wlC9ZrqOFgGAsDO0v0Sp0","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'336', N'2025-02-23 12:39:23.867', N'12', N'2025-02-23 12:39:23.880', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'337', N'2025-02-23 12:39:27.613', N'179', N'2025-02-23 12:39:27.793', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"689cdb83-557f-42f1-a9cb-e872b7a037bc\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'338', N'2025-02-23 14:32:47.537', N'932', N'2025-02-23 14:32:48.467', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MDI5MjM2OCIsIm5iZiI6IjE3NDAyOTIzNjgiLCJleHAiOiIxNzQwMjk5NTY4IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.jEywcGKy3P2vZGuJhBwzGX1CU3PIHXHy6Pg3Az7P5pQ","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'339', N'2025-02-23 14:32:48.530', N'14', N'2025-02-23 14:32:48.547', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'340', N'2025-02-23 14:32:51.883', N'106', N'2025-02-23 14:32:51.987', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"69cc1492-258a-4528-8e7e-172867f80e89\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'341', N'2025-02-23 14:39:27.463', N'287', N'2025-02-23 14:39:27.750', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderType\":\"235\",\"upperOrderNo\":\"20250223\",\"orderStatus\":\"\",\"remark\":\"\"},\"detailData\":[{\"materielCode\":\"1\",\"materielName\":\"1\",\"orderQuantity\":\"12\",\"elementIndex\":0}],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/OutboundOrder/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'342', N'2025-02-23 15:53:13.913', N'2026', N'2025-02-23 15:53:15.937', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MDI5NzE5NSIsIm5iZiI6IjE3NDAyOTcxOTUiLCJleHAiOiIxNzQwMzA0Mzk1IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.8Z96gMiUJ4bKjjXTMTmFwHzJooxpREGalhYK3SXiR68","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'343', N'2025-02-23 15:53:16.007', N'9', N'2025-02-23 15:53:16.013', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'344', N'2025-02-23 16:46:42.780', N'20923', N'2025-02-23 16:47:03.703', N'{"QueryString":"","BodyData":"[9]"}', N'{"status":false,"code":0,"message":"Sequence contains no elements","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'345', N'2025-02-23 16:47:09.020', N'2537', N'2025-02-23 16:47:11.557', N'{"QueryString":"","BodyData":"[9]"}', N'{"status":false,"code":0,"message":"Sequence contains no elements","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'346', N'2025-02-23 16:48:01.183', N'12212', N'2025-02-23 16:48:13.393', N'{"QueryString":"","BodyData":"[9]"}', N'{"status":false,"code":0,"message":"未找到可分配库存","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'347', N'2025-02-23 16:48:24.973', N'2925', N'2025-02-23 16:48:27.900', N'{"QueryString":"","BodyData":"[9]"}', N'{"status":false,"code":0,"message":"Sequence contains no elements","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'348', N'2025-02-23 16:49:07.363', N'8524', N'2025-02-23 16:49:15.887', N'{"QueryString":"","BodyData":"[9]"}', N'{"status":false,"code":0,"message":"Sequence contains no elements","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'349', N'2025-02-23 16:51:48.050', N'11291', N'2025-02-23 16:51:59.340', N'{"QueryString":"","BodyData":"[9]"}', N'{"status":false,"code":0,"message":"Sequence contains no elements","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'350', N'2025-02-23 16:52:01.353', N'1213', N'2025-02-23 16:52:02.567', N'{"QueryString":"","BodyData":"[9]"}', N'{"status":false,"code":0,"message":"Sequence contains no elements","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'351', N'2025-02-23 16:52:39.530', N'11775', N'2025-02-23 16:52:51.307', N'{"QueryString":"","BodyData":"[9]"}', N'{"status":false,"code":0,"message":"Sequence contains no elements","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'352', N'2025-02-23 18:35:25.937', N'849', N'2025-02-23 18:35:26.787', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"15e7dc0d-a325-4acb-a5dc-942bb1ce4bea\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'353', N'2025-02-23 18:35:43.263', N'14260', N'2025-02-23 18:35:57.523', N'{"QueryString":"","BodyData":"[9]"}', N'{"status":false,"code":0,"message":"对象名 ''SeqTaskNum'' 无效。","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'354', N'2025-02-23 20:53:42.850', N'1199', N'2025-02-23 20:53:44.047', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"a3d0921a-4f2a-4a0f-87f6-d39203fa1bb0\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'355', N'2025-02-23 21:02:20.077', N'384', N'2025-02-23 21:02:20.460', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderType\":\"205\",\"upperOrderNo\":\"250223\",\"orderStatus\":\"\",\"remark\":\"\"},\"detailData\":[{\"materielCode\":\"3\",\"materielName\":\"3\",\"orderQuantity\":\"12\",\"elementIndex\":0}],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/OutboundOrder/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'356', N'2025-02-23 21:23:39.750', N'20210', N'2025-02-23 21:23:59.960', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderType\":\"200\",\"upperOrderNo\":\"1\",\"orderStatus\":\"\",\"remark\":\"\"},\"detailData\":[{\"materielCode\":\"2\",\"materielName\":\"2\",\"orderQuantity\":\"12\",\"elementIndex\":0},{\"materielCode\":\"2\",\"materielName\":\"2\",\"orderQuantity\":\"12\",\"elementIndex\":1}],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/OutboundOrder/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'357', N'2025-02-23 22:38:07.027', N'2508', N'2025-02-23 22:38:09.537', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'358', N'2025-02-23 23:27:25.243', N'15640', N'2025-02-23 23:27:40.883', N'{"QueryString":"","BodyData":"[9]"}', N'{"status":false,"code":0,"message":"任务接收错误,错误信息:不能将值 NULL 插入列 ''CurrentAddress'',表 ''WIDESEAWCS_WHSY.dbo.Dt_Task'';列不允许有 Null 值。INSERT 失败。\r\n语句已终止。","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'359', N'2025-02-23 23:28:17.150', N'79455', N'2025-02-23 23:29:36.607', N'{"QueryString":"","BodyData":"[9]"}', N'{"status":false,"code":0,"message":"任务接收错误,错误信息:不能将值 NULL 插入列 ''CurrentAddress'',表 ''WIDESEAWCS_WHSY.dbo.Dt_Task'';列不允许有 Null 值。INSERT 失败。\r\n语句已终止。","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'360', N'2025-02-23 23:36:31.843', N'26615', N'2025-02-23 23:36:58.460', N'{"QueryString":"","BodyData":"[9]"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'361', N'2025-02-23 23:42:40.500', N'15160', N'2025-02-23 23:42:55.660', N'{"QueryString":"","BodyData":"[9]"}', N'{"status":false,"code":0,"message":"所选出库单明细存在出库中或已完成","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'362', N'2025-02-23 23:42:59.930', N'1630', N'2025-02-23 23:43:01.560', N'{"QueryString":"","BodyData":"[9]"}', N'{"status":false,"code":0,"message":"所选出库单明细存在出库中或已完成","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'363', N'2025-02-23 23:51:23.520', N'15073', N'2025-02-23 23:51:38.593', N'{"QueryString":"","BodyData":"[10]"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTasks', N'127.0.0.1', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'364', N'2025-03-10 09:14:01.960', N'51233', N'2025-03-10 09:14:53.193', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":260,\"PalletCode\":\"25000024\",\"RoadWay\":\"SC01\",\"TaskType\":300,\"TaskState\":425,\"SourceAddress\":\"002-002-001\",\"CurrentAddress\":\"\",\"TargetAddress\":\"003-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":true,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'365', N'2025-03-10 09:43:59.947', N'1361', N'2025-03-10 09:44:01.307', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"170e3bc2-a4a1-48f5-82e8-5e3757c5e2c9\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'366', N'2025-03-10 11:51:15.417', N'1003', N'2025-03-10 11:51:16.420', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"aefcd0cd-49da-489c-aa8d-bcb643964edd\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'367', N'2025-03-10 13:47:30.823', N'635', N'2025-03-10 13:47:31.457', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MTU4NTY1MSIsIm5iZiI6IjE3NDE1ODU2NTEiLCJleHAiOiIxNzQxNTkyODUxIiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.DWTqV46pQoi-gXLXo3NxdRmHDALnsHyCD1Er4c2HyTA","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'368', N'2025-03-10 13:47:31.470', N'8', N'2025-03-10 13:47:31.480', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'369', N'2025-03-10 13:48:52.173', N'197', N'2025-03-10 13:48:52.370', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"9826a46c-b35b-4034-9081-013b72bd2570\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'370', N'2025-03-10 15:13:12.663', N'1784', N'2025-03-10 15:13:14.447', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MTU5MDc5NCIsIm5iZiI6IjE3NDE1OTA3OTQiLCJleHAiOiIxNzQxNTk3OTk0IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.sx-o136pyWiAtH4ZzxI1ADhq3ImDi2n2eKgX5oZ6pSk","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'371', N'2025-03-10 15:13:14.517', N'13', N'2025-03-10 15:13:14.530', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'372', N'2025-03-10 15:13:17.437', N'185', N'2025-03-10 15:13:17.623', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"8b800eb0-153d-4b8d-ae45-35b34df91ba5\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'373', N'2025-03-10 15:57:45.090', N'30433', N'2025-03-10 15:58:15.523', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":260,\"PalletCode\":\"25000024\",\"RoadWay\":\"SC01\",\"TaskType\":300,\"TaskState\":425,\"SourceAddress\":\"002-002-001\",\"CurrentAddress\":\"\",\"TargetAddress\":\"003-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":true,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'374', N'2025-03-10 17:07:20.450', N'570', N'2025-03-10 17:07:21.020', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MTU5NzY0MCIsIm5iZiI6IjE3NDE1OTc2NDAiLCJleHAiOiIxNzQxNjA0ODQwIiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.b_jMeX-xAMxnbg6tSH1RV0iGqA2bffzfPkqOdx3ReXk","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'375', N'2025-03-10 17:07:21.080', N'8', N'2025-03-10 17:07:21.090', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'376', N'2025-03-10 17:07:24.940', N'182', N'2025-03-10 17:07:25.123', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"ae5de23a-5ef6-4651-9f22-9c95486021c9\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'377', N'2025-03-12 10:08:51.443', N'1081', N'2025-03-12 10:08:52.523', N'{"QueryString":"","BodyData":"{\"UUID\":\"04f10d97-f901-4bdc-87b8-640e5500a39b\",\"passWord\":\"123456\",\"userName\":\"admin\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'378', N'2025-03-12 10:12:25.003', N'138', N'2025-03-12 10:12:25.143', N'{"QueryString":"","BodyData":"{\"UUID\":\"3b21d9f4-1bfc-4582-8450-1063d11f3bc5\",\"passWord\":\"123456\",\"userName\":\"admin\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'379', N'2025-03-12 13:37:47.447', N'1332', N'2025-03-12 13:37:48.780', N'{"QueryString":"","BodyData":"{\"UUID\":\"5fb9086d-5a2a-4c35-bcd8-8683d3781b4a\",\"passWord\":\"123456\",\"userName\":\"admin\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'admin', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'380', N'2025-03-12 13:37:51.973', N'1', N'2025-03-12 13:37:51.973', N'{"QueryString":"","BodyData":"{}"}', N'', N'1', N'http://127.0.0.1:9290/api/Task/OutEmpty', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'381', N'2025-03-12 13:38:20.183', N'3', N'2025-03-12 13:38:20.190', N'{"QueryString":"","BodyData":"{}"}', N'', N'1', N'http://127.0.0.1:9290/api/Task/OutEmpty', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'382', N'2025-03-12 14:20:39.263', N'1275', N'2025-03-12 14:20:40.540', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"33002ff9-84c2-4eef-bb8f-31b092522744\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'383', N'2025-03-12 14:25:32.687', N'542', N'2025-03-12 14:25:33.227', N'{"QueryString":"","BodyData":"{\"UUID\":\"d424b445-07ea-44f4-9d67-adaf5b54fad2\",\"passWord\":\"123456\",\"userName\":\"admin\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'admin', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'384', N'2025-03-12 14:25:35.487', N'8978', N'2025-03-12 14:25:44.463', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'admin', N'PdaOutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'385', N'2025-03-12 14:25:48.210', N'6225', N'2025-03-12 14:25:54.437', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'admin', N'PdaOutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'386', N'2025-03-12 14:53:41.490', N'16321', N'2025-03-12 14:53:57.813', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'admin', N'PdaOutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'387', N'2025-03-12 14:53:57.810', N'3262', N'2025-03-12 14:54:01.073', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'admin', N'PdaOutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'388', N'2025-03-12 15:00:50.947', N'4777', N'2025-03-12 15:00:55.723', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'admin', N'PdaOutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'389', N'2025-03-12 15:20:28.963', N'1804', N'2025-03-12 15:20:30.767', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'admin', N'PdaOutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'390', N'2025-03-12 15:20:46.663', N'7239', N'2025-03-12 15:20:53.900', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'admin', N'PdaOutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'391', N'2025-03-12 15:44:57.497', N'3683', N'2025-03-12 15:45:01.180', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"cdd6c40c-aeae-43a6-b66a-5e339c77d84c\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'392', N'2025-03-12 15:45:36.903', N'6', N'2025-03-12 15:45:36.910', N'{"QueryString":"","BodyData":"{}"}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'admin', N'PdaOutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'393', N'2025-03-12 15:45:43.313', N'67', N'2025-03-12 15:45:43.383', N'{"QueryString":"","BodyData":"{\"UUID\":\"7b6a5f97-c5b0-4bc3-995e-cbb102c0a222\",\"passWord\":\"123456\",\"userName\":\"admin\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'admin', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'394', N'2025-03-12 15:45:46.707', N'11561', N'2025-03-12 15:45:58.270', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到可出库空托","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'admin', N'PdaOutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'395', N'2025-03-12 15:46:04.583', N'5011', N'2025-03-12 15:46:09.593', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到可出库空托","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'admin', N'PdaOutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'396', N'2025-03-12 15:46:13.423', N'72', N'2025-03-12 15:46:13.497', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到可出库空托","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'admin', N'PdaOutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'397', N'2025-03-12 15:46:16.690', N'101', N'2025-03-12 15:46:16.793', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到可出库空托","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'admin', N'PdaOutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'398', N'2025-03-12 16:33:59.127', N'10802', N'2025-03-12 16:34:09.927', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到可出库空托","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'admin', N'PdaOutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'399', N'2025-03-12 16:35:19.393', N'151', N'2025-03-12 16:35:19.547', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到可出库空托","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'admin', N'PdaOutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'400', N'2025-03-12 16:39:30.957', N'1', N'2025-03-12 16:39:30.960', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'401', N'2025-03-12 16:50:06.517', N'23330', N'2025-03-12 16:50:29.843', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":false,"code":0,"message":"Missing type map configuration or unsupported mapping.\r\n\r\nMapping types:\r\nDt_Task -> List`1\r\nWIDESEA_Model.Models.Dt_Task -> System.Collections.Generic.List`1[[WIDESEAWCS_DTO.WCSInfo.WMSTaskDTO, WIDESEA_DTO, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'402', N'2025-03-12 16:50:34.117', N'32061', N'2025-03-12 16:51:06.177', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":false,"code":0,"message":"Missing type map configuration or unsupported mapping.\r\n\r\nMapping types:\r\nDt_Task -> List`1\r\nWIDESEA_Model.Models.Dt_Task -> System.Collections.Generic.List`1[[WIDESEAWCS_DTO.WCSInfo.WMSTaskDTO, WIDESEA_DTO, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'403', N'2025-03-12 16:51:09.040', N'4244', N'2025-03-12 16:51:13.283', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":false,"code":0,"message":"Missing type map configuration or unsupported mapping.\r\n\r\nMapping types:\r\nDt_Task -> List`1\r\nWIDESEA_Model.Models.Dt_Task -> System.Collections.Generic.List`1[[WIDESEAWCS_DTO.WCSInfo.WMSTaskDTO, WIDESEA_DTO, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'404', N'2025-03-12 16:52:53.347', N'28335', N'2025-03-12 16:53:21.683', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'405', N'2025-03-12 16:53:35.220', N'2262', N'2025-03-12 16:53:37.480', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"9fe22258-952a-4dae-a698-4d808739940c\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'406', N'2025-03-12 16:59:43.440', N'140', N'2025-03-12 16:59:43.580', N'{"QueryString":"","BodyData":"{\"UUID\":\"1d598f17-70e9-44a4-98d0-4b8904a41bd7\",\"passWord\":\"123456\",\"userName\":\"Test1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'admin', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'407', N'2025-03-12 16:59:46.883', N'135', N'2025-03-12 16:59:47.020', N'{"QueryString":"","BodyData":"{\"UUID\":\"fb95e47f-8c26-4544-a717-8a1c3c8e8776\",\"passWord\":\"123456\",\"userName\":\"Test1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'admin', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'408', N'2025-03-12 17:00:27.757', N'137', N'2025-03-12 17:00:27.893', N'{"QueryString":"","BodyData":"{\"UUID\":\"b2665d3c-4bc2-4e0b-a039-fd84c19a08b2\",\"passWord\":\"123456\",\"userName\":\"Test1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'admin', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'409', N'2025-03-12 17:02:47.077', N'78766', N'2025-03-12 17:04:05.840', N'{"QueryString":"","BodyData":"{\"UUID\":\"5c70d4a5-62de-4ded-84e8-c706f0c07a69\",\"passWord\":\"123456\",\"userName\":\"Test1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'admin', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'410', N'2025-03-12 18:15:32.010', N'606', N'2025-03-12 18:15:32.617', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MTc3NDUzMiIsIm5iZiI6IjE3NDE3NzQ1MzIiLCJleHAiOiIxNzQxNzgxNzMyIiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.ucWmWrYQ2uP5B4-gJV54nKSshcID8uyO0OpUQ781Wvc","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'411', N'2025-03-12 18:15:32.697', N'11', N'2025-03-12 18:15:32.710', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'412', N'2025-03-12 18:15:36.100', N'7065', N'2025-03-12 18:15:43.163', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"570584d0-844c-40db-897c-455e5d198384\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'413', N'2025-03-12 18:20:57.267', N'53', N'2025-03-12 18:20:57.320', N'{"QueryString":"","BodyData":"{\"menuId\":0,\"parentId\":1,\"menuName\":\"PDA权限管理\",\"tableName\":\",\",\"url\":\"/permissionPDA\",\"auth\":\"[{\\\"text\\\":\\\"查询\\\",\\\"value\\\":\\\"Search\\\"}]\",\"icon\":\"\",\"orderNo\":0,\"enable\":1,\"menuType\":0}"}', N'', N'1', N'http://127.0.0.1:9290/api/Sys_Menu/save', N'127.0.0.1', N'admin', N'Save', N'Save', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'414', N'2025-03-12 18:21:16.483', N'64', N'2025-03-12 18:21:16.547', N'{"QueryString":"","BodyData":"{\"menuId\":0,\"parentId\":1,\"menuName\":\"PDA权限管理\",\"tableName\":\"permissionPDA\",\"url\":\"/permissionPDA\",\"auth\":\"[{\\\"text\\\":\\\"查询\\\",\\\"value\\\":\\\"Search\\\"}]\",\"icon\":\"\",\"orderNo\":0,\"enable\":1,\"menuType\":0}"}', N'', N'1', N'http://127.0.0.1:9290/api/Sys_Menu/save', N'127.0.0.1', N'admin', N'Save', N'Save', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'415', N'2025-03-12 18:32:35.667', N'9', N'2025-03-12 18:32:35.673', N'{"QueryString":"?roleId=3","BodyData":"[]"}', N'', N'1', N'http://127.0.0.1:9290/api/Sys_Role/SavePermissionPDA', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'416', N'2025-03-12 18:35:52.037', N'300', N'2025-03-12 18:35:52.337', N'{"QueryString":"?roleId=3","BodyData":"[{\"id\":49,\"actions\":[{\"text\":\"查询\",\"value\":\"Search\"}]},{\"id\":50,\"actions\":[{\"text\":\"查询\",\"value\":\"Search\"}]},{\"id\":48,\"actions\":[{\"text\":\"查询\",\"value\":\"Search\"}]}]"}', N'', N'1', N'http://127.0.0.1:9290/api/Sys_Role/SavePermissionPDA', N'127.0.0.1', N'admin', N'SavePermissionPDA', N'SavePermissionPDA', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'417', N'2025-03-12 18:36:27.713', N'179', N'2025-03-12 18:36:27.893', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"aab73803-2521-4985-8583-b22f099b4fef\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'418', N'2025-03-12 18:36:54.397', N'178', N'2025-03-12 18:36:54.573', N'{"QueryString":"","BodyData":"{\"UUID\":\"aa7e29e7-9ab8-4835-ae3c-e203a7082a9d\",\"passWord\":\"123456\",\"userName\":\"Test2\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'admin', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'419', N'2025-03-12 18:37:01.447', N'2', N'2025-03-12 18:37:01.450', N'{"QueryString":"","BodyData":"{}"}', N'', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'Test2', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'420', N'2025-03-12 18:44:17.467', N'229', N'2025-03-12 18:44:17.697', N'{"QueryString":"","BodyData":"{\"UUID\":\"19739233-3ed7-464b-a2f8-d6cb96d59b9d\",\"passWord\":\"123456\",\"userName\":\"Test1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'421', N'2025-03-12 18:44:20.103', N'107', N'2025-03-12 18:44:20.210', N'{"QueryString":"","BodyData":"{\"UUID\":\"e8692f3a-c71d-46a9-b4df-fa750d2ecde8\",\"passWord\":\"123456\",\"userName\":\"Test1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'422', N'2025-03-12 18:44:31.020', N'130', N'2025-03-12 18:44:31.150', N'{"QueryString":"","BodyData":"{\"UUID\":\"c0159207-bd6b-4c31-a7a2-b137cf4c2697\",\"passWord\":\"123456\",\"userName\":\"Test2\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'423', N'2025-03-12 18:48:24.543', N'27031', N'2025-03-12 18:48:51.573', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'Test2', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'424', N'2025-03-12 18:48:56.683', N'6090', N'2025-03-12 18:49:02.773', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'Test2', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'425', N'2025-03-12 18:49:07.897', N'2', N'2025-03-12 18:49:07.900', N'{"QueryString":"","BodyData":"{}"}', N'', N'1', N'http://127.0.0.1:9290/api/PDA/PdaOutEmpty', N'127.0.0.1', N'Test2', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'426', N'2025-03-12 18:50:30.763', N'8376', N'2025-03-12 18:50:39.140', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到可出库空托","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'Test2', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'427', N'2025-03-12 18:54:15.843', N'81218', N'2025-03-12 18:55:37.060', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托出库任务超时","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'Test2', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'428', N'2025-03-13 11:45:08.747', N'1151', N'2025-03-13 11:45:09.897', N'{"QueryString":"","BodyData":"{\"UUID\":\"48abbf07-4719-4896-89b3-61f5372f6e89\",\"passWord\":\"123456\",\"userName\":\"Test1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'429', N'2025-03-13 11:45:14.363', N'235', N'2025-03-13 11:45:14.600', N'{"QueryString":"","BodyData":"{\"UUID\":\"2c2fd07c-a9aa-4136-922b-0262993fada4\",\"passWord\":\"123456\",\"userName\":\"Test2\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'430', N'2025-03-13 11:45:35.250', N'104', N'2025-03-13 11:45:35.353', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"a5e0be2f-03ac-4649-b1c1-b83a20e83373\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'431', N'2025-03-13 11:45:48.363', N'5727', N'2025-03-13 11:45:54.090', N'{"QueryString":"?roleId=3","BodyData":"[]"}', N'', N'1', N'http://127.0.0.1:9290/api/Sys_Role/SavePermissionPDA', N'127.0.0.1', N'admin', N'SavePermissionPDA', N'SavePermissionPDA', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'432', N'2025-03-13 11:46:12.983', N'125', N'2025-03-13 11:46:13.107', N'{"QueryString":"","BodyData":"{\"UUID\":\"18f11e7a-05f4-4938-9eb9-957fb8121ccc\",\"passWord\":\"123456\",\"userName\":\"Test2\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'433', N'2025-03-13 11:46:17.763', N'115', N'2025-03-13 11:46:17.877', N'{"QueryString":"","BodyData":"{\"UUID\":\"c5a3b90f-1d8c-401f-8dcd-f84118bcaad4\",\"passWord\":\"123456\",\"userName\":\"Test1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'434', N'2025-03-13 11:46:54.927', N'113', N'2025-03-13 11:46:55.040', N'{"QueryString":"","BodyData":"{\"mainData\":{\"parentId\":2,\"roleName\":\"PDA\",\"deptId\":\"\",\"enable\":1},\"detailData\":null,\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/Sys_Role/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'435', N'2025-03-13 11:47:25.940', N'5775', N'2025-03-13 11:47:31.717', N'{"QueryString":"?roleId=5","BodyData":"[{\"id\":49,\"actions\":[{\"text\":\"查询\",\"value\":\"Search\"}]},{\"id\":50,\"actions\":[{\"text\":\"查询\",\"value\":\"Search\"}]},{\"id\":48,\"actions\":[{\"text\":\"查询\",\"value\":\"Search\"}]}]"}', N'', N'1', N'http://127.0.0.1:9290/api/Sys_Role/SavePermissionPDA', N'127.0.0.1', N'admin', N'SavePermissionPDA', N'SavePermissionPDA', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'436', N'2025-03-13 11:48:01.903', N'112', N'2025-03-13 11:48:02.017', N'{"QueryString":"","BodyData":"{\"mainData\":{\"systemType\":\"\",\"userName\":\"PDA1\",\"userTrueName\":\"PDA1\",\"role_Id\":5,\"enable\":\"1\",\"gender\":\"0\",\"remark\":\"\",\"headImageUrl\":\"\",\"Gender\":\"0\"},\"detailData\":null,\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'437', N'2025-03-13 11:48:13.797', N'116', N'2025-03-13 11:48:13.910', N'{"QueryString":"","BodyData":"{\"UUID\":\"3bd06830-fd3d-4f6e-89d7-5dbf10f3f6c6\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'438', N'2025-03-13 11:48:25.880', N'58539', N'2025-03-13 11:49:24.417', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'439', N'2025-03-13 11:49:39.517', N'44075', N'2025-03-13 11:50:23.590', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'440', N'2025-03-13 11:51:59.523', N'63559', N'2025-03-13 11:53:03.083', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'441', N'2025-03-13 13:51:20.807', N'95402', N'2025-03-13 13:52:56.210', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'442', N'2025-03-13 13:54:40.967', N'107', N'2025-03-13 13:54:41.077', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'443', N'2025-03-13 13:54:48.973', N'387', N'2025-03-13 13:54:49.360', N'{"QueryString":"","BodyData":"{\"UUID\":\"99255a44-353f-47d1-8e42-1a6d80b555c4\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'444', N'2025-03-13 13:54:57.767', N'65616', N'2025-03-13 13:56:03.383', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'445', N'2025-03-13 13:57:17.963', N'42926', N'2025-03-13 13:58:00.890', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'446', N'2025-03-13 13:58:10.927', N'3495', N'2025-03-13 13:58:14.420', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'447', N'2025-03-13 13:58:36.963', N'77', N'2025-03-13 13:58:37.040', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'448', N'2025-03-13 14:03:37.587', N'11204', N'2025-03-13 14:03:48.790', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【1】已存在任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'449', N'2025-03-13 14:03:52.190', N'135', N'2025-03-13 14:03:52.323', N'{"QueryString":"?barcode=1","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【1】已存在任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'450', N'2025-03-13 14:04:03.883', N'182', N'2025-03-13 14:04:04.063', N'{"QueryString":"?barcode=2","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到空托盘信息,物料编号【Empty000】","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'451', N'2025-03-13 14:04:07.410', N'152', N'2025-03-13 14:04:07.563', N'{"QueryString":"?barcode=2","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到空托盘信息,物料编号【Empty000】","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'452', N'2025-03-13 14:04:10.920', N'166', N'2025-03-13 14:04:11.087', N'{"QueryString":"?barcode=2","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到空托盘信息,物料编号【Empty000】","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'453', N'2025-03-13 14:04:27.690', N'343', N'2025-03-13 14:04:28.033', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"22339786-da91-4c98-8981-d2a3a35c06ac\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'454', N'2025-03-13 14:06:09.343', N'213', N'2025-03-13 14:06:09.553', N'{"QueryString":"","BodyData":"{\"mainData\":{\"areaId\":\"1\",\"materielCode\":\"Empty000\",\"materielName\":\"空托盘\",\"materielDes\":\"空托盘\",\"isMixBatch\":\"\",\"isMixMateriel\":\"\",\"unit\":\"KG\"},\"detailData\":null,\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/MaterielInfo/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'455', N'2025-03-13 14:07:24.017', N'10938', N'2025-03-13 14:07:34.957', N'{"QueryString":"?barcode=2","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'456', N'2025-03-13 14:08:53.543', N'107', N'2025-03-13 14:08:53.650', N'{"QueryString":"?barcode=2","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【2】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'457', N'2025-03-13 14:29:22.797', N'8280', N'2025-03-13 14:29:31.077', N'{"QueryString":"","BodyData":"{\"TaskNum\":313,\"Barcode\":\"2\",\"stationCode\":\"1002\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'458', N'2025-03-13 14:42:39.147', N'9692', N'2025-03-13 14:42:48.840', N'{"QueryString":"","BodyData":"{\"TaskNum\":313,\"Barcode\":\"2\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"Sequence contains no elements","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'459', N'2025-03-13 14:43:07.607', N'137', N'2025-03-13 14:43:07.743', N'{"QueryString":"","BodyData":"{\"TaskNum\":313,\"Barcode\":\"2\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"Sequence contains no elements","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'460', N'2025-03-13 14:44:31.710', N'10170', N'2025-03-13 14:44:41.880', N'{"QueryString":"","BodyData":"{\"TaskNum\":313,\"Barcode\":\"2\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"Sequence contains no elements","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'461', N'2025-03-13 14:45:27.380', N'10230', N'2025-03-13 14:45:37.610', N'{"QueryString":"","BodyData":"{\"TaskNum\":313,\"Barcode\":\"2\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"Sequence contains no elements","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'462', N'2025-03-13 14:48:43.470', N'130304', N'2025-03-13 14:50:53.773', N'{"QueryString":"","BodyData":"{\"TaskNum\":313,\"Barcode\":\"2\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"Sequence contains no elements","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'463', N'2025-03-13 15:00:46.573', N'43905', N'2025-03-13 15:01:30.477', N'{"QueryString":"","BodyData":"{\"TaskNum\":313,\"Barcode\":\"2\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'464', N'2025-03-13 16:07:30.133', N'18869', N'2025-03-13 16:07:49.003', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":313,\"PalletCode\":\"2\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"1001\",\"CurrentAddress\":\"001-003-001\",\"TargetAddress\":\"001-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'465', N'2025-03-13 16:08:14.997', N'2732', N'2025-03-13 16:08:17.730', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MTg1MzI5NyIsIm5iZiI6IjE3NDE4NTMyOTciLCJleHAiOiIxNzQxODYwNDk3IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.AVbKIQuKtn5Jk8x_VZcYL7pVFD5N9ybUTY6fXGcvJDs","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'466', N'2025-03-13 16:08:17.733', N'19', N'2025-03-13 16:08:17.753', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'467', N'2025-03-13 16:08:22.243', N'193', N'2025-03-13 16:08:22.437', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"7078c463-562a-4be0-a2f5-92d16dc59a7d\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'468', N'2025-03-13 16:24:33.073', N'534', N'2025-03-13 16:24:33.607', N'{"QueryString":"","BodyData":"{}"}', N'', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'469', N'2025-03-13 16:24:57.113', N'632', N'2025-03-13 16:24:57.747', N'{"QueryString":"","BodyData":"{\"UUID\":\"c9237b3b-c145-43ea-845d-2b6a6460e9c5\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'470', N'2025-03-13 16:49:27.043', N'1200', N'2025-03-13 16:49:28.243', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"ee2a4c2b-1f47-4a78-b4fa-3659446da7aa\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'471', N'2025-03-13 17:09:45.067', N'217819', N'2025-03-13 17:13:22.887', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'472', N'2025-03-13 17:35:52.073', N'10479', N'2025-03-13 17:36:02.550', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'473', N'2025-03-13 17:36:35.453', N'169', N'2025-03-13 17:36:35.620', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'474', N'2025-03-13 17:42:04.313', N'61049', N'2025-03-13 17:43:05.363', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'475', N'2025-03-13 17:43:35.273', N'33596', N'2025-03-13 17:44:08.867', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'476', N'2025-03-13 17:44:56.910', N'60803', N'2025-03-13 17:45:57.713', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托出库任务超时","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'477', N'2025-03-13 17:52:28.440', N'39750', N'2025-03-13 17:53:08.190', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'478', N'2025-03-13 18:01:45.193', N'130', N'2025-03-13 18:01:45.320', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到可出库空托","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'479', N'2025-03-16 09:27:33.963', N'3584', N'2025-03-16 09:27:37.547', N'{"QueryString":"","BodyData":"{\"UUID\":\"\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'480', N'2025-03-16 09:27:52.893', N'14123', N'2025-03-16 09:28:07.013', N'{"QueryString":"?barcode=25000001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000001】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'481', N'2025-03-16 09:32:31.257', N'110', N'2025-03-16 09:32:31.367', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"9631fe3d-b45a-4750-a1b8-ee06f23adfea\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'482', N'2025-03-16 09:33:56.137', N'91', N'2025-03-16 09:33:56.227', N'{"QueryString":"?barcode=25000001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000001】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'483', N'2025-03-16 09:34:18.513', N'11584', N'2025-03-16 09:34:30.100', N'{"QueryString":"?barcode=25000001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'484', N'2025-03-16 10:14:46.463', N'146', N'2025-03-16 10:14:46.610', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderType\":\"200\",\"upperOrderNo\":\"1\",\"orderStatus\":\"0\",\"remark\":\"\",\"id\":\"11\"},\"detailData\":[{\"id\":11,\"orderId\":11,\"materielCode\":\"3\",\"materielName\":\"3\",\"batchNo\":null,\"orderQuantity\":12,\"lockQuantity\":0,\"overOutQuantity\":0,\"orderDetailStatus\":0,\"remark\":null,\"creater\":\"admin\",\"createDate\":\"2025-02-23 21:23:59\",\"modifier\":null,\"modifyDate\":null,\"rowIndex\":1,\"elementIndex\":0},{\"id\":12,\"orderId\":11,\"materielCode\":\"2\",\"materielName\":\"2\",\"batchNo\":null,\"orderQuantity\":12,\"lockQuantity\":0,\"overOutQuantity\":0,\"orderDetailStatus\":0,\"remark\":null,\"creater\":\"admin\",\"createDate\":\"2025-02-23 21:23:59\",\"modifier\":null,\"modifyDate\":null,\"rowIndex\":2,\"elementIndex\":1}],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/OutboundOrder/update', N'127.0.0.1', N'admin', N'Update', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'485', N'2025-03-16 11:05:46.027', N'800', N'2025-03-16 11:05:46.827', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MjA5NDM0NiIsIm5iZiI6IjE3NDIwOTQzNDYiLCJleHAiOiIxNzQyMTAxNTQ2IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.LFEC8wr_hJtF0ztXBudihojkaI-PNAGsZ-Yrn0h3g2o","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'486', N'2025-03-16 11:05:46.847', N'11', N'2025-03-16 11:05:46.857', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'487', N'2025-03-16 11:05:52.163', N'99', N'2025-03-16 11:05:52.260', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"02d49bad-a3bb-46fb-af7f-448d69ccd66a\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'488', N'2025-03-16 13:32:20.597', N'859', N'2025-03-16 13:32:21.457', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1244\",\"UUID\":\"85222933-d9e5-4a7a-93c7-b7f8c5877922\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'489', N'2025-03-16 13:33:31.320', N'16421', N'2025-03-16 13:33:47.743', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"55987fba-c1f4-4db6-b5bb-13fdce8eb076\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'490', N'2025-03-16 13:33:55.470', N'4349', N'2025-03-16 13:33:59.820', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"12\",\"UUID\":\"e2e5c64f-5003-40f0-bb75-a38989139bab\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'491', N'2025-03-16 13:40:10.020', N'2999', N'2025-03-16 13:40:13.020', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"ad684e46-920b-4efb-8e7e-bd1dcb07e6c8\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'492', N'2025-03-16 13:40:33.807', N'75', N'2025-03-16 13:40:33.880', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"a52baffc-ec3b-4142-9580-94fb59933bfd\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'493', N'2025-03-16 13:44:23.930', N'147', N'2025-03-16 13:44:24.077', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"ef0d2a47-5c22-40c6-8156-e801ad482adf\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'494', N'2025-03-16 13:48:20.467', N'1699', N'2025-03-16 13:48:22.167', N'{"QueryString":"?id=11","BodyData":""}', N'{"status":false,"code":0,"message":"未找到已分配的出库信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/OutboundOrderDetail/RevokeLockOutboundStock', N'127.0.0.1', N'admin', N'RevokeLockOutboundStock', N'RevokeLockOutboundStock', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'495', N'2025-03-16 13:48:17.900', N'4269', N'2025-03-16 13:48:22.167', N'{"QueryString":"?id=11","BodyData":""}', N'{"status":false,"code":0,"message":"未找到已分配的出库信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/OutboundOrderDetail/RevokeLockOutboundStock', N'127.0.0.1', N'admin', N'RevokeLockOutboundStock', N'RevokeLockOutboundStock', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'496', N'2025-03-16 13:48:22.260', N'37', N'2025-03-16 13:48:22.297', N'{"QueryString":"?id=11","BodyData":""}', N'{"status":false,"code":0,"message":"未找到已分配的出库信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/OutboundOrderDetail/RevokeLockOutboundStock', N'127.0.0.1', N'admin', N'RevokeLockOutboundStock', N'RevokeLockOutboundStock', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'497', N'2025-03-16 14:46:21.330', N'34870', N'2025-03-16 14:46:56.200', N'{"QueryString":"","BodyData":"{\"TaskNum\":323,\"Barcode\":\"25000001\",\"stationCode\":\"1002\",\"Weight\":23,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'498', N'2025-03-16 14:56:26.450', N'60066', N'2025-03-16 14:57:26.517', N'{"QueryString":"","BodyData":"{\"TaskNum\":323,\"Barcode\":\"25000001\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'499', N'2025-03-16 14:57:38.580', N'24868', N'2025-03-16 14:58:03.447', N'{"QueryString":"","BodyData":"{\"TaskNum\":323,\"Barcode\":\"25000001\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"托盘号[25000001]的入库任务状态不匹配","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'500', N'2025-03-16 14:58:06.303', N'7208', N'2025-03-16 14:58:13.513', N'{"QueryString":"","BodyData":"{\"TaskNum\":323,\"Barcode\":\"25000001\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"托盘[25000001],该组盘状态不可入库","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'501', N'2025-03-16 15:04:07.303', N'27645', N'2025-03-16 15:04:34.950', N'{"QueryString":"","BodyData":"{\"TaskNum\":323,\"Barcode\":\"25000001\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'502', N'2025-03-17 09:26:19.190', N'1818', N'2025-03-17 09:26:21.010', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"9a9b8f2e-eebe-41b5-85b6-06e05dec72f3\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'503', N'2025-03-17 09:27:56.950', N'237', N'2025-03-17 09:27:57.187', N'{"QueryString":"","BodyData":"{\"UUID\":\"034c57e5-e110-44a6-99e8-3f39fd068bd7\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'504', N'2025-03-17 09:28:15.457', N'23837', N'2025-03-17 09:28:39.293', N'{"QueryString":"?barcode=25000001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'505', N'2025-03-17 09:30:45.027', N'7929', N'2025-03-17 09:30:52.957', N'{"QueryString":"","BodyData":"{\"TaskNum\":324,\"Barcode\":\"25000001\",\"stationCode\":\"1002\",\"Weight\":23,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'506', N'2025-03-17 09:31:20.827', N'13567', N'2025-03-17 09:31:34.393', N'{"QueryString":"","BodyData":"{\"TaskNum\":324,\"Barcode\":\"25000001\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'507', N'2025-03-17 10:20:58.300', N'155845', N'2025-03-17 10:23:34.143', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":324,\"PalletCode\":\"25000001\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"1001\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'508', N'2025-03-17 10:34:52.457', N'12142', N'2025-03-17 10:35:04.597', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'509', N'2025-03-17 10:35:56.737', N'112', N'2025-03-17 10:35:56.850', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到可出库空托","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'510', N'2025-03-17 10:46:47.523', N'30', N'2025-03-17 10:46:47.553', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MjE3OTYwNyIsIm5iZiI6IjE3NDIxNzk2MDciLCJleHAiOiIxNzQyMTg2ODA3IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.ZeWmvwGXwwOQaqp77iJUkxI_Ift9po5RycZJiHjAY50","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'511', N'2025-03-17 10:46:47.557', N'13', N'2025-03-17 10:46:47.567', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'512', N'2025-03-17 10:46:50.307', N'87', N'2025-03-17 10:46:50.393', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"7e4f0436-aa66-4dfc-bf19-d60e4d094e8a\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'513', N'2025-03-17 10:47:49.017', N'48934', N'2025-03-17 10:48:37.950', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'514', N'2025-03-17 12:58:43.163', N'1088', N'2025-03-17 12:58:44.250', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"555ebdb9-9cbf-47c3-9482-e536b255114b\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'515', N'2025-03-17 13:01:33.320', N'95', N'2025-03-17 13:01:33.417', N'{"QueryString":"?barcode=25000001","BodyData":"{}"}', N'', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'516', N'2025-03-17 13:01:39.760', N'302', N'2025-03-17 13:01:40.063', N'{"QueryString":"","BodyData":"{\"UUID\":\"333b2f4f-3760-44d0-a3a7-bed09040bed8\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'517', N'2025-03-17 13:01:48.613', N'60943', N'2025-03-17 13:02:49.557', N'{"QueryString":"?barcode=25000001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'518', N'2025-03-17 13:04:06.717', N'12905', N'2025-03-17 13:04:19.620', N'{"QueryString":"?barcode=25000001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'519', N'2025-03-17 13:12:19.593', N'3523', N'2025-03-17 13:12:23.117', N'{"QueryString":"","BodyData":"{\"TaskNum\":328,\"Barcode\":\"25000001\",\"stationCode\":\"1002\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'520', N'2025-03-17 13:15:11.667', N'6959', N'2025-03-17 13:15:18.627', N'{"QueryString":"","BodyData":"{\"TaskNum\":328,\"Barcode\":\"25000001\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'521', N'2025-03-17 13:18:42.363', N'24068', N'2025-03-17 13:19:06.430', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":328,\"PalletCode\":\"25000001\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"1001\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'522', N'2025-03-17 13:20:50.453', N'27784', N'2025-03-17 13:21:18.237', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'523', N'2025-03-17 15:58:09.527', N'599', N'2025-03-17 15:58:10.127', N'{"QueryString":"?barcode=25000050","BodyData":"{}"}', N'', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'524', N'2025-03-17 15:58:17.383', N'1541', N'2025-03-17 15:58:18.923', N'{"QueryString":"","BodyData":"{\"UUID\":\"76b08155-0e8d-4458-83d3-04e61e6cce40\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'525', N'2025-03-17 15:58:40.373', N'137', N'2025-03-17 15:58:40.510', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"e89c6d7e-19f4-4234-9863-2b9c31fee847\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'526', N'2025-03-17 15:58:26.710', N'29603', N'2025-03-17 15:58:56.313', N'{"QueryString":"?barcode=25000050","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'527', N'2025-03-17 16:04:16.540', N'4522', N'2025-03-17 16:04:21.060', N'{"QueryString":"","BodyData":"{\"TaskNum\":330,\"Barcode\":\"25000050\",\"stationCode\":\"1002\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'528', N'2025-03-17 16:04:42.563', N'5676', N'2025-03-17 16:04:48.240', N'{"QueryString":"","BodyData":"{\"TaskNum\":330,\"Barcode\":\"25000050\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'529', N'2025-03-17 16:07:21.677', N'5256', N'2025-03-17 16:07:26.933', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":330,\"PalletCode\":\"25000050\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"1001\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'530', N'2025-03-17 17:46:07.590', N'3063', N'2025-03-17 17:46:10.653', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MjIwNDc3MCIsIm5iZiI6IjE3NDIyMDQ3NzAiLCJleHAiOiIxNzQyMjExOTcwIiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.0MHplNw7ZbMoCSjyWXJgeH2CXfVA-NibKoW2LzwOLes","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'531', N'2025-03-17 17:46:10.763', N'16', N'2025-03-17 17:46:10.780', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'532', N'2025-03-17 17:46:14.317', N'392', N'2025-03-17 17:46:14.710', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"e3018138-ffc4-46c1-8b00-af851d0255a5\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'533', N'2025-03-17 17:47:12.827', N'235', N'2025-03-17 17:47:13.063', N'{"QueryString":"?barcode=25000050","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000050】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'534', N'2025-03-17 17:48:13.887', N'1856', N'2025-03-17 17:48:15.743', N'{"QueryString":"?barcode=25000050","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'535', N'2025-03-17 17:57:22.010', N'19537', N'2025-03-17 17:57:41.550', N'{"QueryString":"","BodyData":"{\"TaskNum\":331,\"Barcode\":\"25000050\",\"stationCode\":\"1002\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'536', N'2025-03-17 17:58:15.240', N'21808', N'2025-03-17 17:58:37.047', N'{"QueryString":"","BodyData":"{\"TaskNum\":331,\"Barcode\":\"25000050\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'537', N'2025-03-17 18:00:37.080', N'4037', N'2025-03-17 18:00:41.117', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":331,\"PalletCode\":\"25000050\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"1001\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'538', N'2025-03-18 13:10:25.810', N'1324', N'2025-03-18 13:10:27.137', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"0999dd61-bcda-46aa-92f4-663f953d1acd\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'539', N'2025-03-18 14:11:35.140', N'32349', N'2025-03-18 14:12:07.490', N'{"QueryString":"?id=11","BodyData":"[{\"materielCode\":\"3\",\"materielName\":\"3\",\"useableQuantity\":12,\"palletCode\":\"25000025,25000026,25000027,25000028,25000029,25000030,25000031,25000032,25000033,25000034,25000035,25000036\",\"locationCode\":\"003-002-001\",\"batchNo\":\"20250222T3\",\"inDate\":null}]"}', N'{"status":false,"code":0,"message":"在应使用条件的上下文(在 '','' 附近)中指定了非布尔类型的表达式。","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/Task/GenerateOutboundTask', N'127.0.0.1', N'admin', N'GenerateOutboundTask', N'GenerateOutboundTask', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'540', N'2025-03-18 14:32:23.867', N'1966', N'2025-03-18 14:32:25.833', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MjI3OTU0NSIsIm5iZiI6IjE3NDIyNzk1NDUiLCJleHAiOiIxNzQyMjg2NzQ1IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.DwYiXBf_9iEHi88VJvIBkBvZO4owooy7nq10pp_9u20","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'541', N'2025-03-18 14:32:25.887', N'9', N'2025-03-18 14:32:25.897', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'542', N'2025-03-18 14:32:30.540', N'260', N'2025-03-18 14:32:30.800', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"adf26187-bb66-4a8d-8525-0f194b9bb37d\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'543', N'2025-03-18 14:40:22.107', N'219', N'2025-03-18 14:40:22.327', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderType\":\"200\",\"upperOrderNo\":\"1\",\"orderStatus\":\"0\",\"remark\":\"\",\"id\":\"11\"},\"detailData\":[{\"id\":11,\"orderId\":11,\"materielCode\":\"3\",\"materielName\":\"3\",\"batchNo\":null,\"orderQuantity\":12,\"lockQuantity\":0,\"overOutQuantity\":0,\"orderDetailStatus\":0,\"remark\":null,\"creater\":\"admin\",\"createDate\":\"2025-02-23 21:23:59\",\"modifier\":\"admin\",\"modifyDate\":\"2025-03-16 10:14:46\",\"rowIndex\":1,\"elementIndex\":0},{\"id\":12,\"orderId\":11,\"materielCode\":\"1\",\"materielName\":\"1\",\"batchNo\":null,\"orderQuantity\":12,\"lockQuantity\":0,\"overOutQuantity\":0,\"orderDetailStatus\":0,\"remark\":null,\"creater\":\"admin\",\"createDate\":\"2025-02-23 21:23:59\",\"modifier\":\"admin\",\"modifyDate\":\"2025-03-16 10:14:46\",\"rowIndex\":2,\"elementIndex\":1}],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/OutboundOrder/update', N'127.0.0.1', N'admin', N'Update', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'544', N'2025-03-18 16:11:58.100', N'2361', N'2025-03-18 16:12:00.460', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MjI4NTUyMCIsIm5iZiI6IjE3NDIyODU1MjAiLCJleHAiOiIxNzQyMjkyNzIwIiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.ROTDmcSagi1yRBKX2qyw9cAmlIGjWWvXhwojSQcGKkc","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'545', N'2025-03-18 16:12:00.530', N'9', N'2025-03-18 16:12:00.540', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'546', N'2025-03-18 16:12:03.150', N'207', N'2025-03-18 16:12:03.357', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"83c09341-8ef2-43bf-8756-9eb05f5eebf2\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'547', N'2025-03-19 09:54:29.643', N'8674', N'2025-03-19 09:54:38.317', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"a855d70f-7712-48b5-9c0a-bd020520af0c\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'548', N'2025-03-19 09:56:02.343', N'331', N'2025-03-19 09:56:02.673', N'{"QueryString":"","BodyData":"{\"UUID\":\"53305959-f61e-41c6-81e9-fe709e7aae45\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'549', N'2025-03-19 09:56:13.043', N'26504', N'2025-03-19 09:56:39.547', N'{"QueryString":"?barcode=25000001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"任务接收错误,错误信息:任务号【416已存在任务】","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'550', N'2025-03-19 09:57:01.540', N'381', N'2025-03-19 09:57:01.920', N'{"QueryString":"?barcode=25000001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'551', N'2025-03-19 09:58:15.283', N'6977', N'2025-03-19 09:58:22.260', N'{"QueryString":"","BodyData":"{\"TaskNum\":417,\"Barcode\":\"25000001\",\"stationCode\":\"1002\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'552', N'2025-03-19 09:58:43.617', N'4001', N'2025-03-19 09:58:47.617', N'{"QueryString":"","BodyData":"{\"TaskNum\":417,\"Barcode\":\"25000001\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'553', N'2025-03-19 10:00:35.847', N'3351', N'2025-03-19 10:00:39.197', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":417,\"PalletCode\":\"25000001\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"1001\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'554', N'2025-03-19 10:01:58.713', N'7446', N'2025-03-19 10:02:06.160', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"任务接收错误,错误信息:任务号【418已存在任务】","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'555', N'2025-03-19 10:02:31.767', N'25525', N'2025-03-19 10:02:57.290', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"任务接收错误,错误信息:任务号【419已存在任务】","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'556', N'2025-03-19 10:03:01.733', N'1894', N'2025-03-19 10:03:03.627', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'557', N'2025-03-19 10:16:03.617', N'1433', N'2025-03-19 10:16:05.050', N'{"QueryString":"?barcode=25000001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'558', N'2025-03-19 10:27:30.673', N'2126', N'2025-03-19 10:27:32.800', N'{"QueryString":"","BodyData":"{\"TaskNum\":421,\"Barcode\":\"25000001\",\"stationCode\":\"1002\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'559', N'2025-03-19 10:27:54.557', N'4090', N'2025-03-19 10:27:58.647', N'{"QueryString":"","BodyData":"{\"TaskNum\":421,\"Barcode\":\"25000001\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'560', N'2025-03-19 10:29:41.603', N'3102', N'2025-03-19 10:29:44.703', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":421,\"PalletCode\":\"25000001\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"1001\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'561', N'2025-03-19 10:29:54.450', N'3845', N'2025-03-19 10:29:58.293', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"任务接收错误,错误信息:任务号【422已存在任务】","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'562', N'2025-03-19 10:30:14.063', N'3033', N'2025-03-19 10:30:17.097', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'563', N'2025-03-20 16:40:31.590', N'1614', N'2025-03-20 16:40:33.203', N'{"QueryString":"","BodyData":"{\"UUID\":\"6d583d1c-61a8-4656-ae77-7345ceb0d132\",\"passWord\":\"123456\",\"userName\":\"admin\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'564', N'2025-03-21 14:39:27.850', N'2026', N'2025-03-21 14:39:29.877', N'{"QueryString":"","BodyData":"{\"UUID\":\"822a1b7b-b1e7-446f-a658-631f44d9ea38\",\"passWord\":\"123456\",\"userName\":\"admin\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'565', N'2025-03-22 10:48:24.057', N'1528', N'2025-03-22 10:48:25.583', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"3ef4bf43-ea67-48b8-bbe4-054ab18982e8\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'566', N'2025-03-22 10:51:04.190', N'1', N'2025-03-22 10:51:04.190', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'567', N'2025-03-22 10:51:07.123', N'0', N'2025-03-22 10:51:07.123', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'568', N'2025-03-22 10:51:10.133', N'0', N'2025-03-22 10:51:10.133', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'569', N'2025-03-22 10:51:13.123', N'1', N'2025-03-22 10:51:13.127', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'570', N'2025-03-22 10:52:13.180', N'10', N'2025-03-22 10:52:13.190', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'571', N'2025-03-22 10:53:13.143', N'1', N'2025-03-22 10:53:13.143', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'572', N'2025-03-22 10:54:13.217', N'0', N'2025-03-22 10:54:13.217', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'573', N'2025-03-22 10:55:13.270', N'1', N'2025-03-22 10:55:13.270', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'574', N'2025-03-22 10:56:13.227', N'7', N'2025-03-22 10:56:13.233', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'575', N'2025-03-22 10:57:13.177', N'8', N'2025-03-22 10:57:13.187', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'576', N'2025-03-22 10:58:13.143', N'0', N'2025-03-22 10:58:13.143', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'577', N'2025-03-22 10:59:13.200', N'3', N'2025-03-22 10:59:13.203', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'578', N'2025-03-22 10:59:37.427', N'1', N'2025-03-22 10:59:37.427', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'579', N'2025-03-22 10:59:39.523', N'1', N'2025-03-22 10:59:39.523', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'580', N'2025-03-22 10:59:42.533', N'0', N'2025-03-22 10:59:42.533', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'581', N'2025-03-22 10:59:45.527', N'1', N'2025-03-22 10:59:45.527', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'582', N'2025-03-22 10:59:48.530', N'0', N'2025-03-22 10:59:48.530', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'583', N'2025-03-22 10:59:51.527', N'4', N'2025-03-22 10:59:51.530', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'584', N'2025-03-22 10:59:54.530', N'0', N'2025-03-22 10:59:54.530', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'585', N'2025-03-22 10:59:57.523', N'0', N'2025-03-22 10:59:57.527', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'586', N'2025-03-22 11:00:00.523', N'1', N'2025-03-22 11:00:00.523', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'587', N'2025-03-22 11:00:03.537', N'0', N'2025-03-22 11:00:03.537', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'588', N'2025-03-22 11:00:06.530', N'1', N'2025-03-22 11:00:06.530', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'589', N'2025-03-22 11:00:10.133', N'1', N'2025-03-22 11:00:10.133', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'590', N'2025-03-22 11:00:13.137', N'1', N'2025-03-22 11:00:13.137', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'591', N'2025-03-22 11:00:16.133', N'1', N'2025-03-22 11:00:16.137', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'592', N'2025-03-22 11:00:19.137', N'0', N'2025-03-22 11:00:19.137', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'593', N'2025-03-22 11:00:22.133', N'1', N'2025-03-22 11:00:22.133', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'594', N'2025-03-22 11:00:25.123', N'1', N'2025-03-22 11:00:25.123', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'595', N'2025-03-22 11:00:28.123', N'1', N'2025-03-22 11:00:28.123', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'596', N'2025-03-22 11:00:31.127', N'1', N'2025-03-22 11:00:31.127', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'597', N'2025-03-22 11:00:34.123', N'1', N'2025-03-22 11:00:34.123', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'598', N'2025-03-22 11:00:37.140', N'1', N'2025-03-22 11:00:37.140', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'599', N'2025-03-22 11:00:40.133', N'1', N'2025-03-22 11:00:40.133', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'600', N'2025-03-22 11:00:43.137', N'0', N'2025-03-22 11:00:43.137', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'601', N'2025-03-22 11:00:46.133', N'1', N'2025-03-22 11:00:46.133', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'602', N'2025-03-22 11:00:49.130', N'1', N'2025-03-22 11:00:49.130', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'603', N'2025-03-22 11:00:52.133', N'1', N'2025-03-22 11:00:52.133', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'604', N'2025-03-22 11:00:55.137', N'0', N'2025-03-22 11:00:55.137', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'605', N'2025-03-22 11:00:58.123', N'0', N'2025-03-22 11:00:58.123', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'606', N'2025-03-22 11:01:01.130', N'0', N'2025-03-22 11:01:01.130', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'607', N'2025-03-22 11:01:04.127', N'0', N'2025-03-22 11:01:04.127', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'608', N'2025-03-22 11:01:07.127', N'0', N'2025-03-22 11:01:07.130', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'609', N'2025-03-22 11:01:13.137', N'1', N'2025-03-22 11:01:13.137', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'610', N'2025-03-22 11:02:13.170', N'3', N'2025-03-22 11:02:13.173', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'611', N'2025-03-22 11:02:46.307', N'0', N'2025-03-22 11:02:46.310', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'612', N'2025-03-22 11:02:48.523', N'0', N'2025-03-22 11:02:48.523', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'613', N'2025-03-22 11:02:51.533', N'0', N'2025-03-22 11:02:51.533', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'614', N'2025-03-22 11:02:54.530', N'1', N'2025-03-22 11:02:54.533', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'615', N'2025-03-22 11:02:57.527', N'0', N'2025-03-22 11:02:57.527', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'616', N'2025-03-22 11:03:00.523', N'0', N'2025-03-22 11:03:00.523', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'617', N'2025-03-22 11:03:03.533', N'0', N'2025-03-22 11:03:03.533', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'618', N'2025-03-22 11:03:06.533', N'0', N'2025-03-22 11:03:06.533', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'619', N'2025-03-22 11:03:09.537', N'0', N'2025-03-22 11:03:09.537', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'620', N'2025-03-22 11:03:13.123', N'1', N'2025-03-22 11:03:13.127', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'621', N'2025-03-22 11:03:16.127', N'1', N'2025-03-22 11:03:16.127', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'622', N'2025-03-22 11:03:19.130', N'0', N'2025-03-22 11:03:19.130', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'623', N'2025-03-22 11:03:22.130', N'0', N'2025-03-22 11:03:22.130', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'624', N'2025-03-22 11:03:25.123', N'1', N'2025-03-22 11:03:25.123', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'625', N'2025-03-22 11:03:28.130', N'1', N'2025-03-22 11:03:28.130', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'626', N'2025-03-22 11:03:31.127', N'1', N'2025-03-22 11:03:31.127', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'627', N'2025-03-22 11:03:34.123', N'0', N'2025-03-22 11:03:34.123', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'628', N'2025-03-22 11:03:37.137', N'0', N'2025-03-22 11:03:37.137', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'629', N'2025-03-22 11:03:40.140', N'0', N'2025-03-22 11:03:40.143', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'630', N'2025-03-22 11:03:43.133', N'0', N'2025-03-22 11:03:43.133', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'631', N'2025-03-22 11:03:46.127', N'1', N'2025-03-22 11:03:46.127', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'632', N'2025-03-22 11:03:49.133', N'0', N'2025-03-22 11:03:49.133', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'633', N'2025-03-22 11:03:52.133', N'0', N'2025-03-22 11:03:52.133', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'634', N'2025-03-22 11:03:55.127', N'1', N'2025-03-22 11:03:55.127', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'635', N'2025-03-22 11:03:58.143', N'1', N'2025-03-22 11:03:58.143', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'636', N'2025-03-22 11:04:01.133', N'1', N'2025-03-22 11:04:01.133', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'637', N'2025-03-22 11:04:04.130', N'1', N'2025-03-22 11:04:04.130', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'638', N'2025-03-22 11:04:07.130', N'1', N'2025-03-22 11:04:07.133', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'639', N'2025-03-22 11:04:10.127', N'0', N'2025-03-22 11:04:10.127', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'640', N'2025-03-22 11:04:13.130', N'1', N'2025-03-22 11:04:13.130', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'641', N'2025-03-22 11:05:13.153', N'1', N'2025-03-22 11:05:13.153', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'642', N'2025-03-22 11:06:13.203', N'38', N'2025-03-22 11:06:13.240', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'643', N'2025-03-22 11:07:13.170', N'0', N'2025-03-22 11:07:13.170', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'644', N'2025-03-22 11:08:13.220', N'0', N'2025-03-22 11:08:13.220', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'645', N'2025-03-22 11:09:13.223', N'1', N'2025-03-22 11:09:13.223', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'646', N'2025-03-22 11:10:13.203', N'1', N'2025-03-22 11:10:13.207', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'647', N'2025-03-22 11:11:13.177', N'0', N'2025-03-22 11:11:13.177', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'648', N'2025-03-22 11:12:13.217', N'4', N'2025-03-22 11:12:13.220', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'649', N'2025-03-22 11:13:13.167', N'0', N'2025-03-22 11:13:13.167', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'650', N'2025-03-22 11:14:13.173', N'0', N'2025-03-22 11:14:13.173', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'651', N'2025-03-22 11:15:13.180', N'9', N'2025-03-22 11:15:13.190', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'652', N'2025-03-22 11:16:13.200', N'1', N'2025-03-22 11:16:13.200', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'653', N'2025-03-22 11:17:13.143', N'0', N'2025-03-22 11:17:13.143', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'654', N'2025-03-22 11:18:13.190', N'1', N'2025-03-22 11:18:13.190', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'655', N'2025-03-22 11:19:13.173', N'0', N'2025-03-22 11:19:13.173', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'656', N'2025-03-22 11:20:13.133', N'0', N'2025-03-22 11:20:13.133', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'657', N'2025-03-22 11:21:13.180', N'0', N'2025-03-22 11:21:13.180', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'658', N'2025-03-22 11:22:13.243', N'36', N'2025-03-22 11:22:13.277', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'659', N'2025-03-22 11:23:13.203', N'1', N'2025-03-22 11:23:13.203', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'660', N'2025-03-22 11:24:13.183', N'3', N'2025-03-22 11:24:13.187', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/dt_stationinfo/dt_stationinfolist', N'127.0.0.1', N'admin', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'661', N'2025-03-22 14:43:13.373', N'634', N'2025-03-22 14:43:14.007', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MjYyNTc5MyIsIm5iZiI6IjE3NDI2MjU3OTMiLCJleHAiOiIxNzQyNjMyOTkzIiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.1aguiV_XNMz3P6KPH6liw3ikzw8wq9zZOPzGzBmY0qk","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'662', N'2025-03-22 14:43:14.020', N'14', N'2025-03-22 14:43:14.033', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'663', N'2025-03-22 14:43:14.083', N'30', N'2025-03-22 14:43:14.113', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MjYyNTc5NCIsIm5iZiI6IjE3NDI2MjU3OTQiLCJleHAiOiIxNzQyNjMyOTk0IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.qNmkd8Ojuc4leFUWiOweYiTQO_889Qv_YY8g7xu_K8k","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'664', N'2025-03-22 14:43:29.683', N'171', N'2025-03-22 14:43:29.853', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"f9ef09f4-46e5-458d-8ce4-d7a0545ce0a8\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'665', N'2025-03-22 15:12:04.310', N'90', N'2025-03-22 15:12:04.400', N'{"QueryString":"","BodyData":"{\"Extra\":3,\"DelKeys\":[690]}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/LocationInfo/UpdateEnableStatus', N'127.0.0.1', N'admin', N'UpdateEnableStatus', N'UpdateEnableStatus', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'666', N'2025-03-22 16:04:13.660', N'4751', N'2025-03-22 16:04:18.410', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MjYzMDY1OCIsIm5iZiI6IjE3NDI2MzA2NTgiLCJleHAiOiIxNzQyNjM3ODU4IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.nkwLYXGyxMImh4jxkmQt5357F2n0QgXBRpQKAwd-bqc","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'667', N'2025-03-22 16:04:18.587', N'16', N'2025-03-22 16:04:18.603', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'668', N'2025-03-22 16:22:44.393', N'495', N'2025-03-22 16:22:44.890', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"ff189211-e899-4925-b8b4-495b3ebeb57e\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'669', N'2025-03-24 09:50:06.847', N'1490', N'2025-03-24 09:50:08.337', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"78778c0f-b0ba-49e1-b044-09e8136f6ca9\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'670', N'2025-03-24 11:10:44.650', N'1381', N'2025-03-24 11:10:46.033', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0Mjc4NTg0NSIsIm5iZiI6IjE3NDI3ODU4NDUiLCJleHAiOiIxNzQyNzkzMDQ1IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.XsJOXcCKLQ-4AVqFUpGjXBdg-XqEPpUQfeCgAyaYmuQ","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'671', N'2025-03-24 11:10:46.120', N'16', N'2025-03-24 11:10:46.137', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'672', N'2025-03-24 11:10:50.393', N'234', N'2025-03-24 11:10:50.627', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"c7ad68f8-fe4c-46d1-ae26-db43109e9153\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'673', N'2025-03-24 15:56:08.330', N'1708', N'2025-03-24 15:56:10.040', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"cf0294dc-03d7-40e5-bbc8-80482d84d995\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'674', N'2025-03-25 10:01:10.493', N'1232', N'2025-03-25 10:01:11.723', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"20cc8b6a-5899-4ac5-a7cf-0e6785714c8e\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'675', N'2025-03-25 10:29:44.017', N'320', N'2025-03-25 10:29:44.337', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"250325\",\"orderStatus\":\"\",\"createType\":\"\",\"orderType\":\"100\",\"upperOrderNo\":\"\",\"remark\":\"\"},\"detailData\":[{\"materielCode\":\"1\",\"materielName\":\"1\",\"batchNo\":\"250325T1\",\"orderQuantity\":\"12\",\"elementIndex\":0},{\"materielCode\":\"2\",\"materielName\":\"2\",\"batchNo\":\"250325T2\",\"orderQuantity\":\"12\",\"elementIndex\":1}],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:9290/api/InboundOrder/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'676', N'2025-03-25 10:41:45.813', N'2650', N'2025-03-25 10:41:48.463', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000001\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"250325T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"托盘【25000001】已存在库存信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'677', N'2025-03-25 10:52:33.817', N'10527', N'2025-03-25 10:52:44.343', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000037\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"250325T1\",\"traytype\":4}"}', N'{"status":false,"code":0,"message":"Value cannot be null. (Parameter ''source'')","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'678', N'2025-03-25 10:54:00.440', N'35787', N'2025-03-25 10:54:36.227', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000037\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"250325T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":425,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000037","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"250325","grade":0,"dispatchertime":"2025-03-25 10:54:25","remark":null,"creater":"System","createDate":"2025-03-25 10:54:29","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'679', N'2025-03-25 14:34:57.233', N'1254', N'2025-03-25 14:34:58.487', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"3e6405e6-5b4d-4289-8e93-a2db60e5a3b2\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'680', N'2025-03-25 17:07:13.677', N'1114', N'2025-03-25 17:07:14.793', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"3c3924d3-af59-415f-a31a-9698dab2f771\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'681', N'2025-03-27 16:36:57.783', N'873', N'2025-03-27 16:36:58.657', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"ecaf1ea9-d044-4998-852f-9a133bad5736\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'682', N'2025-03-27 16:37:53.220', N'83', N'2025-03-27 16:37:53.303', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"e1a78838-278f-4bd7-b663-20db4b4b2ed3\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'683', N'2025-03-27 16:38:02.270', N'64', N'2025-03-27 16:38:02.333', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"544d187c-28e2-4a7e-9a84-edae5b66e3c5\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'684', N'2025-04-03 16:09:34.780', N'1578', N'2025-04-03 16:09:36.360', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"729bd2f8-afd4-42d5-924b-12ab53c2b9e0\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'685', N'2025-04-03 17:53:26.070', N'1287', N'2025-04-03 17:53:27.357', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0MzY3NDAwNyIsIm5iZiI6IjE3NDM2NzQwMDciLCJleHAiOiIxNzQzNjgxMjA3IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.jEWMkgA5v00I2dZEzup2uRg82TmKc8OsvWch2qu_7kI","devMessage":null}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'686', N'2025-04-03 17:53:27.417', N'7', N'2025-04-03 17:53:27.423', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:9290/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'687', N'2025-04-03 17:53:46.950', N'228', N'2025-04-03 17:53:47.177', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"06e2664a-7854-4d79-a7b1-5710db527515\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1681', N'2025-04-12 14:39:27.660', N'790', N'2025-04-12 14:39:28.453', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/Largescreen/Current_agvtask', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1682', N'2025-04-12 14:39:37.797', N'0', N'2025-04-12 14:39:37.797', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/Largescreen/Current_agvtask', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1683', N'2025-04-12 14:43:02.660', N'357', N'2025-04-12 14:43:03.017', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/Largescreen/Current_agvtask', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1684', N'2025-04-12 14:43:13.270', N'13', N'2025-04-12 14:43:13.283', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/Largescreen/Current_agvtask', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1685', N'2025-04-12 14:43:50.290', N'8', N'2025-04-12 14:43:50.297', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/Largescreen/Current_agvtask', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1686', N'2025-04-12 14:44:34.120', N'36', N'2025-04-12 14:44:34.157', N'{"QueryString":"","BodyData":""}', N'', N'1', N'http://127.0.0.1:9290/api/Largescreen/Current_agvtask', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1687', N'2025-04-15 14:28:56.910', N'362', N'2025-04-15 14:28:57.273', N'{"QueryString":"","BodyData":"{\"UUID\":\"a536df6f-7c6e-4a05-8b19-e62fe9c939c9\",\"passWord\":\"123456\",\"userName\":\"admin\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1688', N'2025-04-15 14:30:15.310', N'8792', N'2025-04-15 14:30:24.103', N'{"QueryString":"?barcode=25000037","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000037】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1689', N'2025-04-15 14:33:13.423', N'12866', N'2025-04-15 14:33:26.290', N'{"QueryString":"?barcode=25000037&station=25000037","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000037】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1690', N'2025-04-15 14:33:30.753', N'1111', N'2025-04-15 14:33:31.863', N'{"QueryString":"?barcode=25000037&station=25000037","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000037】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1691', N'2025-04-15 14:40:45.403', N'10240', N'2025-04-15 14:40:55.643', N'{"QueryString":"?barcode=25000037&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000037】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1692', N'2025-04-15 14:42:33.510', N'3334', N'2025-04-15 14:42:36.843', N'{"QueryString":"?barcode=25000051&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1693', N'2025-04-15 14:44:51.197', N'10347', N'2025-04-15 14:45:01.543', N'{"QueryString":"?barcode=25000051&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1694', N'2025-04-15 14:47:49.673', N'658', N'2025-04-15 14:47:50.333', N'{"QueryString":"?barcode=25000051&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1695', N'2025-04-15 14:53:21.667', N'1292', N'2025-04-15 14:53:22.960', N'{"QueryString":"?barcode=25000052&station=K002","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1696', N'2025-04-15 14:53:30.503', N'110', N'2025-04-15 14:53:30.613', N'{"QueryString":"?barcode=25000001&station=K003","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000001】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1697', N'2025-04-15 14:54:28.570', N'308', N'2025-04-15 14:54:28.877', N'{"QueryString":"?barcode=25000001&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/InEmpty', N'127.0.0.1', N'admin', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1698', N'2025-04-15 15:34:30.370', N'11302', N'2025-04-15 15:34:41.670', N'{"QueryString":"","BodyData":"{\"TaskNum\":428,\"Barcode\":\"25000051\",\"stationCode\":\"1002\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1699', N'2025-04-15 15:35:02.630', N'22195', N'2025-04-15 15:35:24.823', N'{"QueryString":"","BodyData":"{\"TaskNum\":428,\"Barcode\":\"25000051\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1700', N'2025-04-15 15:36:52.780', N'18918', N'2025-04-15 15:37:11.700', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":428,\"PalletCode\":\"25000051\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K001\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1701', N'2025-04-15 16:16:42.043', N'4136', N'2025-04-15 16:16:46.180', N'{"QueryString":"","BodyData":"{\"TaskNum\":429,\"Barcode\":\"25000052\",\"stationCode\":\"1002\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1702', N'2025-04-15 16:17:08.130', N'4867', N'2025-04-15 16:17:12.997', N'{"QueryString":"","BodyData":"{\"TaskNum\":429,\"Barcode\":\"25000052\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1703', N'2025-04-15 16:18:47.387', N'94', N'2025-04-15 16:18:47.483', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":429,\"PalletCode\":\"25000052\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K002\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1704', N'2025-04-15 16:22:50.023', N'27', N'2025-04-15 16:22:50.050', N'{"QueryString":"","BodyData":"{\"TaskNum\":430,\"Barcode\":\"25000001\",\"stationCode\":\"1002\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1705', N'2025-04-15 16:23:11.070', N'87', N'2025-04-15 16:23:11.157', N'{"QueryString":"","BodyData":"{\"TaskNum\":430,\"Barcode\":\"25000001\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1706', N'2025-04-15 16:28:32.043', N'165', N'2025-04-15 16:28:32.210', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":430,\"PalletCode\":\"25000001\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1707', N'2025-04-16 10:05:24.603', N'354', N'2025-04-16 10:05:24.957', N'{"QueryString":"","BodyData":"{\"UUID\":\"868464c8-e90a-4eee-baa5-cb0147f5784b\",\"passWord\":\"123456\",\"userName\":\"Pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.86:9290/api/User/login', N'192.168.10.51', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1708', N'2025-04-16 10:29:25.397', N'917', N'2025-04-16 10:29:26.313', N'{"QueryString":"?barcode=25000241&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1709', N'2025-04-16 11:08:50.207', N'115', N'2025-04-16 11:08:50.323', N'{"QueryString":"?barcode=25000241&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000241】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1710', N'2025-04-16 11:08:56.073', N'89', N'2025-04-16 11:08:56.160', N'{"QueryString":"?barcode=25000241&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000241】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1711', N'2025-04-16 11:09:10.390', N'91', N'2025-04-16 11:09:10.483', N'{"QueryString":"?barcode=25000241&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000241】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1712', N'2025-04-16 11:10:53.100', N'93', N'2025-04-16 11:10:53.193', N'{"QueryString":"?barcode=25000241&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000241】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1713', N'2025-04-16 11:10:55.610', N'100', N'2025-04-16 11:10:55.710', N'{"QueryString":"?barcode=25000241&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000241】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1714', N'2025-04-16 11:11:01.913', N'95', N'2025-04-16 11:11:02.010', N'{"QueryString":"?barcode=25000241&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000241】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1715', N'2025-04-16 11:11:16.170', N'89', N'2025-04-16 11:11:16.260', N'{"QueryString":"?barcode=25000241&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000241】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1716', N'2025-04-16 11:12:03.790', N'100', N'2025-04-16 11:12:03.890', N'{"QueryString":"?barcode=25000241&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000241】已存在任务","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1717', N'2025-04-16 11:12:20.973', N'279', N'2025-04-16 11:12:21.253', N'{"QueryString":"?barcode=25000241&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1718', N'2025-04-16 11:50:54.950', N'70', N'2025-04-16 11:50:55.020', N'{"QueryString":"","BodyData":"{\"TaskNum\":432,\"Barcode\":\"25000241\",\"stationCode\":\"1002\",\"Weight\":155,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1719', N'2025-04-16 11:51:16.763', N'84', N'2025-04-16 11:51:16.850', N'{"QueryString":"","BodyData":"{\"TaskNum\":432,\"Barcode\":\"25000241\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1720', N'2025-04-16 12:01:24.817', N'83', N'2025-04-16 12:01:24.900', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":432,\"PalletCode\":\"25000241\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K001\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1721', N'2025-04-16 12:01:58.177', N'294', N'2025-04-16 12:01:58.470', N'{"QueryString":"?barcode=25000050&station=K002","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1722', N'2025-04-16 12:59:39.850', N'3114', N'2025-04-16 12:59:42.963', N'{"QueryString":"","BodyData":"{\"TaskNum\":433,\"Barcode\":\"25000050\",\"stationCode\":\"1002\",\"Weight\":158,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1723', N'2025-04-16 13:00:04.103', N'53', N'2025-04-16 13:00:04.157', N'{"QueryString":"","BodyData":"{\"TaskNum\":433,\"Barcode\":\"25000050\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1724', N'2025-04-16 13:01:19.810', N'49', N'2025-04-16 13:01:19.860', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":433,\"PalletCode\":\"25000050\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K002\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1725', N'2025-04-16 13:04:53.420', N'145', N'2025-04-16 13:04:53.567', N'{"QueryString":"","BodyData":"{\"UUID\":\"b3829185-6f3c-4742-a517-7d65785f3c93\",\"passWord\":\"123456\",\"userName\":\"Pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.86:9290/api/User/login', N'192.168.10.51', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1726', N'2025-04-16 13:05:36.123', N'254', N'2025-04-16 13:05:36.377', N'{"QueryString":"?barcode=25000060&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1727', N'2025-04-16 13:05:59.597', N'80', N'2025-04-16 13:05:59.677', N'{"QueryString":"?barcode=25000060&station=K003","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000060】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1728', N'2025-04-16 13:17:39.993', N'70', N'2025-04-16 13:17:40.063', N'{"QueryString":"","BodyData":"{\"TaskNum\":434,\"Barcode\":\"25000060\",\"stationCode\":\"1002\",\"Weight\":156,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1729', N'2025-04-16 13:18:02.023', N'53', N'2025-04-16 13:18:02.073', N'{"QueryString":"","BodyData":"{\"TaskNum\":434,\"Barcode\":\"25000060\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1730', N'2025-04-16 13:19:15.803', N'55', N'2025-04-16 13:19:15.857', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":434,\"PalletCode\":\"25000060\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1731', N'2025-04-16 13:23:56.423', N'110', N'2025-04-16 13:23:56.533', N'{"QueryString":"","BodyData":"{\"UUID\":\"62d2a359-d40a-4078-9ab4-c45629d63f09\",\"passWord\":\"123456\",\"userName\":\"Pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.86:9290/api/User/login', N'192.168.10.51', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1732', N'2025-04-16 13:24:46.497', N'273', N'2025-04-16 13:24:46.770', N'{"QueryString":"?barcode=25000152&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1733', N'2025-04-16 13:25:10.477', N'273', N'2025-04-16 13:25:10.750', N'{"QueryString":"?barcode=25000231&station=K002","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1734', N'2025-04-16 13:25:35.177', N'240', N'2025-04-16 13:25:35.417', N'{"QueryString":"?barcode=25000245&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1735', N'2025-04-16 13:36:45.990', N'29', N'2025-04-16 13:36:46.020', N'{"QueryString":"","BodyData":"{\"TaskNum\":435,\"Barcode\":\"25000152\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1736', N'2025-04-16 13:37:08.033', N'50', N'2025-04-16 13:37:08.083', N'{"QueryString":"","BodyData":"{\"TaskNum\":435,\"Barcode\":\"25000152\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1737', N'2025-04-16 13:38:21.667', N'53', N'2025-04-16 13:38:21.720', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":435,\"PalletCode\":\"25000152\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1738', N'2025-04-16 13:49:05.027', N'43', N'2025-04-16 13:49:05.070', N'{"QueryString":"","BodyData":"{\"TaskNum\":436,\"Barcode\":\"25000231\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1739', N'2025-04-16 13:49:27.097', N'145', N'2025-04-16 13:49:27.240', N'{"QueryString":"","BodyData":"{\"TaskNum\":436,\"Barcode\":\"25000231\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1740', N'2025-04-16 13:50:41.817', N'103', N'2025-04-16 13:50:41.920', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":436,\"PalletCode\":\"25000231\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K002\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1741', N'2025-04-16 14:06:59.043', N'28', N'2025-04-16 14:06:59.070', N'{"QueryString":"","BodyData":"{\"TaskNum\":437,\"Barcode\":\"25000245\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1742', N'2025-04-16 14:07:21.017', N'78', N'2025-04-16 14:07:21.093', N'{"QueryString":"","BodyData":"{\"TaskNum\":437,\"Barcode\":\"25000245\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1743', N'2025-04-16 14:08:34.720', N'65', N'2025-04-16 14:08:34.787', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":437,\"PalletCode\":\"25000245\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K001\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1744', N'2025-04-16 14:08:48.067', N'256', N'2025-04-16 14:08:48.323', N'{"QueryString":"?barcode=25000250&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1745', N'2025-04-16 14:20:49.993', N'27', N'2025-04-16 14:20:50.023', N'{"QueryString":"","BodyData":"{\"TaskNum\":438,\"Barcode\":\"25000250\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1746', N'2025-04-16 14:21:12.003', N'39', N'2025-04-16 14:21:12.043', N'{"QueryString":"","BodyData":"{\"TaskNum\":438,\"Barcode\":\"25000250\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1747', N'2025-04-16 14:22:33.863', N'256', N'2025-04-16 14:22:34.120', N'{"QueryString":"?barcode=25000601&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1748', N'2025-04-16 14:23:54.450', N'206', N'2025-04-16 14:23:54.657', N'{"QueryString":"?barcode=25000747&station=K002","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1749', N'2025-04-16 14:24:09.763', N'80', N'2025-04-16 14:24:09.843', N'{"QueryString":"?barcode=25000747&station=K002","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000747】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1750', N'2025-04-16 14:35:18.873', N'88', N'2025-04-16 14:35:18.963', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":438,\"PalletCode\":\"25000250\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1751', N'2025-04-16 14:38:58.030', N'209', N'2025-04-16 14:38:58.237', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"5c8ae597-2b70-4bf3-88d3-cfb7b526e960\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1752', N'2025-04-16 14:45:18.687', N'157', N'2025-04-16 14:45:18.843', N'{"QueryString":"?barcode=25000747&station=K002","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000747】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1753', N'2025-04-16 14:45:25.880', N'111', N'2025-04-16 14:45:25.990', N'{"QueryString":"?barcode=25000747&station=K002","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000747】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1754', N'2025-04-16 14:45:38.197', N'88', N'2025-04-16 14:45:38.283', N'{"QueryString":"?barcode=25000747&station=K002","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000747】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1755', N'2025-04-16 14:45:46.137', N'94', N'2025-04-16 14:45:46.233', N'{"QueryString":"?barcode=25000747&station=K002","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000747】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1756', N'2025-04-16 15:07:42.043', N'108', N'2025-04-16 15:07:42.150', N'{"QueryString":"","BodyData":"{\"TaskNum\":439,\"Barcode\":\"25000601\",\"stationCode\":\"1002\",\"Weight\":764,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1757', N'2025-04-16 15:08:04.033', N'81', N'2025-04-16 15:08:04.113', N'{"QueryString":"","BodyData":"{\"TaskNum\":439,\"Barcode\":\"25000601\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1758', N'2025-04-16 15:09:17.877', N'74', N'2025-04-16 15:09:17.950', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":439,\"PalletCode\":\"25000601\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K001\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1759', N'2025-04-16 16:13:28.047', N'60', N'2025-04-16 16:13:28.107', N'{"QueryString":"","BodyData":"{\"TaskNum\":440,\"Barcode\":\"25000747\",\"stationCode\":\"1002\",\"Weight\":764,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1760', N'2025-04-16 16:17:05.400', N'74378', N'2025-04-16 16:18:19.780', N'{"QueryString":"","BodyData":"{\"TaskNum\":440,\"Barcode\":\"25000747\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-004-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1761', N'2025-04-16 16:18:34.157', N'23780', N'2025-04-16 16:18:57.937', N'{"QueryString":"","BodyData":"{\"TaskNum\":440,\"Barcode\":\"25000747\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"托盘号[25000747]的入库任务状态不匹配","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1762', N'2025-04-16 16:19:37.260', N'5675', N'2025-04-16 16:19:42.937', N'{"QueryString":"","BodyData":"{\"TaskNum\":440,\"Barcode\":\"25000747\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"托盘[25000747],该组盘状态不可入库","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1763', N'2025-04-16 16:20:37.737', N'10546', N'2025-04-16 16:20:48.283', N'{"QueryString":"","BodyData":"{\"TaskNum\":440,\"Barcode\":\"25000747\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"托盘[25000747],该组盘状态不可入库","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1764', N'2025-04-16 16:22:31.043', N'30291', N'2025-04-16 16:23:01.333', N'{"QueryString":"","BodyData":"{\"TaskNum\":440,\"Barcode\":\"25000747\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"托盘[25000747],该组盘状态不可入库","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1765', N'2025-04-16 16:44:29.837', N'28731', N'2025-04-16 16:44:58.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":440,\"Barcode\":\"25000747\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"托盘号[25000747]的入库任务状态不匹配","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1766', N'2025-04-16 16:45:03.547', N'12357', N'2025-04-16 16:45:15.903', N'{"QueryString":"","BodyData":"{\"TaskNum\":440,\"Barcode\":\"25000747\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-004-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1767', N'2025-04-16 17:02:14.190', N'562', N'2025-04-16 17:02:14.753', N'{"QueryString":"?barcode=25000165&station=K001","BodyData":"{}"}', N'', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1768', N'2025-04-16 17:02:14.190', N'562', N'2025-04-16 17:02:14.753', N'{"QueryString":"?barcode=25000165&station=K001","BodyData":"{}"}', N'', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1769', N'2025-04-16 17:02:18.417', N'865', N'2025-04-16 17:02:19.280', N'{"QueryString":"","BodyData":"{\"UUID\":\"287403fa-4a46-46ca-aa89-ee84a7040bcf\",\"passWord\":\"123456\",\"userName\":\"Pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.86:9290/api/User/login', N'192.168.10.51', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1770', N'2025-04-16 17:02:35.453', N'1564', N'2025-04-16 17:02:37.020', N'{"QueryString":"?barcode=25000165&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1771', N'2025-04-16 17:02:37.620', N'124', N'2025-04-16 17:02:37.743', N'{"QueryString":"?barcode=25000165&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000165】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1772', N'2025-04-16 17:11:07.943', N'68', N'2025-04-16 17:11:08.013', N'{"QueryString":"","BodyData":"{\"TaskNum\":441,\"Barcode\":\"25000165\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1773', N'2025-04-16 17:11:30.007', N'109', N'2025-04-16 17:11:30.117', N'{"QueryString":"","BodyData":"{\"TaskNum\":441,\"Barcode\":\"25000165\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-004-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1774', N'2025-04-16 17:14:43.867', N'120', N'2025-04-16 17:14:43.987', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":441,\"PalletCode\":\"25000165\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K001\",\"CurrentAddress\":\"001-004-001\",\"TargetAddress\":\"001-004-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1775', N'2025-04-17 09:24:28.740', N'377', N'2025-04-17 09:24:29.117', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"d74be1c1-7330-47e5-8633-6d103214cd27\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1776', N'2025-04-17 09:27:00.023', N'75', N'2025-04-17 09:27:00.097', N'{"QueryString":"?barcode=25000139&station=K001","BodyData":"{}"}', N'', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1777', N'2025-04-17 09:27:06.330', N'296', N'2025-04-17 09:27:06.627', N'{"QueryString":"","BodyData":"{\"UUID\":\"f3a52a3a-ef36-49f2-981f-071d115f2bdf\",\"passWord\":\"123456\",\"userName\":\"Pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.86:9290/api/User/login', N'192.168.10.51', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1778', N'2025-04-17 09:27:42.087', N'724', N'2025-04-17 09:27:42.810', N'{"QueryString":"?barcode=25000139&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1779', N'2025-04-17 09:28:13.303', N'462', N'2025-04-17 09:28:13.767', N'{"QueryString":"?barcode=25000046&station=K002","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1780', N'2025-04-17 09:28:45.397', N'283', N'2025-04-17 09:28:45.680', N'{"QueryString":"?barcode=25000260&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1781', N'2025-04-17 09:34:46.367', N'132', N'2025-04-17 09:34:46.497', N'{"QueryString":"","BodyData":"{\"TaskNum\":442,\"Barcode\":\"25000139\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1782', N'2025-04-17 09:44:14.397', N'45', N'2025-04-17 09:44:14.443', N'{"QueryString":"","BodyData":"{\"TaskNum\":443,\"Barcode\":\"25000046\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1783', N'2025-04-17 09:44:14.627', N'107', N'2025-04-17 09:44:14.733', N'{"QueryString":"","BodyData":"{\"TaskNum\":442,\"Barcode\":\"25000139\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-004-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1784', N'2025-04-17 09:45:06.407', N'72', N'2025-04-17 09:45:06.477', N'{"QueryString":"","BodyData":"{\"TaskNum\":443,\"Barcode\":\"25000046\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-004-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1785', N'2025-04-17 09:52:39.193', N'156', N'2025-04-17 09:52:39.350', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":442,\"PalletCode\":\"25000139\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K001\",\"CurrentAddress\":\"001-004-001\",\"TargetAddress\":\"001-004-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1786', N'2025-04-17 09:55:58.850', N'75', N'2025-04-17 09:55:58.927', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":443,\"PalletCode\":\"25000046\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K002\",\"CurrentAddress\":\"001-004-001\",\"TargetAddress\":\"001-004-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1787', N'2025-04-17 10:00:51.357', N'287', N'2025-04-17 10:00:51.643', N'{"QueryString":"?barcode=25000273&station=K002","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1788', N'2025-04-17 10:01:13.300', N'235', N'2025-04-17 10:01:13.537', N'{"QueryString":"?barcode=25000420&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1789', N'2025-04-17 10:08:25.313', N'64', N'2025-04-17 10:08:25.377', N'{"QueryString":"","BodyData":"{\"TaskNum\":444,\"Barcode\":\"25000260\",\"stationCode\":\"1002\",\"Weight\":157,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1790', N'2025-04-17 10:08:47.477', N'79', N'2025-04-17 10:08:47.557', N'{"QueryString":"","BodyData":"{\"TaskNum\":444,\"Barcode\":\"25000260\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-004-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1791', N'2025-04-17 10:10:07.957', N'78', N'2025-04-17 10:10:08.037', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":444,\"PalletCode\":\"25000260\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"001-004-001\",\"TargetAddress\":\"001-004-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1792', N'2025-04-17 10:11:26.250', N'38', N'2025-04-17 10:11:26.290', N'{"QueryString":"","BodyData":"{\"TaskNum\":445,\"Barcode\":\"25000273\",\"stationCode\":\"1002\",\"Weight\":151,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1793', N'2025-04-17 10:11:47.350', N'111', N'2025-04-17 10:11:47.463', N'{"QueryString":"","BodyData":"{\"TaskNum\":445,\"Barcode\":\"25000273\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-004-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1794', N'2025-04-17 10:37:35.290', N'107', N'2025-04-17 10:37:35.397', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":445,\"PalletCode\":\"25000273\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K002\",\"CurrentAddress\":\"001-004-001\",\"TargetAddress\":\"001-004-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1795', N'2025-04-17 11:37:05.313', N'59', N'2025-04-17 11:37:05.373', N'{"QueryString":"","BodyData":"{\"TaskNum\":446,\"Barcode\":\"25000420\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1796', N'2025-04-17 11:37:27.240', N'77', N'2025-04-17 11:37:27.317', N'{"QueryString":"","BodyData":"{\"TaskNum\":446,\"Barcode\":\"25000420\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-004-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1797', N'2025-04-17 13:03:29.973', N'221', N'2025-04-17 13:03:30.193', N'{"QueryString":"?barcode=25000220&station=K003","BodyData":"{}"}', N'', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1798', N'2025-04-17 13:03:32.147', N'284', N'2025-04-17 13:03:32.433', N'{"QueryString":"","BodyData":"{\"UUID\":\"\",\"passWord\":\"123456\",\"userName\":\"Pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.86:9290/api/User/login', N'192.168.10.51', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1799', N'2025-04-17 13:03:44.907', N'513', N'2025-04-17 13:03:45.417', N'{"QueryString":"?barcode=25000220&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1800', N'2025-04-17 13:15:46.557', N'52', N'2025-04-17 13:15:46.607', N'{"QueryString":"","BodyData":"{\"TaskNum\":447,\"Barcode\":\"25000220\",\"stationCode\":\"1002\",\"Weight\":158,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1801', N'2025-04-17 13:16:08.603', N'104', N'2025-04-17 13:16:08.707', N'{"QueryString":"","BodyData":"{\"TaskNum\":447,\"Barcode\":\"25000220\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-004-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1802', N'2025-04-17 13:17:29.237', N'155', N'2025-04-17 13:17:29.390', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":447,\"PalletCode\":\"25000220\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"001-004-001\",\"TargetAddress\":\"001-004-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1803', N'2025-04-17 13:36:39.303', N'262', N'2025-04-17 13:36:39.567', N'{"QueryString":"?barcode=25000446&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1804', N'2025-04-17 13:43:17.573', N'90', N'2025-04-17 13:43:17.663', N'{"QueryString":"","BodyData":"{\"TaskNum\":448,\"Barcode\":\"25000446\",\"stationCode\":\"1002\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1805', N'2025-04-17 13:43:39.583', N'52', N'2025-04-17 13:43:39.637', N'{"QueryString":"","BodyData":"{\"TaskNum\":448,\"Barcode\":\"25000446\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-004-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1806', N'2025-04-17 13:45:00.253', N'69', N'2025-04-17 13:45:00.323', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":448,\"PalletCode\":\"25000446\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"001-004-001\",\"TargetAddress\":\"001-004-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1807', N'2025-04-17 13:45:08.890', N'238', N'2025-04-17 13:45:09.127', N'{"QueryString":"?barcode=25000370&station=K002","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.86:9290/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1808', N'2025-04-18 10:43:21.910', N'18095', N'2025-04-18 10:43:40.007', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 449,\n \"barcode\": \"25000370\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-004-001"},"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1809', N'2025-04-18 10:44:33.030', N'12420', N'2025-04-18 10:44:45.450', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 449,\n \"barcode\": \"25000370\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":false,"code":0,"message":"托盘号[25000370]的入库任务状态不匹配","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1810', N'2025-04-19 17:01:48.227', N'14126', N'2025-04-19 17:02:02.353', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":23,\"PalletCode\":\"25000017\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"002-004-001\",\"TargetAddress\":\"002-004-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":true,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1811', N'2025-04-19 18:21:37.590', N'1242', N'2025-04-19 18:21:38.830', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"6dd26982-b39c-4a45-a204-da2fd2616ff6\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1812', N'2025-04-19 18:44:42.470', N'1491', N'2025-04-19 18:44:43.960', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"78c1cd8c-4cf5-42df-ab91-e7b74f771793\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1813', N'2025-04-19 18:44:48.803', N'147', N'2025-04-19 18:44:48.950', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"8ae8f2e0-969c-4bba-8c5d-a01c540806bd\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1814', N'2025-04-19 18:51:48.643', N'1172', N'2025-04-19 18:51:49.813', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"97e51d3e-e0d7-4ed0-8bc0-1ef23b0326b2\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1815', N'2025-04-19 18:58:47.693', N'211', N'2025-04-19 18:58:47.907', N'{"QueryString":"","BodyData":"{\"UUID\":\"d6e11bdf-2d01-4c53-b99b-0ce0eee2ccc7\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1816', N'2025-04-19 18:58:50.930', N'41592', N'2025-04-19 18:59:32.520', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托出库任务超时","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1817', N'2025-04-19 19:11:25.490', N'37273', N'2025-04-19 19:12:02.763', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1818', N'2025-04-19 19:12:29.263', N'2800', N'2025-04-19 19:12:32.063', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1819', N'2025-04-19 19:12:52.247', N'157', N'2025-04-19 19:12:52.403', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1820', N'2025-04-19 19:12:53.690', N'170', N'2025-04-19 19:12:53.860', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1821', N'2025-04-19 19:12:54.930', N'172', N'2025-04-19 19:12:55.103', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1822', N'2025-04-19 19:12:56.013', N'162', N'2025-04-19 19:12:56.177', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1823', N'2025-04-19 19:12:57.250', N'168', N'2025-04-19 19:12:57.420', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1824', N'2025-04-19 19:12:58.507', N'166', N'2025-04-19 19:12:58.673', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1825', N'2025-04-19 19:13:00.183', N'135', N'2025-04-19 19:13:00.317', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1826', N'2025-04-19 19:13:01.447', N'126', N'2025-04-19 19:13:01.573', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1827', N'2025-04-19 19:13:17.523', N'142', N'2025-04-19 19:13:17.667', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1828', N'2025-04-19 19:14:21.240', N'197', N'2025-04-19 19:14:21.437', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1829', N'2025-04-19 19:14:37.760', N'162', N'2025-04-19 19:14:37.923', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1830', N'2025-04-19 19:14:38.980', N'147', N'2025-04-19 19:14:39.127', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1831', N'2025-04-19 19:14:40.213', N'135', N'2025-04-19 19:14:40.347', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1832', N'2025-04-19 19:14:41.350', N'151', N'2025-04-19 19:14:41.500', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1833', N'2025-04-19 19:14:42.580', N'142', N'2025-04-19 19:14:42.723', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1834', N'2025-04-19 19:14:43.743', N'141', N'2025-04-19 19:14:43.883', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1835', N'2025-04-19 19:14:44.953', N'159', N'2025-04-19 19:14:45.110', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1836', N'2025-04-19 19:14:46.173', N'174', N'2025-04-19 19:14:46.347', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1837', N'2025-04-19 19:14:47.447', N'131', N'2025-04-19 19:14:47.580', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1838', N'2025-04-19 19:14:48.557', N'128', N'2025-04-19 19:14:48.687', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1839', N'2025-04-19 19:14:49.693', N'142', N'2025-04-19 19:14:49.833', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1840', N'2025-04-19 19:14:51.070', N'161', N'2025-04-19 19:14:51.230', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1841', N'2025-04-19 19:14:52.413', N'137', N'2025-04-19 19:14:52.550', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1842', N'2025-04-19 19:14:54.200', N'145', N'2025-04-19 19:14:54.343', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1843', N'2025-04-19 19:16:10.617', N'139', N'2025-04-19 19:16:10.757', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1844', N'2025-04-19 19:16:36.690', N'146', N'2025-04-19 19:16:36.837', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1845', N'2025-04-19 19:16:37.940', N'183', N'2025-04-19 19:16:38.123', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1846', N'2025-04-19 19:16:39.067', N'135', N'2025-04-19 19:16:39.200', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1847', N'2025-04-19 19:16:40.137', N'140', N'2025-04-19 19:16:40.277', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1848', N'2025-04-19 19:16:41.413', N'148', N'2025-04-19 19:16:41.560', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1849', N'2025-04-19 19:16:42.620', N'150', N'2025-04-19 19:16:42.770', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1850', N'2025-04-19 19:16:43.850', N'207', N'2025-04-19 19:16:44.060', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1851', N'2025-04-19 19:16:45.017', N'165', N'2025-04-19 19:16:45.180', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1852', N'2025-04-19 19:16:46.093', N'175', N'2025-04-19 19:16:46.270', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1853', N'2025-04-19 19:16:47.363', N'164', N'2025-04-19 19:16:47.527', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1854', N'2025-04-19 19:16:48.503', N'167', N'2025-04-19 19:16:48.670', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1855', N'2025-04-19 19:17:41.237', N'149', N'2025-04-19 19:17:41.383', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1856', N'2025-04-19 19:17:42.323', N'708', N'2025-04-19 19:17:43.030', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1857', N'2025-04-19 19:17:43.637', N'134', N'2025-04-19 19:17:43.773', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1858', N'2025-04-19 19:18:29.030', N'167', N'2025-04-19 19:18:29.197', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1859', N'2025-04-19 19:20:28.630', N'150', N'2025-04-19 19:20:28.780', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1860', N'2025-04-19 19:20:40.340', N'105', N'2025-04-19 19:20:40.443', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到可出库空托","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1861', N'2025-04-19 19:34:12.913', N'11182', N'2025-04-19 19:34:24.097', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1862', N'2025-04-19 19:35:26.057', N'195', N'2025-04-19 19:35:26.250', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1863', N'2025-04-19 19:35:31.727', N'122', N'2025-04-19 19:35:31.850', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1864', N'2025-04-19 19:35:33.060', N'125', N'2025-04-19 19:35:33.183', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1865', N'2025-04-19 19:35:34.193', N'152', N'2025-04-19 19:35:34.343', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1866', N'2025-04-19 19:35:35.383', N'129', N'2025-04-19 19:35:35.513', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1867', N'2025-04-19 19:35:36.590', N'135', N'2025-04-19 19:35:36.727', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1868', N'2025-04-19 19:35:37.837', N'118', N'2025-04-19 19:35:37.957', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1869', N'2025-04-19 19:35:39.050', N'405', N'2025-04-19 19:35:39.457', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1870', N'2025-04-19 19:35:40.263', N'111', N'2025-04-19 19:35:40.373', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1871', N'2025-04-19 19:35:41.340', N'107', N'2025-04-19 19:35:41.447', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1872', N'2025-04-19 19:35:48.840', N'130', N'2025-04-19 19:35:48.970', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1873', N'2025-04-19 19:38:06.653', N'7832', N'2025-04-19 19:38:14.487', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"任务接收错误,错误信息:任务号【506已存在任务】","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1874', N'2025-04-19 19:41:05.623', N'1130', N'2025-04-19 19:41:06.753', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:9290/api/PDA/OutEmpty', N'127.0.0.1', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1875', N'2025-04-20 09:51:01.627', N'1434', N'2025-04-20 09:51:03.060', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"df2cb700-0b34-4743-905b-054e343ede76\"}"}', N'', N'1', N'http://127.0.0.1:9290/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1876', N'2025-04-20 09:57:05.613', N'1455', N'2025-04-20 09:57:07.070', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"3757753f-8778-483b-93fe-3a12c89d4221\"}"}', N'', N'1', N'http://127.0.0.1:8098/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1877', N'2025-04-20 09:57:57.043', N'958', N'2025-04-20 09:57:58.003', N'{"QueryString":"?barcode=25000120&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1878', N'2025-04-20 10:00:32.003', N'150', N'2025-04-20 10:00:32.153', N'{"QueryString":"","BodyData":"{\"TaskNum\":508,\"Barcode\":\"25000120\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1879', N'2025-04-20 10:01:01.080', N'301', N'2025-04-20 10:01:01.380', N'{"QueryString":"","BodyData":"{\"TaskNum\":508,\"Barcode\":\"25000120\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-005-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1880', N'2025-04-20 10:14:09.167', N'134', N'2025-04-20 10:14:09.300', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":508,\"PalletCode\":\"25000120\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"001-005-001\",\"TargetAddress\":\"001-005-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1881', N'2025-04-20 10:20:27.863', N'108', N'2025-04-20 10:20:27.970', N'{"QueryString":"","BodyData":"{\"TaskNum\":509,\"Barcode\":\"25000190\",\"stationCode\":\"1002\",\"Weight\":150,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1882', N'2025-04-20 10:21:18.617', N'53', N'2025-04-20 10:21:18.670', N'{"QueryString":"","BodyData":"{\"TaskNum\":509,\"Barcode\":\"25000190\",\"stationCode\":\"1002\",\"Weight\":150,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1883', N'2025-04-20 10:22:21.907', N'50', N'2025-04-20 10:22:21.957', N'{"QueryString":"","BodyData":"{\"TaskNum\":509,\"Barcode\":\"25000190\",\"stationCode\":\"1002\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1884', N'2025-04-20 10:24:05.600', N'63', N'2025-04-20 10:24:05.663', N'{"QueryString":"","BodyData":"{\"TaskNum\":509,\"Barcode\":\"25000190\",\"stationCode\":\"1002\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1885', N'2025-04-20 10:25:52.410', N'119', N'2025-04-20 10:25:52.530', N'{"QueryString":"","BodyData":"{\"TaskNum\":509,\"Barcode\":\"25000190\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-005-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1886', N'2025-04-20 10:26:30.157', N'292', N'2025-04-20 10:26:30.450', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"任务接收错误,错误信息:任务号【509】已存在任务","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.51', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1887', N'2025-04-20 10:26:36.800', N'113', N'2025-04-20 10:26:36.913', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.51', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1888', N'2025-04-20 10:27:17.097', N'89314', N'2025-04-20 10:28:46.413', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":509,\"PalletCode\":\"25000190\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"001-005-001\",\"TargetAddress\":\"001-005-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":"未找到货位信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1889', N'2025-04-20 10:33:21.043', N'55', N'2025-04-20 10:33:21.097', N'{"QueryString":"","BodyData":"{\"creater\":\"string\",\"createDate\":\"2025-04-20T02:32:52.299Z\",\"modifier\":\"string\",\"modifyDate\":\"2025-04-20T02:32:52.299Z\",\"taskId\":0,\"taskNum\":510,\"sourceIsPickPlace\":true,\"targetIsPickPlace\":true,\"palletCode\":\"string\",\"roadway\":\"string\",\"taskType\":204,\"taskState\":0,\"sourceAddress\":\"string\",\"targetAddress\":\"string\",\"currentAddress\":\"string\",\"nextAddress\":\"string\",\"orderNo\":\"string\",\"grade\":0,\"dispatchertime\":\"2025-04-20T02:32:52.299Z\",\"remark\":\"string\"}"}', N'', N'1', N'http://127.0.0.1:8098/api/Task/UpdateData', N'127.0.0.1', N'', N'UpdateData', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1890', N'2025-04-20 10:38:11.120', N'10875', N'2025-04-20 10:38:21.997', N'{"QueryString":"","BodyData":"{\"id\":0,\"taskNum\":509,\"palletCode\":\"string\",\"roadWay\":\"string\",\"taskType\":204,\"taskState\":0,\"sourceAddress\":\"string\",\"currentAddress\":\"string\",\"targetAddress\":\"string\",\"nextAddress\":\"string\",\"sourceIsPickPlace\":true,\"targetIsPickPlace\":true,\"grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1891', N'2025-04-20 10:56:58.473', N'16265', N'2025-04-20 10:57:14.737', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":510,\"PalletCode\":\"25000601\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"1008\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1892', N'2025-04-20 10:59:26.287', N'2332', N'2025-04-20 10:59:28.620', N'{"QueryString":"","BodyData":"{\"UUID\":\"e6705c23-a62a-49fe-8235-7ff5a5f109ad\",\"passWord\":\"123456\",\"userName\":\"Pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.51', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1893', N'2025-04-20 11:03:17.587', N'4030', N'2025-04-20 11:03:21.620', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.51', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1894', N'2025-04-20 11:06:33.807', N'92', N'2025-04-20 11:06:33.897', N'{"QueryString":"?roleId=5","BodyData":"[{\"id\":49,\"actions\":[{\"text\":\"查询\",\"value\":\"Search\"}]},{\"id\":50,\"actions\":[{\"text\":\"查询\",\"value\":\"Search\"}]},{\"id\":48,\"actions\":[{\"text\":\"查询\",\"value\":\"Search\"}]},{\"id\":52,\"actions\":[{\"text\":\"查询\",\"value\":\"Search\"}]},{\"id\":53,\"actions\":[{\"text\":\"查询\",\"value\":\"Search\"}]}]"}', N'', N'1', N'http://127.0.0.1:8098/api/Sys_Role/SavePermissionPDA', N'127.0.0.1', N'admin', N'SavePermissionPDA', N'SavePermissionPDA', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1895', N'2025-04-20 11:10:38.527', N'25642', N'2025-04-20 11:11:04.167', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":511,\"PalletCode\":\"25000381\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-006-002\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":true,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1896', N'2025-04-20 11:16:48.557', N'1268', N'2025-04-20 11:16:49.823', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"5b689c1f-7b98-49ef-a3d1-c84ec523d703\"}"}', N'', N'1', N'http://127.0.0.1:8098/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1897', N'2025-04-20 11:17:37.250', N'106', N'2025-04-20 11:17:37.357', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"3ff642f4-5891-4e35-bf66-40f0123679cc\"}"}', N'', N'1', N'http://127.0.0.1:8098/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1898', N'2025-04-20 11:27:30.303', N'273', N'2025-04-20 11:27:30.577', N'{"QueryString":"","BodyData":"{\"UUID\":\"6e4ee3d5-3282-4520-bb4a-5f7356b91c1c\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1899', N'2025-04-20 11:29:49.737', N'8596', N'2025-04-20 11:29:58.333', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":510,\"PalletCode\":\"25000601\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1900', N'2025-04-20 11:32:32.650', N'140', N'2025-04-20 11:32:32.790', N'{"QueryString":"","BodyData":"{\"id\":0,\"taskNum\":510,\"palletCode\":\"string\",\"roadWay\":\"string\",\"taskType\":100,\"taskState\":0,\"sourceAddress\":\"string\",\"currentAddress\":\"string\",\"targetAddress\":\"string\",\"nextAddress\":\"string\",\"sourceIsPickPlace\":true,\"targetIsPickPlace\":true,\"grade\":0}"}', N'{"status":false,"code":0,"message":"未找到任务信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1901', N'2025-04-20 11:41:40.500', N'7829', N'2025-04-20 11:41:48.327', N'{"QueryString":"","BodyData":"{\"id\":0,\"taskNum\":510,\"palletCode\":\"string\",\"roadWay\":\"string\",\"taskType\":104,\"taskState\":125,\"sourceAddress\":\"string\",\"currentAddress\":\"string\",\"targetAddress\":\"string\",\"nextAddress\":\"string\",\"sourceIsPickPlace\":true,\"targetIsPickPlace\":true,\"grade\":0}"}', N'{"status":false,"code":0,"message":"未找到任务信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1902', N'2025-04-20 11:42:04.743', N'44785', N'2025-04-20 11:42:49.527', N'{"QueryString":"","BodyData":"{\"id\":0,\"taskNum\":511,\"palletCode\":\"string\",\"roadWay\":\"string\",\"taskType\":104,\"taskState\":125,\"sourceAddress\":\"string\",\"currentAddress\":\"string\",\"targetAddress\":\"string\",\"nextAddress\":\"string\",\"sourceIsPickPlace\":true,\"targetIsPickPlace\":true,\"grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1903', N'2025-04-20 11:44:29.530', N'16614', N'2025-04-20 11:44:46.143', N'{"QueryString":"","BodyData":"{\"id\":0,\"taskNum\":511,\"palletCode\":\"string\",\"roadWay\":\"string\",\"taskType\":104,\"taskState\":190,\"sourceAddress\":\"string\",\"currentAddress\":\"string\",\"targetAddress\":\"string\",\"nextAddress\":\"string\",\"sourceIsPickPlace\":true,\"targetIsPickPlace\":true,\"grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1904', N'2025-04-20 11:45:03.757', N'1110', N'2025-04-20 11:45:04.863', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1905', N'2025-04-20 11:45:08.020', N'152', N'2025-04-20 11:45:08.170', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1906', N'2025-04-20 11:45:09.783', N'113', N'2025-04-20 11:45:09.897', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1907', N'2025-04-20 11:45:11.063', N'142', N'2025-04-20 11:45:11.207', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1908', N'2025-04-20 11:45:12.483', N'144', N'2025-04-20 11:45:12.627', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1909', N'2025-04-20 11:45:13.870', N'139', N'2025-04-20 11:45:14.007', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1910', N'2025-04-20 13:33:20.580', N'11486', N'2025-04-20 13:33:32.067', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":513,\"PalletCode\":\"25000245\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1911', N'2025-04-20 13:42:25.773', N'302', N'2025-04-20 13:42:26.077', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"3ae803e3-5de2-4632-9d2b-137dec086c5d\"}"}', N'', N'1', N'http://127.0.0.1:8098/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1912', N'2025-04-20 14:00:33.120', N'88', N'2025-04-20 14:00:33.207', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":514,\"PalletCode\":\"25000231\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1913', N'2025-04-20 14:11:22.847', N'70', N'2025-04-20 14:11:22.917', N'{"QueryString":"","BodyData":"{}"}', N'', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1914', N'2025-04-20 14:11:29.610', N'190', N'2025-04-20 14:11:29.800', N'{"QueryString":"","BodyData":"{\"UUID\":\"0d109de3-f529-4132-bbd7-4c72fb99c2f5\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1915', N'2025-04-20 14:11:33.107', N'508', N'2025-04-20 14:11:33.613', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1916', N'2025-04-20 14:11:44.620', N'173', N'2025-04-20 14:11:44.793', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1917', N'2025-04-20 14:11:46.267', N'113', N'2025-04-20 14:11:46.380', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1918', N'2025-04-20 14:11:47.737', N'116', N'2025-04-20 14:11:47.853', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1919', N'2025-04-20 14:11:53.880', N'131', N'2025-04-20 14:11:54.010', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1920', N'2025-04-20 14:13:15.993', N'106', N'2025-04-20 14:13:16.100', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":522,\"PalletCode\":\"25000017\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":true,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1921', N'2025-04-20 14:23:23.483', N'116', N'2025-04-20 14:23:23.600', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":515,\"PalletCode\":\"25000152\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1922', N'2025-04-20 14:29:00.250', N'105', N'2025-04-20 14:29:00.357', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":513,\"PalletCode\":\"25000245\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1923', N'2025-04-20 14:32:50.017', N'9608', N'2025-04-20 14:32:59.627', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":512,\"PalletCode\":\"25000250\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"1008\",\"TargetAddress\":\"D001\",\"NextAddress\":\"D001\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1924', N'2025-04-20 14:33:08.237', N'33', N'2025-04-20 14:33:08.270', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":513,\"PalletCode\":\"25000245\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1925', N'2025-04-20 14:33:56.910', N'62', N'2025-04-20 14:33:56.970', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":514,\"PalletCode\":\"25000231\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1926', N'2025-04-20 14:36:45.873', N'108', N'2025-04-20 14:36:45.980', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":516,\"PalletCode\":\"25000060\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1927', N'2025-04-20 14:37:30.447', N'91', N'2025-04-20 14:37:30.540', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":514,\"PalletCode\":\"25000231\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1928', N'2025-04-20 14:39:58.623', N'52', N'2025-04-20 14:39:58.677', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":522,\"PalletCode\":\"25000017\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":true,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1929', N'2025-04-20 14:44:45.367', N'68', N'2025-04-20 14:44:45.437', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":518,\"PalletCode\":\"25000241\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1930', N'2025-04-20 14:46:14.583', N'52', N'2025-04-20 14:46:14.637', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":519,\"PalletCode\":\"25000001\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1931', N'2025-04-20 14:47:22.730', N'96', N'2025-04-20 14:47:22.827', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":522,\"PalletCode\":\"25000017\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":true,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1932', N'2025-04-20 14:48:44.213', N'54', N'2025-04-20 14:48:44.267', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":515,\"PalletCode\":\"25000152\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1933', N'2025-04-20 14:54:04.467', N'8078', N'2025-04-20 14:54:12.543', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":516,\"PalletCode\":\"25000060\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1934', N'2025-04-20 14:55:36.860', N'567', N'2025-04-20 14:55:37.427', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1935', N'2025-04-20 14:58:52.210', N'56', N'2025-04-20 14:58:52.263', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":518,\"PalletCode\":\"25000241\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1936', N'2025-04-20 14:59:16.407', N'103', N'2025-04-20 14:59:16.510', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":520,\"PalletCode\":\"25000052\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1937', N'2025-04-20 14:59:57.297', N'50', N'2025-04-20 14:59:57.347', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":518,\"PalletCode\":\"25000241\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1938', N'2025-04-20 15:00:01.440', N'30', N'2025-04-20 15:00:01.470', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":515,\"PalletCode\":\"25000152\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1939', N'2025-04-20 15:00:04.543', N'28', N'2025-04-20 15:00:04.573', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":516,\"PalletCode\":\"25000060\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1940', N'2025-04-20 15:00:43.293', N'53', N'2025-04-20 15:00:43.347', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":517,\"PalletCode\":\"25000050\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1941', N'2025-04-20 15:04:05.267', N'56', N'2025-04-20 15:04:05.323', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":521,\"PalletCode\":\"25000051\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1942', N'2025-04-20 15:04:33.093', N'65', N'2025-04-20 15:04:33.157', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":519,\"PalletCode\":\"25000001\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1943', N'2025-04-20 15:12:47.553', N'112', N'2025-04-20 15:12:47.667', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":520,\"PalletCode\":\"25000052\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1944', N'2025-04-20 15:15:07.153', N'48', N'2025-04-20 15:15:07.200', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":517,\"PalletCode\":\"25000050\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1945', N'2025-04-20 15:21:23.413', N'62', N'2025-04-20 15:21:23.477', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":520,\"PalletCode\":\"25000052\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1946', N'2025-04-20 15:21:27.247', N'39', N'2025-04-20 15:21:27.283', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":519,\"PalletCode\":\"25000001\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1947', N'2025-04-20 15:21:31.540', N'43', N'2025-04-20 15:21:31.583', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":517,\"PalletCode\":\"25000050\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1948', N'2025-04-20 15:22:17.227', N'245', N'2025-04-20 15:22:17.473', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1949', N'2025-04-20 15:22:18.577', N'136', N'2025-04-20 15:22:18.713', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1950', N'2025-04-20 15:22:19.663', N'153', N'2025-04-20 15:22:19.817', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1951', N'2025-04-20 15:22:20.850', N'135', N'2025-04-20 15:22:20.983', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1952', N'2025-04-20 15:22:22.080', N'158', N'2025-04-20 15:22:22.237', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1953', N'2025-04-20 15:25:19.347', N'106', N'2025-04-20 15:25:19.450', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":523,\"PalletCode\":\"25000080\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1954', N'2025-04-20 15:26:04.100', N'105', N'2025-04-20 15:26:04.203', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":521,\"PalletCode\":\"25000051\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1955', N'2025-04-20 15:26:47.877', N'225', N'2025-04-20 15:26:48.100', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1956', N'2025-04-20 15:26:49.130', N'169', N'2025-04-20 15:26:49.297', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1957', N'2025-04-20 15:26:50.357', N'139', N'2025-04-20 15:26:50.497', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1958', N'2025-04-20 15:26:51.477', N'177', N'2025-04-20 15:26:51.653', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1959', N'2025-04-20 15:26:52.673', N'155', N'2025-04-20 15:26:52.830', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1960', N'2025-04-20 15:27:29.230', N'2224', N'2025-04-20 15:27:31.453', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTEzNDA1MSIsIm5iZiI6IjE3NDUxMzQwNTEiLCJleHAiOiIxNzQ1MTQxMjUxIiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.hg_zFIUb4X1cKa1Ia156_HMZjarwt3lpPOIgXXERbCg","devMessage":null}', N'1', N'http://127.0.0.1:8098/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1961', N'2025-04-20 15:27:31.457', N'9', N'2025-04-20 15:27:31.467', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:8098/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1962', N'2025-04-20 15:27:33.797', N'179', N'2025-04-20 15:27:33.973', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"0d60b97f-3709-4e5b-a826-6aefc8fdf24c\"}"}', N'', N'1', N'http://127.0.0.1:8098/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1963', N'2025-04-20 15:28:02.680', N'50', N'2025-04-20 15:28:02.730', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":524,\"PalletCode\":\"25000031\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1964', N'2025-04-20 15:28:46.670', N'219', N'2025-04-20 15:28:46.890', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1965', N'2025-04-20 15:28:48.357', N'256', N'2025-04-20 15:28:48.613', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1966', N'2025-04-20 15:28:50.043', N'156', N'2025-04-20 15:28:50.200', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1967', N'2025-04-20 15:28:51.477', N'233', N'2025-04-20 15:28:51.710', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1968', N'2025-04-20 15:29:40.383', N'187', N'2025-04-20 15:29:40.570', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1969', N'2025-04-20 15:29:41.607', N'151', N'2025-04-20 15:29:41.757', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1970', N'2025-04-20 15:29:42.700', N'139', N'2025-04-20 15:29:42.840', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1971', N'2025-04-20 15:29:43.857', N'165', N'2025-04-20 15:29:44.020', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1972', N'2025-04-20 15:29:45.380', N'207', N'2025-04-20 15:29:45.587', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1973', N'2025-04-20 15:29:46.683', N'215', N'2025-04-20 15:29:46.900', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1974', N'2025-04-20 15:29:47.923', N'232', N'2025-04-20 15:29:48.153', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1975', N'2025-04-20 15:29:49.300', N'133', N'2025-04-20 15:29:49.433', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1976', N'2025-04-20 15:29:50.607', N'128', N'2025-04-20 15:29:50.737', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1977', N'2025-04-20 15:29:56.570', N'153', N'2025-04-20 15:29:56.723', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1978', N'2025-04-20 15:30:02.280', N'154', N'2025-04-20 15:30:02.433', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1979', N'2025-04-20 15:30:03.580', N'121', N'2025-04-20 15:30:03.700', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1980', N'2025-04-20 15:30:04.910', N'133', N'2025-04-20 15:30:05.040', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1981', N'2025-04-20 15:31:01.607', N'98', N'2025-04-20 15:31:01.703', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":525,\"PalletCode\":\"25000002\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1982', N'2025-04-20 15:31:25.173', N'65', N'2025-04-20 15:31:25.237', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":523,\"PalletCode\":\"25000080\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1983', N'2025-04-20 15:33:20.630', N'68', N'2025-04-20 15:33:20.697', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":526,\"PalletCode\":\"25000400\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1984', N'2025-04-20 15:34:52.120', N'100', N'2025-04-20 15:34:52.220', N'{"QueryString":"?barcode=25000070&station=K001","BodyData":"{}"}', N'', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1985', N'2025-04-20 15:34:54.333', N'158', N'2025-04-20 15:34:54.490', N'{"QueryString":"","BodyData":"{\"UUID\":\"e812ff77-f2a0-451f-adfd-5554c46a5288\",\"passWord\":\"123456\",\"userName\":\"Pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.51', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1986', N'2025-04-20 15:35:05.277', N'296', N'2025-04-20 15:35:05.570', N'{"QueryString":"?barcode=25000070&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1987', N'2025-04-20 15:35:44.360', N'37', N'2025-04-20 15:35:44.397', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":524,\"PalletCode\":\"25000031\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1988', N'2025-04-20 15:36:00.310', N'42', N'2025-04-20 15:36:00.353', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":527,\"PalletCode\":\"25000149\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1989', N'2025-04-20 15:37:38.920', N'48', N'2025-04-20 15:37:38.967', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":528,\"PalletCode\":\"25000422\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1990', N'2025-04-20 15:37:41.280', N'31', N'2025-04-20 15:37:41.310', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":523,\"PalletCode\":\"25000080\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1991', N'2025-04-20 15:37:45.143', N'28', N'2025-04-20 15:37:45.173', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":521,\"PalletCode\":\"25000051\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1992', N'2025-04-20 15:37:49.530', N'25', N'2025-04-20 15:37:49.557', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":524,\"PalletCode\":\"25000031\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1993', N'2025-04-20 15:39:42.107', N'7', N'2025-04-20 15:39:42.113', N'{"QueryString":"","BodyData":"{}"}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1994', N'2025-04-20 15:39:49.170', N'34', N'2025-04-20 15:39:49.203', N'{"QueryString":"","BodyData":"{\"UUID\":\"e04ac9f6-7096-4e0c-a279-1e6cb5a7dca1\",\"passWord\":\"123455\",\"userName\":\"pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1995', N'2025-04-20 15:39:53.773', N'69', N'2025-04-20 15:39:53.840', N'{"QueryString":"","BodyData":"{\"UUID\":\"37364013-421d-4afa-99f6-0f73fc5dc534\",\"passWord\":\"123456\",\"userName\":\"pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1996', N'2025-04-20 15:39:57.120', N'154', N'2025-04-20 15:39:57.273', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1997', N'2025-04-20 15:39:58.377', N'127', N'2025-04-20 15:39:58.503', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1998', N'2025-04-20 15:39:59.953', N'135', N'2025-04-20 15:40:00.090', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'1999', N'2025-04-20 15:40:21.167', N'124', N'2025-04-20 15:40:21.290', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2000', N'2025-04-20 15:40:23.803', N'112', N'2025-04-20 15:40:23.913', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2001', N'2025-04-20 15:42:30.907', N'35', N'2025-04-20 15:42:30.940', N'{"QueryString":"","BodyData":"{\"TaskNum\":551,\"Barcode\":\"25000070\",\"stationCode\":\"1002\",\"Weight\":161,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2002', N'2025-04-20 15:42:38.793', N'91', N'2025-04-20 15:42:38.883', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到可出库空托","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2003', N'2025-04-20 15:43:32.727', N'495', N'2025-04-20 15:43:33.223', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":525,\"PalletCode\":\"25000002\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2004', N'2025-04-20 15:52:22.283', N'10769', N'2025-04-20 15:52:33.053', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":529,\"PalletCode\":\"25000390\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2005', N'2025-04-20 15:52:22.283', N'10769', N'2025-04-20 15:52:33.053', N'{"QueryString":"","BodyData":"{\"TaskNum\":551,\"Barcode\":\"25000070\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"003-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2006', N'2025-04-20 15:54:47.897', N'54', N'2025-04-20 15:54:47.950', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":526,\"PalletCode\":\"25000400\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2007', N'2025-04-20 15:59:07.093', N'49', N'2025-04-20 15:59:07.143', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":527,\"PalletCode\":\"25000149\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2008', N'2025-04-20 16:15:26.597', N'10459', N'2025-04-20 16:15:37.057', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":551,\"PalletCode\":\"25000070\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K001\",\"CurrentAddress\":\"003-002-001\",\"TargetAddress\":\"003-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2009', N'2025-04-20 16:16:06.960', N'59', N'2025-04-20 16:16:07.020', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":527,\"PalletCode\":\"25000149\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2010', N'2025-04-20 16:16:10.387', N'36', N'2025-04-20 16:16:10.423', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":526,\"PalletCode\":\"25000400\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2011', N'2025-04-20 16:16:13.607', N'43', N'2025-04-20 16:16:13.650', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":525,\"PalletCode\":\"25000002\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2012', N'2025-04-20 16:20:57.513', N'60', N'2025-04-20 16:20:57.573', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":528,\"PalletCode\":\"25000422\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2013', N'2025-04-20 16:22:47.897', N'186', N'2025-04-20 16:22:48.083', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":556,\"PalletCode\":\"25000380\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"003-005-002\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":true,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2014', N'2025-04-20 16:24:33.903', N'74', N'2025-04-20 16:24:33.977', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":531,\"PalletCode\":\"25000162\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2015', N'2025-04-20 16:25:26.680', N'28', N'2025-04-20 16:25:26.707', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":529,\"PalletCode\":\"25000390\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2016', N'2025-04-20 16:26:23.823', N'121', N'2025-04-20 16:26:23.943', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":532,\"PalletCode\":\"25000136\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2017', N'2025-04-20 16:26:44.547', N'3192', N'2025-04-20 16:26:47.737', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2018', N'2025-04-20 16:27:34.987', N'60', N'2025-04-20 16:27:35.043', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":529,\"PalletCode\":\"25000390\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2019', N'2025-04-20 16:29:06.073', N'59', N'2025-04-20 16:29:06.133', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":528,\"PalletCode\":\"25000422\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2020', N'2025-04-20 16:34:28.263', N'111', N'2025-04-20 16:34:28.377', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":530,\"PalletCode\":\"25000748\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2021', N'2025-04-20 16:36:27.667', N'92', N'2025-04-20 16:36:27.760', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":530,\"PalletCode\":\"25000748\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2022', N'2025-04-20 16:37:45.160', N'128', N'2025-04-20 16:37:45.290', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到可出库空托","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2023', N'2025-04-20 16:37:45.393', N'77', N'2025-04-20 16:37:45.470', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":533,\"PalletCode\":\"25000445\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2024', N'2025-04-20 16:38:46.273', N'57', N'2025-04-20 16:38:46.330', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":531,\"PalletCode\":\"25000162\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2025', N'2025-04-20 16:39:19.827', N'18', N'2025-04-20 16:39:19.843', N'{"QueryString":"?barcode=25000245&station=K003","BodyData":"{}"}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2026', N'2025-04-20 16:39:23.160', N'191', N'2025-04-20 16:39:23.350', N'{"QueryString":"","BodyData":"{\"UUID\":\"5b256a47-cf80-484a-bbe4-80b46acef7c9\",\"passWord\":\"123456\",\"userName\":\"Pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.51', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2027', N'2025-04-20 16:39:38.453', N'346', N'2025-04-20 16:39:38.800', N'{"QueryString":"?barcode=25000245&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2028', N'2025-04-20 16:40:04.543', N'251', N'2025-04-20 16:40:04.793', N'{"QueryString":"?barcode=25000250&station=K002","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2029', N'2025-04-20 16:40:21.847', N'251', N'2025-04-20 16:40:22.097', N'{"QueryString":"?barcode=25000031&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2030', N'2025-04-20 16:43:06.957', N'37', N'2025-04-20 16:43:06.993', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":532,\"PalletCode\":\"25000136\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2031', N'2025-04-20 16:45:41.373', N'112', N'2025-04-20 16:45:41.483', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":534,\"PalletCode\":\"25000172\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2032', N'2025-04-20 16:47:40.353', N'126', N'2025-04-20 16:47:40.480', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":535,\"PalletCode\":\"25000411\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2033', N'2025-04-20 16:47:41.070', N'42', N'2025-04-20 16:47:41.110', N'{"QueryString":"","BodyData":"{\"TaskNum\":558,\"Barcode\":\"25000245\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2034', N'2025-04-20 16:48:02.093', N'23695', N'2025-04-20 16:48:25.790', N'{"QueryString":"","BodyData":"{\"TaskNum\":558,\"Barcode\":\"25000245\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2035', N'2025-04-20 16:49:44.350', N'72', N'2025-04-20 16:49:44.423', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":536,\"PalletCode\":\"25000370\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2036', N'2025-04-20 16:53:56.057', N'50', N'2025-04-20 16:53:56.107', N'{"QueryString":"","BodyData":"{\"TaskNum\":559,\"Barcode\":\"25000250\",\"stationCode\":\"1002\",\"Weight\":158,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2037', N'2025-04-20 16:57:10.693', N'104', N'2025-04-20 16:57:10.797', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":530,\"PalletCode\":\"25000748\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2038', N'2025-04-20 16:57:14.107', N'30', N'2025-04-20 16:57:14.137', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":531,\"PalletCode\":\"25000162\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2039', N'2025-04-20 17:00:40.123', N'109', N'2025-04-20 17:00:40.230', N'{"QueryString":"","BodyData":"{\"TaskNum\":560,\"Barcode\":\"25000031\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2040', N'2025-04-20 17:04:21.390', N'87', N'2025-04-20 17:04:21.477', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":533,\"PalletCode\":\"25000445\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2041', N'2025-04-20 17:08:05.797', N'62', N'2025-04-20 17:08:05.860', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":534,\"PalletCode\":\"25000172\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2042', N'2025-04-20 17:08:51.053', N'115', N'2025-04-20 17:08:51.170', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":534,\"PalletCode\":\"25000172\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2043', N'2025-04-20 17:12:08.033', N'86', N'2025-04-20 17:12:08.120', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":537,\"PalletCode\":\"25000446\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2044', N'2025-04-20 17:13:25.587', N'20', N'2025-04-20 17:13:25.607', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTE0MDQwNSIsIm5iZiI6IjE3NDUxNDA0MDUiLCJleHAiOiIxNzQ1MTQ3NjA1IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.lY6VbX1Q7exY3PjbqwZVXMRfZfy4-TmWD5jxR1DjUnU","devMessage":null}', N'1', N'http://127.0.0.1:8098/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2045', N'2025-04-20 17:13:25.610', N'1', N'2025-04-20 17:13:25.610', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://127.0.0.1:8098/api/User/replaceToken', N'127.0.0.1', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2046', N'2025-04-20 17:13:28.767', N'80', N'2025-04-20 17:13:28.847', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"8cc99f9f-ae45-428c-a521-9588c959b699\"}"}', N'', N'1', N'http://127.0.0.1:8098/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2047', N'2025-04-20 17:14:17.910', N'206', N'2025-04-20 17:14:18.117', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":538,\"PalletCode\":\"25000220\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2048', N'2025-04-20 17:17:56.567', N'45', N'2025-04-20 17:17:56.613', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":535,\"PalletCode\":\"25000411\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2049', N'2025-04-20 17:18:47.740', N'79', N'2025-04-20 17:18:47.820', N'{"QueryString":"","BodyData":"{\"TaskNum\":559,\"Barcode\":\"25000250\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2050', N'2025-04-20 17:19:17.537', N'68', N'2025-04-20 17:19:17.607', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":558,\"PalletCode\":\"25000245\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"001-002-001\",\"TargetAddress\":\"001-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2051', N'2025-04-20 17:20:35.073', N'63', N'2025-04-20 17:20:35.137', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":539,\"PalletCode\":\"25000420\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2052', N'2025-04-20 17:21:18.747', N'77', N'2025-04-20 17:21:18.823', N'{"QueryString":"","BodyData":"{\"TaskNum\":560,\"Barcode\":\"25000031\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2053', N'2025-04-20 17:37:17.437', N'87', N'2025-04-20 17:37:17.523', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":559,\"PalletCode\":\"25000250\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K002\",\"CurrentAddress\":\"001-002-001\",\"TargetAddress\":\"001-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2054', N'2025-04-20 17:38:36.907', N'122', N'2025-04-20 17:38:37.030', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":540,\"PalletCode\":\"25000273\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2055', N'2025-04-20 17:42:08.350', N'74', N'2025-04-20 17:42:08.427', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":560,\"PalletCode\":\"25000031\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K001\",\"CurrentAddress\":\"001-002-001\",\"TargetAddress\":\"001-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2056', N'2025-04-21 08:28:25.633', N'1082', N'2025-04-21 08:28:26.717', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"971df35f-b4c8-48b5-87c0-fa98fa401f08\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2057', N'2025-04-21 08:29:53.747', N'182', N'2025-04-21 08:29:53.930', N'{"QueryString":"","BodyData":"{\"UUID\":\"852b85e8-5aff-4973-b86c-748a8bc30df6\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2058', N'2025-04-21 08:30:19.820', N'5931', N'2025-04-21 08:30:25.750', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":533,\"PalletCode\":\"25000445\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2059', N'2025-04-21 08:30:30.150', N'37', N'2025-04-21 08:30:30.187', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":535,\"PalletCode\":\"25000411\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2060', N'2025-04-21 08:30:33.310', N'39', N'2025-04-21 08:30:33.350', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":532,\"PalletCode\":\"25000136\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-004-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2061', N'2025-04-21 09:03:05.590', N'180', N'2025-04-21 09:03:05.770', N'{"QueryString":"","BodyData":"{\"Extra\":0,\"DelKeys\":[690]}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/LocationInfo/UpdateEnableStatus', N'192.168.10.88', N'admin', N'UpdateEnableStatus', N'UpdateEnableStatus', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2062', N'2025-04-21 09:04:33.613', N'60', N'2025-04-21 09:04:33.673', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":537,\"PalletCode\":\"25000446\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2063', N'2025-04-21 09:11:13.907', N'91', N'2025-04-21 09:11:13.997', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":537,\"PalletCode\":\"25000446\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2064', N'2025-04-21 09:15:18.800', N'86', N'2025-04-21 09:15:18.887', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":538,\"PalletCode\":\"25000220\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2065', N'2025-04-21 09:16:10.360', N'88', N'2025-04-21 09:16:10.447', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":541,\"PalletCode\":\"25000260\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2066', N'2025-04-21 09:18:21.100', N'64', N'2025-04-21 09:18:21.163', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":542,\"PalletCode\":\"25000046\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2067', N'2025-04-21 09:19:39.317', N'77', N'2025-04-21 09:19:39.393', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":539,\"PalletCode\":\"25000420\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2068', N'2025-04-21 09:19:59.347', N'38', N'2025-04-21 09:19:59.383', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":556,\"PalletCode\":\"25000380\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"003-005-002\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":true,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2069', N'2025-04-21 09:22:22.667', N'32', N'2025-04-21 09:22:22.700', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":539,\"PalletCode\":\"25000420\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2070', N'2025-04-21 09:22:25.717', N'27', N'2025-04-21 09:22:25.743', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":538,\"PalletCode\":\"25000220\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2071', N'2025-04-21 09:23:48.017', N'30', N'2025-04-21 09:23:48.047', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":540,\"PalletCode\":\"25000273\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2072', N'2025-04-21 09:28:00.983', N'37', N'2025-04-21 09:28:01.020', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":541,\"PalletCode\":\"25000260\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2073', N'2025-04-21 09:30:11.920', N'53', N'2025-04-21 09:30:11.973', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":540,\"PalletCode\":\"25000273\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2074', N'2025-04-21 09:31:04.740', N'91', N'2025-04-21 09:31:04.830', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":543,\"PalletCode\":\"25000139\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2075', N'2025-04-21 09:33:27.223', N'46', N'2025-04-21 09:33:27.270', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":542,\"PalletCode\":\"25000046\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2076', N'2025-04-21 09:34:31.307', N'87', N'2025-04-21 09:34:31.393', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":541,\"PalletCode\":\"25000260\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2077', N'2025-04-21 09:34:35.387', N'25', N'2025-04-21 09:34:35.410', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":542,\"PalletCode\":\"25000046\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2078', N'2025-04-21 09:36:32.483', N'92', N'2025-04-21 09:36:32.573', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":556,\"PalletCode\":\"25000380\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"003-005-002\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":true,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2079', N'2025-04-21 09:36:36.370', N'42', N'2025-04-21 09:36:36.413', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":544,\"PalletCode\":\"25000165\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2080', N'2025-04-21 09:38:39.600', N'58', N'2025-04-21 09:38:39.657', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":556,\"PalletCode\":\"25000380\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"003-005-002\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":true,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2081', N'2025-04-21 09:39:20.153', N'115', N'2025-04-21 09:39:20.270', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":545,\"PalletCode\":\"25000747\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2082', N'2025-04-21 09:40:48.673', N'58', N'2025-04-21 09:40:48.730', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":543,\"PalletCode\":\"25000139\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2083', N'2025-04-21 09:42:31.533', N'210', N'2025-04-21 09:42:31.743', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":546,\"PalletCode\":\"25000190\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-005-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2084', N'2025-04-21 09:44:44.323', N'80', N'2025-04-21 09:44:44.403', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":547,\"PalletCode\":\"25000120\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-005-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2085', N'2025-04-21 09:45:11.350', N'67', N'2025-04-21 09:45:11.417', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":544,\"PalletCode\":\"25000165\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2086', N'2025-04-21 09:46:07.813', N'40', N'2025-04-21 09:46:07.853', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":543,\"PalletCode\":\"25000139\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2087', N'2025-04-21 09:46:11.003', N'29', N'2025-04-21 09:46:11.033', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":544,\"PalletCode\":\"25000165\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2088', N'2025-04-21 09:46:23.200', N'47', N'2025-04-21 09:46:23.247', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":548,\"PalletCode\":\"25000126\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-005-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2089', N'2025-04-21 09:49:26.887', N'73', N'2025-04-21 09:49:26.960', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":545,\"PalletCode\":\"25000747\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2090', N'2025-04-21 09:49:31.950', N'86', N'2025-04-21 09:49:32.033', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":549,\"PalletCode\":\"25000180\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-005-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2091', N'2025-04-21 09:54:03.030', N'64', N'2025-04-21 09:54:03.097', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":546,\"PalletCode\":\"25000190\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-005-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2092', N'2025-04-21 09:57:13.083', N'137', N'2025-04-21 09:57:13.220', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":550,\"PalletCode\":\"25000480\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-006-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2093', N'2025-04-21 09:57:48.363', N'46', N'2025-04-21 09:57:48.410', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":547,\"PalletCode\":\"25000120\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-005-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2094', N'2025-04-21 10:01:18.687', N'666', N'2025-04-21 10:01:19.353', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTIwMDg3OSIsIm5iZiI6IjE3NDUyMDA4NzkiLCJleHAiOiIxNzQ1MjA4MDc5IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ._R1QJ6xp6oqOYGP_qntep5HtY7I_nkPs-YD0VC8JCkU","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2095', N'2025-04-21 10:01:19.353', N'10', N'2025-04-21 10:01:19.363', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2096', N'2025-04-21 10:01:22.477', N'188', N'2025-04-21 10:01:22.667', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"61915fb7-831c-40d9-ba8b-6543e4627889\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2097', N'2025-04-21 10:03:30.187', N'103', N'2025-04-21 10:03:30.290', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":553,\"PalletCode\":\"25000134\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-007-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2098', N'2025-04-21 10:05:35.230', N'145', N'2025-04-21 10:05:35.377', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":554,\"PalletCode\":\"25000360\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-007-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2099', N'2025-04-21 10:06:01.330', N'94', N'2025-04-21 10:06:01.423', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":546,\"PalletCode\":\"25000190\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-005-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2100', N'2025-04-21 10:06:06.657', N'41', N'2025-04-21 10:06:06.700', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":547,\"PalletCode\":\"25000120\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-005-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2101', N'2025-04-21 10:06:09.533', N'42', N'2025-04-21 10:06:09.573', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":545,\"PalletCode\":\"25000747\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-004-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2102', N'2025-04-21 10:08:50.797', N'183', N'2025-04-21 10:08:50.980', N'{"QueryString":"","BodyData":"{\"UUID\":\"39e392b3-66f7-42dc-8dfa-e02ebaab3807\",\"passWord\":\"123456\",\"userName\":\"Pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.51', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2103', N'2025-04-21 10:09:02.153', N'456', N'2025-04-21 10:09:02.610', N'{"QueryString":"?barcode=25000411&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2104', N'2025-04-21 10:09:09.733', N'297', N'2025-04-21 10:09:10.030', N'{"QueryString":"?barcode=25000370&station=K002","BodyData":"{}"}', N'{"status":false,"code":0,"message":"任务接收错误,错误信息:托盘号【25000370】已存在任务","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2105', N'2025-04-21 10:09:19.357', N'300', N'2025-04-21 10:09:19.657', N'{"QueryString":"?barcode=25000002&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2106', N'2025-04-21 10:10:46.477', N'79', N'2025-04-21 10:10:46.557', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":548,\"PalletCode\":\"25000126\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-005-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2107', N'2025-04-21 10:14:50.753', N'83', N'2025-04-21 10:14:50.837', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":549,\"PalletCode\":\"25000180\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-005-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2108', N'2025-04-21 10:18:57.683', N'42', N'2025-04-21 10:18:57.723', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":548,\"PalletCode\":\"25000126\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-005-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2109', N'2025-04-21 10:19:00.917', N'30', N'2025-04-21 10:19:00.947', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":549,\"PalletCode\":\"25000180\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-005-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2110', N'2025-04-21 10:20:33.943', N'107', N'2025-04-21 10:20:34.050', N'{"QueryString":"","BodyData":"{\"TaskNum\":561,\"Barcode\":\"25000411\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2111', N'2025-04-21 10:20:55.033', N'105', N'2025-04-21 10:20:55.140', N'{"QueryString":"","BodyData":"{\"TaskNum\":561,\"Barcode\":\"25000411\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2112', N'2025-04-21 10:26:38.733', N'2618', N'2025-04-21 10:26:41.353', N'{"QueryString":"?barcode=25000262&station=K003","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2113', N'2025-04-21 10:26:44.513', N'2579', N'2025-04-21 10:26:47.093', N'{"QueryString":"?barcode=25000262&station=K003","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2114', N'2025-04-21 10:26:47.187', N'2557', N'2025-04-21 10:26:49.743', N'{"QueryString":"?barcode=25000262&station=K003","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2115', N'2025-04-21 10:26:54.223', N'2576', N'2025-04-21 10:26:56.797', N'{"QueryString":"?barcode=25000137&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2116', N'2025-04-21 10:27:22.023', N'2581', N'2025-04-21 10:27:24.607', N'{"QueryString":"?barcode=25000263&station=K003","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托入库任务超时","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2117', N'2025-04-21 10:30:57.447', N'38', N'2025-04-21 10:30:57.487', N'{"QueryString":"","BodyData":"{\"TaskNum\":563,\"Barcode\":\"25000002\",\"stationCode\":\"1002\",\"Weight\":158,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2118', N'2025-04-21 10:35:14.910', N'68', N'2025-04-21 10:35:14.980', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":553,\"PalletCode\":\"25000134\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-007-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2119', N'2025-04-21 10:38:31.933', N'52', N'2025-04-21 10:38:31.987', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":553,\"PalletCode\":\"25000134\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-007-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2120', N'2025-04-21 10:38:35.263', N'47', N'2025-04-21 10:38:35.310', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":550,\"PalletCode\":\"25000480\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-006-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2121', N'2025-04-21 10:39:23.667', N'41', N'2025-04-21 10:39:23.707', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":554,\"PalletCode\":\"25000360\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-007-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2122', N'2025-04-21 10:39:56.343', N'74', N'2025-04-21 10:39:56.420', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":554,\"PalletCode\":\"25000360\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-007-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2123', N'2025-04-21 10:43:25.607', N'28834', N'2025-04-21 10:43:54.440', N'{"QueryString":"?barcode=25000263&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2124', N'2025-04-21 10:44:03.303', N'263', N'2025-04-21 10:44:03.567', N'{"QueryString":"?barcode=25000137&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2125', N'2025-04-21 10:44:16.140', N'220', N'2025-04-21 10:44:16.360', N'{"QueryString":"?barcode=25000370&station=K002","BodyData":"{}"}', N'{"status":false,"code":0,"message":"任务接收错误,错误信息:托盘号【25000370】已存在任务","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2126', N'2025-04-21 10:44:29.760', N'9319', N'2025-04-21 10:44:39.080', N'{"QueryString":"?barcode=25000367&station=K002","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2127', N'2025-04-21 10:46:08.043', N'69', N'2025-04-21 10:46:08.113', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":552,\"PalletCode\":\"25000171\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-006-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2128', N'2025-04-21 10:49:13.733', N'60', N'2025-04-21 10:49:13.793', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":550,\"PalletCode\":\"25000480\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-006-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2129', N'2025-04-21 10:56:31.133', N'42', N'2025-04-21 10:56:31.177', N'{"QueryString":"","BodyData":"{\"TaskNum\":569,\"Barcode\":\"25000263\",\"stationCode\":\"1002\",\"Weight\":158,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2130', N'2025-04-21 11:07:57.177', N'85', N'2025-04-21 11:07:57.260', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":550,\"PalletCode\":\"25000480\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-006-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2131', N'2025-04-21 11:08:42.447', N'113', N'2025-04-21 11:08:42.560', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":555,\"PalletCode\":\"25000123\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-008-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2132', N'2025-04-21 11:17:43.777', N'86', N'2025-04-21 11:17:43.860', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":557,\"PalletCode\":\"25000070\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2133', N'2025-04-21 11:26:52.360', N'135', N'2025-04-21 11:26:52.497', N'{"QueryString":"","BodyData":"{\"TaskNum\":563,\"Barcode\":\"25000002\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2134', N'2025-04-21 11:27:25.813', N'84', N'2025-04-21 11:27:25.897', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":561,\"PalletCode\":\"25000411\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K001\",\"CurrentAddress\":\"001-002-001\",\"TargetAddress\":\"001-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2135', N'2025-04-21 11:28:16.187', N'101', N'2025-04-21 11:28:16.290', N'{"QueryString":"","BodyData":"{\"TaskNum\":569,\"Barcode\":\"25000263\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2136', N'2025-04-21 11:30:06.843', N'28', N'2025-04-21 11:30:06.873', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTIwNjIwNiIsIm5iZiI6IjE3NDUyMDYyMDYiLCJleHAiOiIxNzQ1MjEzNDA2IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.rfBTEU0BC_mWq82DWcxO0inlx1s0sQSZyr4uIuZMuvM","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2137', N'2025-04-21 11:30:06.873', N'3', N'2025-04-21 11:30:06.877', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2138', N'2025-04-21 11:30:09.770', N'99', N'2025-04-21 11:30:09.867', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"4c5262b3-37fb-45ff-b9e2-59582eecd851\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2139', N'2025-04-21 11:34:45.087', N'50', N'2025-04-21 11:34:45.137', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":563,\"PalletCode\":\"25000002\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"001-002-001\",\"TargetAddress\":\"001-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2140', N'2025-04-21 11:36:49.490', N'85', N'2025-04-21 11:36:49.577', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":552,\"PalletCode\":\"25000171\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-006-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2141', N'2025-04-21 11:36:53.760', N'51', N'2025-04-21 11:36:53.810', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":569,\"PalletCode\":\"25000263\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"001-002-001\",\"TargetAddress\":\"001-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2142', N'2025-04-21 11:39:06.573', N'93', N'2025-04-21 11:39:06.663', N'{"QueryString":"","BodyData":"{\"TaskNum\":570,\"Barcode\":\"25000136\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000136]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2143', N'2025-04-21 11:39:07.590', N'69', N'2025-04-21 11:39:07.660', N'{"QueryString":"","BodyData":"{\"TaskNum\":570,\"Barcode\":\"25000136\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000136]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2144', N'2025-04-21 11:39:08.577', N'71', N'2025-04-21 11:39:08.647', N'{"QueryString":"","BodyData":"{\"TaskNum\":570,\"Barcode\":\"25000136\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000136]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2145', N'2025-04-21 11:39:09.553', N'87', N'2025-04-21 11:39:09.643', N'{"QueryString":"","BodyData":"{\"TaskNum\":570,\"Barcode\":\"25000136\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000136]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2146', N'2025-04-21 11:39:10.593', N'72', N'2025-04-21 11:39:10.667', N'{"QueryString":"","BodyData":"{\"TaskNum\":570,\"Barcode\":\"25000136\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000136]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2147', N'2025-04-21 11:39:11.580', N'71', N'2025-04-21 11:39:11.650', N'{"QueryString":"","BodyData":"{\"TaskNum\":570,\"Barcode\":\"25000136\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000136]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2148', N'2025-04-21 11:39:12.590', N'83', N'2025-04-21 11:39:12.673', N'{"QueryString":"","BodyData":"{\"TaskNum\":570,\"Barcode\":\"25000136\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000136]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2149', N'2025-04-21 11:39:13.550', N'35', N'2025-04-21 11:39:13.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":570,\"Barcode\":\"25000136\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2150', N'2025-04-21 11:39:34.653', N'82', N'2025-04-21 11:39:34.737', N'{"QueryString":"","BodyData":"{\"TaskNum\":570,\"Barcode\":\"25000136\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2151', N'2025-04-21 11:40:49.417', N'121', N'2025-04-21 11:40:49.537', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":570,\"PalletCode\":\"25000136\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K001\",\"CurrentAddress\":\"001-002-001\",\"TargetAddress\":\"001-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2152', N'2025-04-21 11:40:59.613', N'27', N'2025-04-21 11:40:59.640', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":555,\"PalletCode\":\"25000123\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-008-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2153', N'2025-04-21 11:41:34.573', N'102', N'2025-04-21 11:41:34.677', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2154', N'2025-04-21 11:41:35.577', N'91', N'2025-04-21 11:41:35.667', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2155', N'2025-04-21 11:41:36.560', N'75', N'2025-04-21 11:41:36.633', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2156', N'2025-04-21 11:41:37.583', N'72', N'2025-04-21 11:41:37.653', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2157', N'2025-04-21 11:41:38.603', N'75', N'2025-04-21 11:41:38.677', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2158', N'2025-04-21 11:41:39.567', N'94', N'2025-04-21 11:41:39.660', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2159', N'2025-04-21 11:41:40.590', N'75', N'2025-04-21 11:41:40.667', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2160', N'2025-04-21 11:41:41.587', N'69', N'2025-04-21 11:41:41.657', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2161', N'2025-04-21 11:41:42.567', N'75', N'2025-04-21 11:41:42.643', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2162', N'2025-04-21 11:41:43.573', N'77', N'2025-04-21 11:41:43.650', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2163', N'2025-04-21 11:41:44.583', N'79', N'2025-04-21 11:41:44.663', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2164', N'2025-04-21 11:41:45.583', N'89', N'2025-04-21 11:41:45.673', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2165', N'2025-04-21 11:41:46.593', N'76', N'2025-04-21 11:41:46.670', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2166', N'2025-04-21 11:41:47.577', N'108', N'2025-04-21 11:41:47.683', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2167', N'2025-04-21 11:41:48.570', N'73', N'2025-04-21 11:41:48.643', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2168', N'2025-04-21 11:41:49.610', N'75', N'2025-04-21 11:41:49.683', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2169', N'2025-04-21 11:41:50.590', N'73', N'2025-04-21 11:41:50.663', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2170', N'2025-04-21 11:41:51.583', N'85', N'2025-04-21 11:41:51.667', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2171', N'2025-04-21 11:41:52.570', N'76', N'2025-04-21 11:41:52.647', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2172', N'2025-04-21 11:41:53.563', N'73', N'2025-04-21 11:41:53.637', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2173', N'2025-04-21 11:41:54.560', N'71', N'2025-04-21 11:41:54.633', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2174', N'2025-04-21 11:41:55.573', N'74', N'2025-04-21 11:41:55.647', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2175', N'2025-04-21 11:41:56.570', N'74', N'2025-04-21 11:41:56.643', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2176', N'2025-04-21 11:41:57.580', N'77', N'2025-04-21 11:41:57.657', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2177', N'2025-04-21 11:41:58.570', N'72', N'2025-04-21 11:41:58.640', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2178', N'2025-04-21 11:41:59.550', N'71', N'2025-04-21 11:41:59.620', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2179', N'2025-04-21 11:42:00.563', N'73', N'2025-04-21 11:42:00.637', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2180', N'2025-04-21 11:42:01.590', N'75', N'2025-04-21 11:42:01.663', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2181', N'2025-04-21 11:42:02.563', N'76', N'2025-04-21 11:42:02.640', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2182', N'2025-04-21 11:42:03.573', N'74', N'2025-04-21 11:42:03.647', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2183', N'2025-04-21 11:42:04.590', N'72', N'2025-04-21 11:42:04.663', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2184', N'2025-04-21 11:42:05.573', N'69', N'2025-04-21 11:42:05.640', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2185', N'2025-04-21 11:42:06.613', N'77', N'2025-04-21 11:42:06.690', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2186', N'2025-04-21 11:42:07.570', N'115', N'2025-04-21 11:42:07.687', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2187', N'2025-04-21 11:42:08.600', N'110', N'2025-04-21 11:42:08.710', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2188', N'2025-04-21 11:42:09.587', N'76', N'2025-04-21 11:42:09.663', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2189', N'2025-04-21 11:42:10.637', N'78', N'2025-04-21 11:42:10.713', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2190', N'2025-04-21 11:42:11.647', N'79', N'2025-04-21 11:42:11.723', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2191', N'2025-04-21 11:42:12.587', N'82', N'2025-04-21 11:42:12.667', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2192', N'2025-04-21 11:42:13.593', N'70', N'2025-04-21 11:42:13.663', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2193', N'2025-04-21 11:42:14.560', N'69', N'2025-04-21 11:42:14.630', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2194', N'2025-04-21 11:42:15.527', N'73', N'2025-04-21 11:42:15.600', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2195', N'2025-04-21 11:42:16.550', N'73', N'2025-04-21 11:42:16.623', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2196', N'2025-04-21 11:42:17.560', N'91', N'2025-04-21 11:42:17.650', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2197', N'2025-04-21 11:42:18.570', N'80', N'2025-04-21 11:42:18.647', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2198', N'2025-04-21 11:42:19.573', N'81', N'2025-04-21 11:42:19.653', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2199', N'2025-04-21 11:42:20.570', N'74', N'2025-04-21 11:42:20.643', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2200', N'2025-04-21 11:42:21.630', N'97', N'2025-04-21 11:42:21.727', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2201', N'2025-04-21 11:42:22.680', N'100', N'2025-04-21 11:42:22.780', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2202', N'2025-04-21 11:42:23.570', N'84', N'2025-04-21 11:42:23.657', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2203', N'2025-04-21 11:42:24.577', N'70', N'2025-04-21 11:42:24.647', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2204', N'2025-04-21 11:42:25.567', N'78', N'2025-04-21 11:42:25.647', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2205', N'2025-04-21 11:42:26.567', N'85', N'2025-04-21 11:42:26.653', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2206', N'2025-04-21 11:42:27.577', N'95', N'2025-04-21 11:42:27.673', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2207', N'2025-04-21 11:42:28.570', N'97', N'2025-04-21 11:42:28.667', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2208', N'2025-04-21 11:42:29.567', N'77', N'2025-04-21 11:42:29.643', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2209', N'2025-04-21 11:42:30.567', N'76', N'2025-04-21 11:42:30.643', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2210', N'2025-04-21 11:42:31.577', N'75', N'2025-04-21 11:42:31.653', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2211', N'2025-04-21 11:42:32.603', N'94', N'2025-04-21 11:42:32.697', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2212', N'2025-04-21 11:42:33.617', N'78', N'2025-04-21 11:42:33.693', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2213', N'2025-04-21 11:42:34.567', N'76', N'2025-04-21 11:42:34.643', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2214', N'2025-04-21 11:42:35.580', N'80', N'2025-04-21 11:42:35.660', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2215', N'2025-04-21 11:42:36.613', N'80', N'2025-04-21 11:42:36.693', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2216', N'2025-04-21 11:42:37.583', N'75', N'2025-04-21 11:42:37.660', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2217', N'2025-04-21 11:42:38.580', N'129', N'2025-04-21 11:42:38.710', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2218', N'2025-04-21 11:42:39.577', N'76', N'2025-04-21 11:42:39.653', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2219', N'2025-04-21 11:42:40.590', N'75', N'2025-04-21 11:42:40.667', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2220', N'2025-04-21 11:42:41.580', N'76', N'2025-04-21 11:42:41.657', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2221', N'2025-04-21 11:42:42.587', N'82', N'2025-04-21 11:42:42.667', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2222', N'2025-04-21 11:42:43.570', N'90', N'2025-04-21 11:42:43.660', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2223', N'2025-04-21 11:42:44.617', N'86', N'2025-04-21 11:42:44.703', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2224', N'2025-04-21 11:42:45.580', N'85', N'2025-04-21 11:42:45.663', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2225', N'2025-04-21 11:42:46.573', N'75', N'2025-04-21 11:42:46.650', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2226', N'2025-04-21 11:42:47.633', N'83', N'2025-04-21 11:42:47.717', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2227', N'2025-04-21 11:43:00.103', N'92', N'2025-04-21 11:43:00.197', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2228', N'2025-04-21 11:43:04.653', N'80', N'2025-04-21 11:43:04.733', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2229', N'2025-04-21 11:43:04.877', N'80', N'2025-04-21 11:43:04.957', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2230', N'2025-04-21 11:43:05.173', N'74', N'2025-04-21 11:43:05.247', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2231', N'2025-04-21 11:43:05.410', N'96', N'2025-04-21 11:43:05.507', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2232', N'2025-04-21 11:43:05.730', N'77', N'2025-04-21 11:43:05.807', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2233', N'2025-04-21 11:43:05.997', N'80', N'2025-04-21 11:43:06.077', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2234', N'2025-04-21 11:43:06.280', N'76', N'2025-04-21 11:43:06.353', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2235', N'2025-04-21 11:43:06.507', N'88', N'2025-04-21 11:43:06.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2236', N'2025-04-21 11:43:06.793', N'93', N'2025-04-21 11:43:06.887', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2237', N'2025-04-21 11:43:07.040', N'124', N'2025-04-21 11:43:07.163', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2238', N'2025-04-21 11:43:07.370', N'117', N'2025-04-21 11:43:07.487', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2239', N'2025-04-21 11:43:07.680', N'82', N'2025-04-21 11:43:07.760', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2240', N'2025-04-21 11:43:07.927', N'76', N'2025-04-21 11:43:08.003', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2241', N'2025-04-21 11:43:08.177', N'72', N'2025-04-21 11:43:08.250', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2242', N'2025-04-21 11:43:08.417', N'83', N'2025-04-21 11:43:08.500', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2243', N'2025-04-21 11:43:08.707', N'78', N'2025-04-21 11:43:08.787', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2244', N'2025-04-21 11:43:08.973', N'85', N'2025-04-21 11:43:09.057', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2245', N'2025-04-21 11:43:09.233', N'95', N'2025-04-21 11:43:09.327', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2246', N'2025-04-21 11:43:09.503', N'141', N'2025-04-21 11:43:09.643', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2247', N'2025-04-21 11:43:09.870', N'579', N'2025-04-21 11:43:10.450', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2248', N'2025-04-21 11:43:11.170', N'286', N'2025-04-21 11:43:11.457', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2249', N'2025-04-21 11:43:11.780', N'219', N'2025-04-21 11:43:12.000', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2250', N'2025-04-21 11:43:12.247', N'168', N'2025-04-21 11:43:12.417', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2251', N'2025-04-21 11:43:12.790', N'108', N'2025-04-21 11:43:12.900', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2252', N'2025-04-21 11:43:13.573', N'104', N'2025-04-21 11:43:13.680', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2253', N'2025-04-21 11:43:14.560', N'80', N'2025-04-21 11:43:14.640', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2254', N'2025-04-21 11:43:15.573', N'135', N'2025-04-21 11:43:15.710', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2255', N'2025-04-21 11:43:16.600', N'103', N'2025-04-21 11:43:16.703', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2256', N'2025-04-21 11:43:17.587', N'117', N'2025-04-21 11:43:17.703', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2257', N'2025-04-21 11:43:18.637', N'111', N'2025-04-21 11:43:18.750', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2258', N'2025-04-21 11:43:19.590', N'122', N'2025-04-21 11:43:19.713', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2259', N'2025-04-21 11:43:20.630', N'158', N'2025-04-21 11:43:20.787', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2260', N'2025-04-21 11:43:21.733', N'110', N'2025-04-21 11:43:21.843', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2261', N'2025-04-21 11:43:22.720', N'116', N'2025-04-21 11:43:22.833', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2262', N'2025-04-21 11:43:23.667', N'116', N'2025-04-21 11:43:23.783', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2263', N'2025-04-21 11:43:24.623', N'89', N'2025-04-21 11:43:24.713', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2264', N'2025-04-21 11:43:25.610', N'74', N'2025-04-21 11:43:25.683', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2265', N'2025-04-21 11:43:26.560', N'72', N'2025-04-21 11:43:26.630', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2266', N'2025-04-21 11:43:27.563', N'82', N'2025-04-21 11:43:27.647', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2267', N'2025-04-21 11:43:28.563', N'17304', N'2025-04-21 11:43:45.867', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2268', N'2025-04-21 11:43:46.087', N'70', N'2025-04-21 11:43:46.157', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2269', N'2025-04-21 11:43:46.327', N'68', N'2025-04-21 11:43:46.397', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2270', N'2025-04-21 11:43:46.603', N'75', N'2025-04-21 11:43:46.677', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2271', N'2025-04-21 11:43:46.820', N'67', N'2025-04-21 11:43:46.887', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2272', N'2025-04-21 11:43:47.110', N'70', N'2025-04-21 11:43:47.180', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2273', N'2025-04-21 11:43:47.330', N'72', N'2025-04-21 11:43:47.400', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2274', N'2025-04-21 11:43:47.600', N'78', N'2025-04-21 11:43:47.680', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2275', N'2025-04-21 11:43:47.843', N'65', N'2025-04-21 11:43:47.907', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2276', N'2025-04-21 11:43:48.097', N'74', N'2025-04-21 11:43:48.170', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2277', N'2025-04-21 11:43:48.330', N'75', N'2025-04-21 11:43:48.407', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2278', N'2025-04-21 11:43:48.603', N'69', N'2025-04-21 11:43:48.673', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2279', N'2025-04-21 11:43:48.830', N'68', N'2025-04-21 11:43:48.900', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2280', N'2025-04-21 11:43:49.090', N'75', N'2025-04-21 11:43:49.167', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2281', N'2025-04-21 11:43:49.347', N'74', N'2025-04-21 11:43:49.420', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2282', N'2025-04-21 11:43:49.810', N'106', N'2025-04-21 11:43:49.917', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2283', N'2025-04-21 11:43:50.120', N'67', N'2025-04-21 11:43:50.187', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2284', N'2025-04-21 11:43:50.393', N'77', N'2025-04-21 11:43:50.470', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2285', N'2025-04-21 11:43:50.673', N'83', N'2025-04-21 11:43:50.757', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2286', N'2025-04-21 11:43:50.947', N'92', N'2025-04-21 11:43:51.040', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2287', N'2025-04-21 11:43:51.213', N'99', N'2025-04-21 11:43:51.310', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2288', N'2025-04-21 11:43:51.507', N'100', N'2025-04-21 11:43:51.607', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2289', N'2025-04-21 11:43:51.783', N'92', N'2025-04-21 11:43:51.877', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2290', N'2025-04-21 11:43:52.043', N'89', N'2025-04-21 11:43:52.133', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2291', N'2025-04-21 11:43:52.573', N'91', N'2025-04-21 11:43:52.667', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2292', N'2025-04-21 11:43:53.577', N'103', N'2025-04-21 11:43:53.680', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2293', N'2025-04-21 11:43:54.613', N'84', N'2025-04-21 11:43:54.700', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2294', N'2025-04-21 11:43:55.607', N'68', N'2025-04-21 11:43:55.677', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2295', N'2025-04-21 11:43:56.697', N'81', N'2025-04-21 11:43:56.777', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2296', N'2025-04-21 11:43:57.647', N'74', N'2025-04-21 11:43:57.720', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2297', N'2025-04-21 11:43:58.590', N'68', N'2025-04-21 11:43:58.660', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2298', N'2025-04-21 11:43:59.697', N'80', N'2025-04-21 11:43:59.777', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2299', N'2025-04-21 11:44:00.550', N'65', N'2025-04-21 11:44:00.613', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2300', N'2025-04-21 11:44:01.570', N'70', N'2025-04-21 11:44:01.640', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2301', N'2025-04-21 11:44:02.587', N'71', N'2025-04-21 11:44:02.657', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2302', N'2025-04-21 11:44:03.560', N'75', N'2025-04-21 11:44:03.637', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2303', N'2025-04-21 11:44:04.577', N'86', N'2025-04-21 11:44:04.663', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2304', N'2025-04-21 11:44:05.577', N'79', N'2025-04-21 11:44:05.653', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2305', N'2025-04-21 11:44:06.583', N'69', N'2025-04-21 11:44:06.653', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2306', N'2025-04-21 11:44:07.813', N'73', N'2025-04-21 11:44:07.883', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2307', N'2025-04-21 11:44:08.737', N'67', N'2025-04-21 11:44:08.803', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2308', N'2025-04-21 11:44:10.637', N'71', N'2025-04-21 11:44:10.707', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2309', N'2025-04-21 11:44:10.877', N'70', N'2025-04-21 11:44:10.947', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2310', N'2025-04-21 11:44:11.560', N'72', N'2025-04-21 11:44:11.633', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2311', N'2025-04-21 11:44:12.587', N'66', N'2025-04-21 11:44:12.653', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2312', N'2025-04-21 11:44:13.583', N'63', N'2025-04-21 11:44:13.647', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2313', N'2025-04-21 11:44:14.553', N'77', N'2025-04-21 11:44:14.630', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2314', N'2025-04-21 11:44:15.573', N'66', N'2025-04-21 11:44:15.640', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2315', N'2025-04-21 11:44:16.593', N'73', N'2025-04-21 11:44:16.667', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2316', N'2025-04-21 11:44:17.590', N'67', N'2025-04-21 11:44:17.657', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2317', N'2025-04-21 11:44:18.617', N'84', N'2025-04-21 11:44:18.700', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2318', N'2025-04-21 11:44:19.697', N'75', N'2025-04-21 11:44:19.773', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2319', N'2025-04-21 11:44:20.737', N'70', N'2025-04-21 11:44:20.807', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2320', N'2025-04-21 11:44:21.733', N'68', N'2025-04-21 11:44:21.803', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2321', N'2025-04-21 11:44:22.563', N'67', N'2025-04-21 11:44:22.630', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2322', N'2025-04-21 11:44:23.570', N'74', N'2025-04-21 11:44:23.643', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2323', N'2025-04-21 11:44:24.540', N'66', N'2025-04-21 11:44:24.607', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000370]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2324', N'2025-04-21 11:44:25.593', N'36', N'2025-04-21 11:44:25.630', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2325', N'2025-04-21 11:44:46.770', N'54', N'2025-04-21 11:44:46.823', N'{"QueryString":"","BodyData":"{\"TaskNum\":572,\"Barcode\":\"25000370\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2326', N'2025-04-21 11:45:18.630', N'25', N'2025-04-21 11:45:18.653', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":557,\"PalletCode\":\"25000070\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2327', N'2025-04-21 11:46:01.337', N'77', N'2025-04-21 11:46:01.417', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":572,\"PalletCode\":\"25000370\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K002\",\"CurrentAddress\":\"001-002-001\",\"TargetAddress\":\"001-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2328', N'2025-04-21 11:47:39.017', N'34', N'2025-04-21 11:47:39.050', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":555,\"PalletCode\":\"25000123\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-008-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2329', N'2025-04-21 11:47:42.623', N'26', N'2025-04-21 11:47:42.650', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":552,\"PalletCode\":\"25000171\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-006-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2330', N'2025-04-21 11:47:45.707', N'30', N'2025-04-21 11:47:45.737', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":557,\"PalletCode\":\"25000070\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"003-002-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2331', N'2025-04-21 11:48:22.737', N'73', N'2025-04-21 11:48:22.807', N'{"QueryString":"","BodyData":"{}"}', N'', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2332', N'2025-04-21 11:48:30.433', N'145', N'2025-04-21 11:48:30.577', N'{"QueryString":"","BodyData":"{\"UUID\":\"9fc9c21d-7a3f-46c8-9d10-2f8a1ba36fd9\",\"passWord\":\"123456\",\"userName\":\"pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2333', N'2025-04-21 11:48:48.923', N'200', N'2025-04-21 11:48:49.123', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2334', N'2025-04-21 11:51:08.783', N'75', N'2025-04-21 11:51:08.857', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":573,\"PalletCode\":\"25000370\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2335', N'2025-04-21 13:32:00.913', N'10718', N'2025-04-21 13:32:11.630', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":573,\"PalletCode\":\"25000370\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2336', N'2025-04-21 13:32:37.273', N'2512', N'2025-04-21 13:32:39.783', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTIxMzU1OSIsIm5iZiI6IjE3NDUyMTM1NTkiLCJleHAiOiIxNzQ1MjIwNzU5IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.nJjQOF6S6McYaih_krbR8dGZ-aVeXhHarj-swjcoJTw","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2337', N'2025-04-21 13:32:39.787', N'11', N'2025-04-21 13:32:39.797', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2338', N'2025-04-21 13:32:43.817', N'183', N'2025-04-21 13:32:44.000', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"708c24be-bda4-4288-9750-c21f7a2d94da\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2339', N'2025-04-21 13:37:32.740', N'144', N'2025-04-21 13:37:32.887', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":573,\"PalletCode\":\"25000370\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2340', N'2025-04-21 13:37:56.960', N'501', N'2025-04-21 13:37:57.460', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2341', N'2025-04-21 13:37:58.613', N'156', N'2025-04-21 13:37:58.770', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2342', N'2025-04-21 13:38:01.730', N'142', N'2025-04-21 13:38:01.873', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2343', N'2025-04-21 13:38:08.973', N'195', N'2025-04-21 13:38:09.167', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2344', N'2025-04-21 13:40:16.703', N'147', N'2025-04-21 13:40:16.850', N'{"QueryString":"","BodyData":"{\"UUID\":\"f2c581eb-9821-477c-bbdf-0e4d57fe3e0b\",\"passWord\":\"123456\",\"userName\":\"Pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.51', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2345', N'2025-04-21 13:40:58.250', N'334', N'2025-04-21 13:40:58.583', N'{"QueryString":"?barcode=25000123&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2346', N'2025-04-21 13:41:05.700', N'240', N'2025-04-21 13:41:05.940', N'{"QueryString":"?barcode=25000070&station=K002","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2347', N'2025-04-21 13:41:12.720', N'223', N'2025-04-21 13:41:12.943', N'{"QueryString":"?barcode=25000370&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2348', N'2025-04-21 13:41:45.107', N'76', N'2025-04-21 13:41:45.183', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":574,\"PalletCode\":\"25000136\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2349', N'2025-04-21 13:44:00.690', N'49', N'2025-04-21 13:44:00.737', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":575,\"PalletCode\":\"25000263\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2350', N'2025-04-21 13:46:18.747', N'94', N'2025-04-21 13:46:18.840', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":576,\"PalletCode\":\"25000002\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2351', N'2025-04-21 13:47:49.863', N'66', N'2025-04-21 13:47:49.930', N'{"QueryString":"","BodyData":"{\"TaskNum\":578,\"Barcode\":\"25000123\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2352', N'2025-04-21 13:48:10.897', N'73', N'2025-04-21 13:48:10.970', N'{"QueryString":"","BodyData":"{\"TaskNum\":578,\"Barcode\":\"25000123\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-002-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2353', N'2025-04-21 13:48:39.603', N'77', N'2025-04-21 13:48:39.683', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":577,\"PalletCode\":\"25000411\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2354', N'2025-04-21 13:49:50.097', N'80', N'2025-04-21 13:49:50.173', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":578,\"PalletCode\":\"25000123\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"002-002-001\",\"TargetAddress\":\"002-002-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2355', N'2025-04-21 13:52:00.273', N'3', N'2025-04-21 13:52:00.277', N'{"QueryString":"","BodyData":"{}"}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2356', N'2025-04-21 13:52:06.700', N'73', N'2025-04-21 13:52:06.773', N'{"QueryString":"","BodyData":"{\"UUID\":\"8e757251-1d70-4cd5-97f6-3db5c5b01cb4\",\"passWord\":\"123456\",\"userName\":\"admin\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2357', N'2025-04-21 13:52:09.610', N'180', N'2025-04-21 13:52:09.790', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'admin', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2358', N'2025-04-21 13:52:30.187', N'424', N'2025-04-21 13:52:30.610', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"37254372-9006-4605-82b5-e49e6dcc166c\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2359', N'2025-04-21 13:55:28.080', N'294', N'2025-04-21 13:55:28.373', N'{"QueryString":"?barcode=2500012625000126&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2360', N'2025-04-21 13:55:29.977', N'71', N'2025-04-21 13:55:30.047', N'{"QueryString":"?barcode=2500012625000126&station=K003","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【2500012625000126】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2361', N'2025-04-21 13:55:37.600', N'27', N'2025-04-21 13:55:37.627', N'{"QueryString":"","BodyData":"{\"TaskNum\":579,\"Barcode\":\"25000070\",\"stationCode\":\"1002\",\"Weight\":161,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2362', N'2025-04-21 13:57:25.103', N'9736', N'2025-04-21 13:57:34.840', N'{"QueryString":"","BodyData":"{\"TaskNum\":579,\"Barcode\":\"25000070\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2363', N'2025-04-21 13:57:33.200', N'2141', N'2025-04-21 13:57:35.340', N'{"QueryString":"?barcode=25000480&station=K002","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2364', N'2025-04-21 13:59:10.847', N'151', N'2025-04-21 13:59:10.997', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":581,\"PalletCode\":\"25000123\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"002-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2365', N'2025-04-21 13:59:48.233', N'119', N'2025-04-21 13:59:48.350', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":574,\"PalletCode\":\"25000136\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2366', N'2025-04-21 14:02:02.257', N'61', N'2025-04-21 14:02:02.317', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":579,\"PalletCode\":\"25000070\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K002\",\"CurrentAddress\":\"001-003-001\",\"TargetAddress\":\"001-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2367', N'2025-04-21 14:04:28.623', N'237', N'2025-04-21 14:04:28.860', N'{"QueryString":"","BodyData":"{\"TaskNum\":580,\"Barcode\":\"25000370\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2368', N'2025-04-21 14:04:49.590', N'245', N'2025-04-21 14:04:49.837', N'{"QueryString":"","BodyData":"{\"TaskNum\":580,\"Barcode\":\"25000370\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2369', N'2025-04-21 14:06:15.997', N'7091', N'2025-04-21 14:06:23.087', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2370', N'2025-04-21 14:06:20.963', N'2240', N'2025-04-21 14:06:23.203', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2371', N'2025-04-21 14:06:19.860', N'3345', N'2025-04-21 14:06:23.207', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2372', N'2025-04-21 14:06:42.903', N'81', N'2025-04-21 14:06:42.983', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2373', N'2025-04-21 14:06:42.990', N'88', N'2025-04-21 14:06:43.077', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2374', N'2025-04-21 14:06:43.897', N'85', N'2025-04-21 14:06:43.983', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2375', N'2025-04-21 14:06:44.107', N'84', N'2025-04-21 14:06:44.190', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2376', N'2025-04-21 14:06:44.277', N'88', N'2025-04-21 14:06:44.367', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2377', N'2025-04-21 14:06:44.497', N'98', N'2025-04-21 14:06:44.593', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2378', N'2025-04-21 14:06:44.707', N'98', N'2025-04-21 14:06:44.803', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2379', N'2025-04-21 14:06:44.903', N'99', N'2025-04-21 14:06:45.003', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2380', N'2025-04-21 14:06:45.113', N'98', N'2025-04-21 14:06:45.213', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2381', N'2025-04-21 14:06:45.263', N'104', N'2025-04-21 14:06:45.367', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2382', N'2025-04-21 14:06:45.430', N'99', N'2025-04-21 14:06:45.530', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2383', N'2025-04-21 14:06:45.657', N'83', N'2025-04-21 14:06:45.740', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2384', N'2025-04-21 14:06:45.830', N'94', N'2025-04-21 14:06:45.923', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2385', N'2025-04-21 14:06:46.060', N'100', N'2025-04-21 14:06:46.160', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2386', N'2025-04-21 14:06:46.240', N'90', N'2025-04-21 14:06:46.330', N'{"QueryString":"?barcode=25000360&station=K001","BodyData":"{}"}', N'{"status":false,"code":0,"message":"托盘号【25000360】已存在组盘信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2387', N'2025-04-21 14:09:28.947', N'80', N'2025-04-21 14:09:29.027', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":580,\"PalletCode\":\"25000370\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K001\",\"CurrentAddress\":\"001-003-001\",\"TargetAddress\":\"001-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2388', N'2025-04-21 14:11:11.517', N'126', N'2025-04-21 14:11:11.640', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2389', N'2025-04-21 14:11:12.507', N'71', N'2025-04-21 14:11:12.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2390', N'2025-04-21 14:11:13.507', N'82', N'2025-04-21 14:11:13.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2391', N'2025-04-21 14:11:14.507', N'71', N'2025-04-21 14:11:14.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2392', N'2025-04-21 14:11:15.497', N'77', N'2025-04-21 14:11:15.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2393', N'2025-04-21 14:11:16.517', N'75', N'2025-04-21 14:11:16.590', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2394', N'2025-04-21 14:11:17.510', N'83', N'2025-04-21 14:11:17.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2395', N'2025-04-21 14:11:18.503', N'81', N'2025-04-21 14:11:18.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2396', N'2025-04-21 14:11:19.550', N'84', N'2025-04-21 14:11:19.633', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2397', N'2025-04-21 14:11:20.540', N'73', N'2025-04-21 14:11:20.613', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2398', N'2025-04-21 14:11:21.553', N'71', N'2025-04-21 14:11:21.627', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2399', N'2025-04-21 14:11:22.547', N'77', N'2025-04-21 14:11:22.623', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2400', N'2025-04-21 14:11:23.547', N'66', N'2025-04-21 14:11:23.610', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2401', N'2025-04-21 14:11:24.497', N'69', N'2025-04-21 14:11:24.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2402', N'2025-04-21 14:11:25.507', N'71', N'2025-04-21 14:11:25.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2403', N'2025-04-21 14:11:26.493', N'72', N'2025-04-21 14:11:26.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2404', N'2025-04-21 14:11:27.497', N'64', N'2025-04-21 14:11:27.560', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2405', N'2025-04-21 14:11:28.500', N'73', N'2025-04-21 14:11:28.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2406', N'2025-04-21 14:11:29.493', N'69', N'2025-04-21 14:11:29.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2407', N'2025-04-21 14:11:30.497', N'67', N'2025-04-21 14:11:30.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2408', N'2025-04-21 14:11:51.037', N'10006', N'2025-04-21 14:12:01.043', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2409', N'2025-04-21 14:12:01.163', N'118', N'2025-04-21 14:12:01.280', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2410', N'2025-04-21 14:12:01.383', N'83', N'2025-04-21 14:12:01.467', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2411', N'2025-04-21 14:12:01.570', N'82', N'2025-04-21 14:12:01.653', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2412', N'2025-04-21 14:12:01.763', N'93', N'2025-04-21 14:12:01.857', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2413', N'2025-04-21 14:12:01.963', N'85', N'2025-04-21 14:12:02.050', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2414', N'2025-04-21 14:12:02.160', N'103', N'2025-04-21 14:12:02.263', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2415', N'2025-04-21 14:12:02.370', N'86', N'2025-04-21 14:12:02.457', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2416', N'2025-04-21 14:12:02.553', N'80', N'2025-04-21 14:12:02.633', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2417', N'2025-04-21 14:12:02.733', N'78', N'2025-04-21 14:12:02.813', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2418', N'2025-04-21 14:12:02.920', N'93', N'2025-04-21 14:12:03.013', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2419', N'2025-04-21 14:12:03.113', N'90', N'2025-04-21 14:12:03.203', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2420', N'2025-04-21 14:12:03.303', N'90', N'2025-04-21 14:12:03.397', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2421', N'2025-04-21 14:12:03.510', N'82', N'2025-04-21 14:12:03.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2422', N'2025-04-21 14:12:03.690', N'87', N'2025-04-21 14:12:03.777', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2423', N'2025-04-21 14:12:03.877', N'78', N'2025-04-21 14:12:03.957', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2424', N'2025-04-21 14:12:04.060', N'81', N'2025-04-21 14:12:04.140', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2425', N'2025-04-21 14:12:04.237', N'85', N'2025-04-21 14:12:04.323', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2426', N'2025-04-21 14:12:04.440', N'89', N'2025-04-21 14:12:04.527', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2427', N'2025-04-21 14:12:04.720', N'85', N'2025-04-21 14:12:04.803', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2428', N'2025-04-21 14:12:04.930', N'90', N'2025-04-21 14:12:05.020', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2429', N'2025-04-21 14:12:05.127', N'79', N'2025-04-21 14:12:05.203', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2430', N'2025-04-21 14:12:05.313', N'76', N'2025-04-21 14:12:05.390', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2431', N'2025-04-21 14:12:05.547', N'75', N'2025-04-21 14:12:05.620', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2432', N'2025-04-21 14:12:05.720', N'75', N'2025-04-21 14:12:05.793', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2433', N'2025-04-21 14:12:06.500', N'73', N'2025-04-21 14:12:06.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2434', N'2025-04-21 14:12:07.503', N'73', N'2025-04-21 14:12:07.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2435', N'2025-04-21 14:12:08.503', N'70', N'2025-04-21 14:12:08.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2436', N'2025-04-21 14:12:09.507', N'72', N'2025-04-21 14:12:09.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2437', N'2025-04-21 14:12:10.517', N'67', N'2025-04-21 14:12:10.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2438', N'2025-04-21 14:12:11.493', N'76', N'2025-04-21 14:12:11.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2439', N'2025-04-21 14:12:12.497', N'72', N'2025-04-21 14:12:12.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2440', N'2025-04-21 14:12:13.503', N'71', N'2025-04-21 14:12:13.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2441', N'2025-04-21 14:12:14.497', N'67', N'2025-04-21 14:12:14.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2442', N'2025-04-21 14:12:15.540', N'76', N'2025-04-21 14:12:15.617', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2443', N'2025-04-21 14:12:16.543', N'70', N'2025-04-21 14:12:16.613', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2444', N'2025-04-21 14:12:17.540', N'74', N'2025-04-21 14:12:17.617', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2445', N'2025-04-21 14:12:18.617', N'64', N'2025-04-21 14:12:18.680', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2446', N'2025-04-21 14:12:19.610', N'83', N'2025-04-21 14:12:19.693', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2447', N'2025-04-21 14:12:20.510', N'80', N'2025-04-21 14:12:20.590', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2448', N'2025-04-21 14:12:21.500', N'70', N'2025-04-21 14:12:21.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2449', N'2025-04-21 14:12:22.497', N'68', N'2025-04-21 14:12:22.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2450', N'2025-04-21 14:12:23.507', N'66', N'2025-04-21 14:12:23.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2451', N'2025-04-21 14:12:24.500', N'69', N'2025-04-21 14:12:24.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2452', N'2025-04-21 14:12:25.507', N'71', N'2025-04-21 14:12:25.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2453', N'2025-04-21 14:12:26.503', N'76', N'2025-04-21 14:12:26.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2454', N'2025-04-21 14:12:27.497', N'70', N'2025-04-21 14:12:27.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2455', N'2025-04-21 14:12:28.743', N'68', N'2025-04-21 14:12:28.810', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2456', N'2025-04-21 14:12:29.753', N'70', N'2025-04-21 14:12:29.823', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2457', N'2025-04-21 14:12:30.750', N'79', N'2025-04-21 14:12:30.830', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2458', N'2025-04-21 14:12:31.707', N'70', N'2025-04-21 14:12:31.777', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2459', N'2025-04-21 14:12:32.737', N'69', N'2025-04-21 14:12:32.807', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2460', N'2025-04-21 14:12:33.500', N'68', N'2025-04-21 14:12:33.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2461', N'2025-04-21 14:12:34.503', N'73', N'2025-04-21 14:12:34.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2462', N'2025-04-21 14:12:35.510', N'68', N'2025-04-21 14:12:35.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2463', N'2025-04-21 14:12:36.503', N'75', N'2025-04-21 14:12:36.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2464', N'2025-04-21 14:12:37.503', N'77', N'2025-04-21 14:12:37.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2465', N'2025-04-21 14:12:38.497', N'70', N'2025-04-21 14:12:38.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2466', N'2025-04-21 14:12:39.507', N'73', N'2025-04-21 14:12:39.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2467', N'2025-04-21 14:12:40.497', N'70', N'2025-04-21 14:12:40.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2468', N'2025-04-21 14:12:41.733', N'98', N'2025-04-21 14:12:41.830', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2469', N'2025-04-21 14:12:42.777', N'69', N'2025-04-21 14:12:42.847', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2470', N'2025-04-21 14:12:43.780', N'71', N'2025-04-21 14:12:43.850', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2471', N'2025-04-21 14:12:44.703', N'66', N'2025-04-21 14:12:44.770', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2472', N'2025-04-21 14:12:45.503', N'78', N'2025-04-21 14:12:45.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2473', N'2025-04-21 14:12:46.540', N'77', N'2025-04-21 14:12:46.617', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2474', N'2025-04-21 14:12:47.497', N'65', N'2025-04-21 14:12:47.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2475', N'2025-04-21 14:12:48.520', N'71', N'2025-04-21 14:12:48.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2476', N'2025-04-21 14:12:49.500', N'68', N'2025-04-21 14:12:49.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2477', N'2025-04-21 14:12:50.503', N'71', N'2025-04-21 14:12:50.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2478', N'2025-04-21 14:12:51.507', N'68', N'2025-04-21 14:12:51.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2479', N'2025-04-21 14:12:53.517', N'67', N'2025-04-21 14:12:53.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2480', N'2025-04-21 14:12:53.923', N'72', N'2025-04-21 14:12:53.997', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2481', N'2025-04-21 14:12:54.740', N'70', N'2025-04-21 14:12:54.810', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2482', N'2025-04-21 14:12:55.753', N'68', N'2025-04-21 14:12:55.823', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2483', N'2025-04-21 14:12:56.727', N'74', N'2025-04-21 14:12:56.803', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2484', N'2025-04-21 14:12:57.497', N'66', N'2025-04-21 14:12:57.560', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2485', N'2025-04-21 14:12:58.500', N'64', N'2025-04-21 14:12:58.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2486', N'2025-04-21 14:12:59.510', N'87', N'2025-04-21 14:12:59.597', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2487', N'2025-04-21 14:13:00.500', N'67', N'2025-04-21 14:13:00.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2488', N'2025-04-21 14:13:01.510', N'65', N'2025-04-21 14:13:01.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2489', N'2025-04-21 14:13:02.493', N'69', N'2025-04-21 14:13:02.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2490', N'2025-04-21 14:13:03.500', N'69', N'2025-04-21 14:13:03.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2491', N'2025-04-21 14:13:04.500', N'76', N'2025-04-21 14:13:04.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2492', N'2025-04-21 14:13:05.723', N'69', N'2025-04-21 14:13:05.790', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2493', N'2025-04-21 14:13:06.737', N'69', N'2025-04-21 14:13:06.803', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2494', N'2025-04-21 14:13:07.713', N'72', N'2025-04-21 14:13:07.783', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2495', N'2025-04-21 14:13:08.907', N'66', N'2025-04-21 14:13:08.973', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2496', N'2025-04-21 14:13:09.713', N'83', N'2025-04-21 14:13:09.797', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2497', N'2025-04-21 14:13:10.503', N'81', N'2025-04-21 14:13:10.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2498', N'2025-04-21 14:13:11.510', N'69', N'2025-04-21 14:13:11.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2499', N'2025-04-21 14:13:12.493', N'71', N'2025-04-21 14:13:12.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2500', N'2025-04-21 14:13:13.503', N'73', N'2025-04-21 14:13:13.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2501', N'2025-04-21 14:13:14.507', N'71', N'2025-04-21 14:13:14.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2502', N'2025-04-21 14:13:15.517', N'83', N'2025-04-21 14:13:15.600', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2503', N'2025-04-21 14:13:16.507', N'72', N'2025-04-21 14:13:16.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2504', N'2025-04-21 14:13:17.500', N'72', N'2025-04-21 14:13:17.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2505', N'2025-04-21 14:13:18.733', N'69', N'2025-04-21 14:13:18.803', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2506', N'2025-04-21 14:13:19.843', N'78', N'2025-04-21 14:13:19.920', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2507', N'2025-04-21 14:13:20.733', N'85', N'2025-04-21 14:13:20.820', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2508', N'2025-04-21 14:13:21.840', N'104', N'2025-04-21 14:13:21.943', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2509', N'2025-04-21 14:13:22.513', N'95', N'2025-04-21 14:13:22.607', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2510', N'2025-04-21 14:13:23.493', N'71', N'2025-04-21 14:13:23.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2511', N'2025-04-21 14:13:24.503', N'65', N'2025-04-21 14:13:24.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2512', N'2025-04-21 14:13:25.493', N'66', N'2025-04-21 14:13:25.560', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2513', N'2025-04-21 14:13:26.500', N'66', N'2025-04-21 14:13:26.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2514', N'2025-04-21 14:13:27.497', N'68', N'2025-04-21 14:13:27.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2515', N'2025-04-21 14:13:28.503', N'66', N'2025-04-21 14:13:28.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2516', N'2025-04-21 14:13:29.510', N'68', N'2025-04-21 14:13:29.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2517', N'2025-04-21 14:13:30.710', N'62', N'2025-04-21 14:13:30.770', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2518', N'2025-04-21 14:13:31.767', N'68', N'2025-04-21 14:13:31.833', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2519', N'2025-04-21 14:13:32.730', N'81', N'2025-04-21 14:13:32.810', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2520', N'2025-04-21 14:13:33.720', N'68', N'2025-04-21 14:13:33.790', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2521', N'2025-04-21 14:13:34.717', N'64', N'2025-04-21 14:13:34.783', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2522', N'2025-04-21 14:13:35.507', N'68', N'2025-04-21 14:13:35.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2523', N'2025-04-21 14:13:36.503', N'67', N'2025-04-21 14:13:36.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2524', N'2025-04-21 14:13:37.490', N'67', N'2025-04-21 14:13:37.557', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2525', N'2025-04-21 14:13:38.497', N'67', N'2025-04-21 14:13:38.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2526', N'2025-04-21 14:13:39.497', N'64', N'2025-04-21 14:13:39.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2527', N'2025-04-21 14:13:40.503', N'63', N'2025-04-21 14:13:40.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2528', N'2025-04-21 14:13:41.500', N'68', N'2025-04-21 14:13:41.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2529', N'2025-04-21 14:13:42.503', N'67', N'2025-04-21 14:13:42.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2530', N'2025-04-21 14:13:43.733', N'66', N'2025-04-21 14:13:43.797', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2531', N'2025-04-21 14:13:44.743', N'69', N'2025-04-21 14:13:44.813', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2532', N'2025-04-21 14:13:45.853', N'143', N'2025-04-21 14:13:45.997', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2533', N'2025-04-21 14:13:46.787', N'73', N'2025-04-21 14:13:46.860', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2534', N'2025-04-21 14:13:47.493', N'64', N'2025-04-21 14:13:47.557', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2535', N'2025-04-21 14:13:48.493', N'71', N'2025-04-21 14:13:48.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2536', N'2025-04-21 14:13:49.500', N'71', N'2025-04-21 14:13:49.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2537', N'2025-04-21 14:13:50.503', N'74', N'2025-04-21 14:13:50.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2538', N'2025-04-21 14:13:51.503', N'65', N'2025-04-21 14:13:51.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2539', N'2025-04-21 14:13:52.497', N'66', N'2025-04-21 14:13:52.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2540', N'2025-04-21 14:13:53.500', N'64', N'2025-04-21 14:13:53.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2541', N'2025-04-21 14:13:54.500', N'66', N'2025-04-21 14:13:54.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2542', N'2025-04-21 14:13:55.827', N'81', N'2025-04-21 14:13:55.910', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2543', N'2025-04-21 14:13:56.743', N'67', N'2025-04-21 14:13:56.810', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2544', N'2025-04-21 14:13:57.743', N'72', N'2025-04-21 14:13:57.817', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2545', N'2025-04-21 14:14:23.350', N'9061', N'2025-04-21 14:14:32.413', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2546', N'2025-04-21 14:14:32.620', N'104', N'2025-04-21 14:14:32.723', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2547', N'2025-04-21 14:14:32.857', N'74', N'2025-04-21 14:14:32.930', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2548', N'2025-04-21 14:14:33.030', N'84', N'2025-04-21 14:14:33.113', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2549', N'2025-04-21 14:14:33.213', N'88', N'2025-04-21 14:14:33.300', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2550', N'2025-04-21 14:14:33.407', N'78', N'2025-04-21 14:14:33.483', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2551', N'2025-04-21 14:14:33.580', N'76', N'2025-04-21 14:14:33.657', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2552', N'2025-04-21 14:14:33.747', N'79', N'2025-04-21 14:14:33.823', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2553', N'2025-04-21 14:14:33.933', N'73', N'2025-04-21 14:14:34.007', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2554', N'2025-04-21 14:14:34.097', N'72', N'2025-04-21 14:14:34.170', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2555', N'2025-04-21 14:14:34.277', N'77', N'2025-04-21 14:14:34.357', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2556', N'2025-04-21 14:14:34.470', N'79', N'2025-04-21 14:14:34.550', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2557', N'2025-04-21 14:14:34.637', N'74', N'2025-04-21 14:14:34.713', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2558', N'2025-04-21 14:14:34.807', N'75', N'2025-04-21 14:14:34.880', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2559', N'2025-04-21 14:14:34.977', N'71', N'2025-04-21 14:14:35.047', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2560', N'2025-04-21 14:14:35.143', N'71', N'2025-04-21 14:14:35.213', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2561', N'2025-04-21 14:14:35.310', N'74', N'2025-04-21 14:14:35.383', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2562', N'2025-04-21 14:14:35.543', N'75', N'2025-04-21 14:14:35.617', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2563', N'2025-04-21 14:14:35.710', N'82', N'2025-04-21 14:14:35.790', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2564', N'2025-04-21 14:14:35.883', N'87', N'2025-04-21 14:14:35.970', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2565', N'2025-04-21 14:14:36.070', N'77', N'2025-04-21 14:14:36.147', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2566', N'2025-04-21 14:14:36.240', N'79', N'2025-04-21 14:14:36.320', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2567', N'2025-04-21 14:14:36.417', N'80', N'2025-04-21 14:14:36.497', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2568', N'2025-04-21 14:14:36.587', N'92', N'2025-04-21 14:14:36.680', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2569', N'2025-04-21 14:14:36.773', N'81', N'2025-04-21 14:14:36.857', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2570', N'2025-04-21 14:14:37.513', N'69', N'2025-04-21 14:14:37.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2571', N'2025-04-21 14:14:38.500', N'74', N'2025-04-21 14:14:38.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2572', N'2025-04-21 14:14:39.507', N'68', N'2025-04-21 14:14:39.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2573', N'2025-04-21 14:14:40.500', N'68', N'2025-04-21 14:14:40.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2574', N'2025-04-21 14:14:41.503', N'70', N'2025-04-21 14:14:41.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2575', N'2025-04-21 14:14:42.493', N'69', N'2025-04-21 14:14:42.560', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2576', N'2025-04-21 14:14:43.547', N'69', N'2025-04-21 14:14:43.613', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2577', N'2025-04-21 14:14:44.527', N'69', N'2025-04-21 14:14:44.597', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2578', N'2025-04-21 14:14:45.527', N'67', N'2025-04-21 14:14:45.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2579', N'2025-04-21 14:14:46.540', N'74', N'2025-04-21 14:14:46.613', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2580', N'2025-04-21 14:14:47.497', N'79', N'2025-04-21 14:14:47.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2581', N'2025-04-21 14:14:48.500', N'71', N'2025-04-21 14:14:48.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2582', N'2025-04-21 14:14:49.493', N'71', N'2025-04-21 14:14:49.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2583', N'2025-04-21 14:14:50.510', N'81', N'2025-04-21 14:14:50.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2584', N'2025-04-21 14:14:51.507', N'71', N'2025-04-21 14:14:51.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2585', N'2025-04-21 14:14:52.500', N'77', N'2025-04-21 14:14:52.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2586', N'2025-04-21 14:14:53.500', N'75', N'2025-04-21 14:14:53.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2587', N'2025-04-21 14:14:54.497', N'74', N'2025-04-21 14:14:54.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2588', N'2025-04-21 14:14:55.697', N'76', N'2025-04-21 14:14:55.773', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2589', N'2025-04-21 14:14:56.727', N'73', N'2025-04-21 14:14:56.800', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2590', N'2025-04-21 14:14:57.723', N'69', N'2025-04-21 14:14:57.793', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2591', N'2025-04-21 14:14:58.740', N'71', N'2025-04-21 14:14:58.810', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2592', N'2025-04-21 14:14:59.497', N'67', N'2025-04-21 14:14:59.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2593', N'2025-04-21 14:15:00.510', N'67', N'2025-04-21 14:15:00.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2594', N'2025-04-21 14:15:01.493', N'68', N'2025-04-21 14:15:01.560', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2595', N'2025-04-21 14:15:02.503', N'67', N'2025-04-21 14:15:02.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2596', N'2025-04-21 14:15:03.500', N'72', N'2025-04-21 14:15:03.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2597', N'2025-04-21 14:15:04.487', N'65', N'2025-04-21 14:15:04.553', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2598', N'2025-04-21 14:15:05.493', N'65', N'2025-04-21 14:15:05.560', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2599', N'2025-04-21 14:15:06.767', N'73', N'2025-04-21 14:15:06.840', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2600', N'2025-04-21 14:15:07.690', N'67', N'2025-04-21 14:15:07.757', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2601', N'2025-04-21 14:15:08.740', N'70', N'2025-04-21 14:15:08.810', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2602', N'2025-04-21 14:15:09.767', N'68', N'2025-04-21 14:15:09.833', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2603', N'2025-04-21 14:15:10.500', N'72', N'2025-04-21 14:15:10.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2604', N'2025-04-21 14:15:11.500', N'68', N'2025-04-21 14:15:11.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2605', N'2025-04-21 14:15:12.500', N'68', N'2025-04-21 14:15:12.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2606', N'2025-04-21 14:15:13.510', N'74', N'2025-04-21 14:15:13.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2607', N'2025-04-21 14:15:14.500', N'78', N'2025-04-21 14:15:14.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2608', N'2025-04-21 14:15:15.503', N'82', N'2025-04-21 14:15:15.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2609', N'2025-04-21 14:15:16.517', N'104', N'2025-04-21 14:15:16.620', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2610', N'2025-04-21 14:15:17.800', N'77', N'2025-04-21 14:15:17.877', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2611', N'2025-04-21 14:15:18.903', N'79', N'2025-04-21 14:15:18.983', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2612', N'2025-04-21 14:15:19.810', N'75', N'2025-04-21 14:15:19.883', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2613', N'2025-04-21 14:15:20.703', N'93', N'2025-04-21 14:15:20.797', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2614', N'2025-04-21 14:15:21.000', N'123', N'2025-04-21 14:15:21.123', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":575,\"PalletCode\":\"25000263\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2615', N'2025-04-21 14:15:21.510', N'99', N'2025-04-21 14:15:21.607', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2616', N'2025-04-21 14:15:22.510', N'82', N'2025-04-21 14:15:22.590', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2617', N'2025-04-21 14:15:23.493', N'73', N'2025-04-21 14:15:23.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2618', N'2025-04-21 14:15:24.500', N'71', N'2025-04-21 14:15:24.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2619', N'2025-04-21 14:15:25.503', N'69', N'2025-04-21 14:15:25.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2620', N'2025-04-21 14:15:26.507', N'8912', N'2025-04-21 14:15:35.420', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2621', N'2025-04-21 14:15:35.520', N'69', N'2025-04-21 14:15:35.590', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2622', N'2025-04-21 14:15:35.677', N'65', N'2025-04-21 14:15:35.743', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2623', N'2025-04-21 14:15:35.843', N'69', N'2025-04-21 14:15:35.910', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2624', N'2025-04-21 14:15:36.007', N'70', N'2025-04-21 14:15:36.073', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2625', N'2025-04-21 14:15:36.167', N'74', N'2025-04-21 14:15:36.240', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2626', N'2025-04-21 14:15:36.340', N'68', N'2025-04-21 14:15:36.410', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2627', N'2025-04-21 14:15:36.497', N'73', N'2025-04-21 14:15:36.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2628', N'2025-04-21 14:15:36.663', N'100', N'2025-04-21 14:15:36.763', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2629', N'2025-04-21 14:15:36.987', N'68', N'2025-04-21 14:15:37.053', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2630', N'2025-04-21 14:15:37.240', N'68', N'2025-04-21 14:15:37.310', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2631', N'2025-04-21 14:15:37.510', N'65', N'2025-04-21 14:15:37.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2632', N'2025-04-21 14:15:38.503', N'68', N'2025-04-21 14:15:38.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2633', N'2025-04-21 14:15:39.877', N'78', N'2025-04-21 14:15:39.953', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2634', N'2025-04-21 14:15:40.760', N'68', N'2025-04-21 14:15:40.827', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2635', N'2025-04-21 14:15:41.687', N'84', N'2025-04-21 14:15:41.773', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2636', N'2025-04-21 14:15:42.690', N'75', N'2025-04-21 14:15:42.763', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2637', N'2025-04-21 14:15:43.507', N'66', N'2025-04-21 14:15:43.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2638', N'2025-04-21 14:15:44.497', N'65', N'2025-04-21 14:15:44.560', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2639', N'2025-04-21 14:15:45.497', N'72', N'2025-04-21 14:15:45.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2640', N'2025-04-21 14:15:46.503', N'70', N'2025-04-21 14:15:46.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2641', N'2025-04-21 14:15:47.503', N'71', N'2025-04-21 14:15:47.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2642', N'2025-04-21 14:15:48.493', N'67', N'2025-04-21 14:15:48.560', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2643', N'2025-04-21 14:15:49.497', N'64', N'2025-04-21 14:15:49.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2644', N'2025-04-21 14:15:50.497', N'67', N'2025-04-21 14:15:50.563', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2645', N'2025-04-21 14:15:51.633', N'70', N'2025-04-21 14:15:51.707', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2646', N'2025-04-21 14:15:52.603', N'65', N'2025-04-21 14:15:52.667', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2647', N'2025-04-21 14:15:53.540', N'69', N'2025-04-21 14:15:53.607', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2648', N'2025-04-21 14:15:54.533', N'71', N'2025-04-21 14:15:54.603', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2649', N'2025-04-21 14:15:55.493', N'66', N'2025-04-21 14:15:55.560', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2650', N'2025-04-21 14:15:56.513', N'64', N'2025-04-21 14:15:56.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2651', N'2025-04-21 14:15:57.497', N'66', N'2025-04-21 14:15:57.560', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2652', N'2025-04-21 14:15:58.503', N'67', N'2025-04-21 14:15:58.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2653', N'2025-04-21 14:15:59.493', N'63', N'2025-04-21 14:15:59.557', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2654', N'2025-04-21 14:16:00.503', N'68', N'2025-04-21 14:16:00.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2655', N'2025-04-21 14:16:01.493', N'67', N'2025-04-21 14:16:01.560', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2656', N'2025-04-21 14:16:02.497', N'64', N'2025-04-21 14:16:02.560', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2657', N'2025-04-21 14:16:03.547', N'70', N'2025-04-21 14:16:03.617', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000126]的入库任务","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2658', N'2025-04-21 14:16:04.663', N'24', N'2025-04-21 14:16:04.687', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2659', N'2025-04-21 14:16:25.520', N'100', N'2025-04-21 14:16:25.620', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2660', N'2025-04-21 14:16:26.510', N'71', N'2025-04-21 14:16:26.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2661', N'2025-04-21 14:16:27.510', N'67', N'2025-04-21 14:16:27.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2662', N'2025-04-21 14:16:28.510', N'68', N'2025-04-21 14:16:28.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2663', N'2025-04-21 14:16:29.510', N'73', N'2025-04-21 14:16:29.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2664', N'2025-04-21 14:16:30.510', N'95', N'2025-04-21 14:16:30.603', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2665', N'2025-04-21 14:16:31.510', N'66', N'2025-04-21 14:16:31.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2666', N'2025-04-21 14:16:32.520', N'70', N'2025-04-21 14:16:32.590', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2667', N'2025-04-21 14:16:33.507', N'67', N'2025-04-21 14:16:33.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2668', N'2025-04-21 14:16:34.517', N'67', N'2025-04-21 14:16:34.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2669', N'2025-04-21 14:16:35.507', N'70', N'2025-04-21 14:16:35.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2670', N'2025-04-21 14:16:36.510', N'67', N'2025-04-21 14:16:36.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2671', N'2025-04-21 14:16:37.507', N'69', N'2025-04-21 14:16:37.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2672', N'2025-04-21 14:16:38.510', N'69', N'2025-04-21 14:16:38.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2673', N'2025-04-21 14:16:39.507', N'69', N'2025-04-21 14:16:39.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2674', N'2025-04-21 14:16:40.507', N'68', N'2025-04-21 14:16:40.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2675', N'2025-04-21 14:16:41.510', N'80', N'2025-04-21 14:16:41.590', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2676', N'2025-04-21 14:16:42.513', N'71', N'2025-04-21 14:16:42.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2677', N'2025-04-21 14:16:43.510', N'82', N'2025-04-21 14:16:43.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2678', N'2025-04-21 14:16:44.510', N'68', N'2025-04-21 14:16:44.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2679', N'2025-04-21 14:16:45.513', N'67', N'2025-04-21 14:16:45.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2680', N'2025-04-21 14:16:46.517', N'69', N'2025-04-21 14:16:46.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2681', N'2025-04-21 14:16:47.507', N'75', N'2025-04-21 14:16:47.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2682', N'2025-04-21 14:16:48.510', N'67', N'2025-04-21 14:16:48.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2683', N'2025-04-21 14:16:49.513', N'69', N'2025-04-21 14:16:49.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2684', N'2025-04-21 14:16:50.510', N'76', N'2025-04-21 14:16:50.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2685', N'2025-04-21 14:16:51.517', N'67', N'2025-04-21 14:16:51.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2686', N'2025-04-21 14:16:52.503', N'66', N'2025-04-21 14:16:52.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2687', N'2025-04-21 14:16:53.510', N'65', N'2025-04-21 14:16:53.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2688', N'2025-04-21 14:16:54.507', N'76', N'2025-04-21 14:16:54.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2689', N'2025-04-21 14:16:55.510', N'70', N'2025-04-21 14:16:55.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2690', N'2025-04-21 14:16:56.503', N'66', N'2025-04-21 14:16:56.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2691', N'2025-04-21 14:16:57.510', N'68', N'2025-04-21 14:16:57.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2692', N'2025-04-21 14:16:58.520', N'73', N'2025-04-21 14:16:58.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2693', N'2025-04-21 14:16:59.513', N'67', N'2025-04-21 14:16:59.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2694', N'2025-04-21 14:17:00.510', N'68', N'2025-04-21 14:17:00.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2695', N'2025-04-21 14:17:01.510', N'67', N'2025-04-21 14:17:01.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2696', N'2025-04-21 14:17:02.510', N'69', N'2025-04-21 14:17:02.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2697', N'2025-04-21 14:17:03.507', N'69', N'2025-04-21 14:17:03.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2698', N'2025-04-21 14:17:04.507', N'70', N'2025-04-21 14:17:04.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2699', N'2025-04-21 14:17:05.507', N'69', N'2025-04-21 14:17:05.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2700', N'2025-04-21 14:17:06.507', N'67', N'2025-04-21 14:17:06.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2701', N'2025-04-21 14:17:07.507', N'78', N'2025-04-21 14:17:07.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2702', N'2025-04-21 14:17:08.510', N'66', N'2025-04-21 14:17:08.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2703', N'2025-04-21 14:17:09.503', N'70', N'2025-04-21 14:17:09.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2704', N'2025-04-21 14:17:10.503', N'73', N'2025-04-21 14:17:10.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2705', N'2025-04-21 14:17:11.510', N'65', N'2025-04-21 14:17:11.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2706', N'2025-04-21 14:17:12.517', N'67', N'2025-04-21 14:17:12.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2707', N'2025-04-21 14:17:13.510', N'65', N'2025-04-21 14:17:13.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2708', N'2025-04-21 14:17:14.503', N'68', N'2025-04-21 14:17:14.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2709', N'2025-04-21 14:17:15.513', N'70', N'2025-04-21 14:17:15.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2710', N'2025-04-21 14:17:16.510', N'71', N'2025-04-21 14:17:16.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2711', N'2025-04-21 14:17:17.507', N'66', N'2025-04-21 14:17:17.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2712', N'2025-04-21 14:17:18.507', N'67', N'2025-04-21 14:17:18.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2713', N'2025-04-21 14:17:19.513', N'69', N'2025-04-21 14:17:19.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2714', N'2025-04-21 14:17:20.513', N'73', N'2025-04-21 14:17:20.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2715', N'2025-04-21 14:17:21.503', N'70', N'2025-04-21 14:17:21.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2716', N'2025-04-21 14:17:22.510', N'66', N'2025-04-21 14:17:22.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2717', N'2025-04-21 14:17:23.500', N'71', N'2025-04-21 14:17:23.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2718', N'2025-04-21 14:17:24.510', N'65', N'2025-04-21 14:17:24.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2719', N'2025-04-21 14:17:25.510', N'70', N'2025-04-21 14:17:25.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2720', N'2025-04-21 14:17:26.520', N'70', N'2025-04-21 14:17:26.590', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2721', N'2025-04-21 14:17:27.510', N'72', N'2025-04-21 14:17:27.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2722', N'2025-04-21 14:17:28.510', N'72', N'2025-04-21 14:17:28.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2723', N'2025-04-21 14:17:29.510', N'74', N'2025-04-21 14:17:29.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2724', N'2025-04-21 14:17:30.507', N'72', N'2025-04-21 14:17:30.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2725', N'2025-04-21 14:17:31.517', N'79', N'2025-04-21 14:17:31.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2726', N'2025-04-21 14:17:32.513', N'65', N'2025-04-21 14:17:32.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2727', N'2025-04-21 14:17:33.510', N'77', N'2025-04-21 14:17:33.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2728', N'2025-04-21 14:17:34.503', N'71', N'2025-04-21 14:17:34.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2729', N'2025-04-21 14:17:35.513', N'67', N'2025-04-21 14:17:35.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2730', N'2025-04-21 14:17:36.510', N'68', N'2025-04-21 14:17:36.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2731', N'2025-04-21 14:17:37.513', N'71', N'2025-04-21 14:17:37.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2732', N'2025-04-21 14:17:38.507', N'69', N'2025-04-21 14:17:38.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2733', N'2025-04-21 14:17:39.503', N'73', N'2025-04-21 14:17:39.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2734', N'2025-04-21 14:17:40.510', N'65', N'2025-04-21 14:17:40.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2735', N'2025-04-21 14:17:41.503', N'70', N'2025-04-21 14:17:41.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2736', N'2025-04-21 14:17:42.517', N'75', N'2025-04-21 14:17:42.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2737', N'2025-04-21 14:17:43.503', N'68', N'2025-04-21 14:17:43.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2738', N'2025-04-21 14:17:44.503', N'71', N'2025-04-21 14:17:44.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2739', N'2025-04-21 14:17:45.517', N'66', N'2025-04-21 14:17:45.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2740', N'2025-04-21 14:17:46.510', N'68', N'2025-04-21 14:17:46.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2741', N'2025-04-21 14:17:47.507', N'69', N'2025-04-21 14:17:47.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2742', N'2025-04-21 14:17:48.510', N'66', N'2025-04-21 14:17:48.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2743', N'2025-04-21 14:17:49.510', N'68', N'2025-04-21 14:17:49.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2744', N'2025-04-21 14:17:50.513', N'68', N'2025-04-21 14:17:50.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2745', N'2025-04-21 14:17:51.507', N'75', N'2025-04-21 14:17:51.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2746', N'2025-04-21 14:17:52.510', N'67', N'2025-04-21 14:17:52.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2747', N'2025-04-21 14:17:53.510', N'68', N'2025-04-21 14:17:53.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2748', N'2025-04-21 14:17:54.520', N'66', N'2025-04-21 14:17:54.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2749', N'2025-04-21 14:17:55.513', N'78', N'2025-04-21 14:17:55.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2750', N'2025-04-21 14:17:56.500', N'69', N'2025-04-21 14:17:56.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2751', N'2025-04-21 14:17:57.507', N'66', N'2025-04-21 14:17:57.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2752', N'2025-04-21 14:17:58.513', N'70', N'2025-04-21 14:17:58.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2753', N'2025-04-21 14:17:59.510', N'67', N'2025-04-21 14:17:59.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2754', N'2025-04-21 14:18:00.510', N'70', N'2025-04-21 14:18:00.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2755', N'2025-04-21 14:18:01.510', N'66', N'2025-04-21 14:18:01.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2756', N'2025-04-21 14:18:02.500', N'70', N'2025-04-21 14:18:02.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2757', N'2025-04-21 14:18:03.510', N'69', N'2025-04-21 14:18:03.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2758', N'2025-04-21 14:18:04.507', N'92', N'2025-04-21 14:18:04.597', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2759', N'2025-04-21 14:18:05.510', N'69', N'2025-04-21 14:18:05.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2760', N'2025-04-21 14:18:06.507', N'65', N'2025-04-21 14:18:06.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2761', N'2025-04-21 14:18:07.513', N'69', N'2025-04-21 14:18:07.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2762', N'2025-04-21 14:18:08.513', N'74', N'2025-04-21 14:18:08.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2763', N'2025-04-21 14:18:09.507', N'68', N'2025-04-21 14:18:09.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2764', N'2025-04-21 14:18:10.507', N'67', N'2025-04-21 14:18:10.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2765', N'2025-04-21 14:18:11.507', N'68', N'2025-04-21 14:18:11.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2766', N'2025-04-21 14:18:12.507', N'66', N'2025-04-21 14:18:12.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2767', N'2025-04-21 14:18:13.507', N'68', N'2025-04-21 14:18:13.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2768', N'2025-04-21 14:18:14.507', N'69', N'2025-04-21 14:18:14.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2769', N'2025-04-21 14:18:15.517', N'68', N'2025-04-21 14:18:15.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2770', N'2025-04-21 14:18:16.510', N'67', N'2025-04-21 14:18:16.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2771', N'2025-04-21 14:18:17.507', N'69', N'2025-04-21 14:18:17.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2772', N'2025-04-21 14:18:18.507', N'67', N'2025-04-21 14:18:18.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2773', N'2025-04-21 14:18:19.503', N'80', N'2025-04-21 14:18:19.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2774', N'2025-04-21 14:18:20.507', N'72', N'2025-04-21 14:18:20.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2775', N'2025-04-21 14:18:21.503', N'81', N'2025-04-21 14:18:21.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2776', N'2025-04-21 14:18:22.517', N'78', N'2025-04-21 14:18:22.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2777', N'2025-04-21 14:18:23.503', N'73', N'2025-04-21 14:18:23.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2778', N'2025-04-21 14:18:24.510', N'76', N'2025-04-21 14:18:24.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2779', N'2025-04-21 14:18:25.520', N'66', N'2025-04-21 14:18:25.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2780', N'2025-04-21 14:18:26.507', N'69', N'2025-04-21 14:18:26.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2781', N'2025-04-21 14:18:27.510', N'69', N'2025-04-21 14:18:27.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2782', N'2025-04-21 14:18:28.510', N'72', N'2025-04-21 14:18:28.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2783', N'2025-04-21 14:18:29.510', N'73', N'2025-04-21 14:18:29.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2784', N'2025-04-21 14:18:30.510', N'90', N'2025-04-21 14:18:30.600', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2785', N'2025-04-21 14:18:31.510', N'77', N'2025-04-21 14:18:31.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2786', N'2025-04-21 14:18:32.510', N'86', N'2025-04-21 14:18:32.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2787', N'2025-04-21 14:18:33.510', N'74', N'2025-04-21 14:18:33.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2788', N'2025-04-21 14:18:34.503', N'80', N'2025-04-21 14:18:34.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2789', N'2025-04-21 14:18:35.523', N'77', N'2025-04-21 14:18:35.600', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2790', N'2025-04-21 14:18:36.507', N'67', N'2025-04-21 14:18:36.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2791', N'2025-04-21 14:18:37.507', N'71', N'2025-04-21 14:18:37.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2792', N'2025-04-21 14:18:38.510', N'68', N'2025-04-21 14:18:38.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2793', N'2025-04-21 14:18:39.530', N'74', N'2025-04-21 14:18:39.603', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2794', N'2025-04-21 14:18:40.533', N'68', N'2025-04-21 14:18:40.603', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2795', N'2025-04-21 14:18:41.517', N'72', N'2025-04-21 14:18:41.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2796', N'2025-04-21 14:18:42.523', N'72', N'2025-04-21 14:18:42.597', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2797', N'2025-04-21 14:18:43.530', N'101', N'2025-04-21 14:18:43.630', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2798', N'2025-04-21 14:18:44.507', N'74', N'2025-04-21 14:18:44.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2799', N'2025-04-21 14:18:45.507', N'74', N'2025-04-21 14:18:45.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2800', N'2025-04-21 14:18:46.503', N'69', N'2025-04-21 14:18:46.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2801', N'2025-04-21 14:18:47.500', N'67', N'2025-04-21 14:18:47.567', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2802', N'2025-04-21 14:18:48.513', N'74', N'2025-04-21 14:18:48.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2803', N'2025-04-21 14:18:49.507', N'65', N'2025-04-21 14:18:49.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2804', N'2025-04-21 14:18:50.783', N'68', N'2025-04-21 14:18:50.853', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2805', N'2025-04-21 14:18:51.867', N'70', N'2025-04-21 14:18:51.937', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2806', N'2025-04-21 14:18:53.557', N'71', N'2025-04-21 14:18:53.630', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2807', N'2025-04-21 14:18:53.983', N'73', N'2025-04-21 14:18:54.057', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2808', N'2025-04-21 14:18:54.507', N'66', N'2025-04-21 14:18:54.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2809', N'2025-04-21 14:18:55.507', N'70', N'2025-04-21 14:18:55.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2810', N'2025-04-21 14:18:56.503', N'77', N'2025-04-21 14:18:56.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2811', N'2025-04-21 14:18:57.507', N'68', N'2025-04-21 14:18:57.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2812', N'2025-04-21 14:18:58.510', N'69', N'2025-04-21 14:18:58.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2813', N'2025-04-21 14:18:59.507', N'66', N'2025-04-21 14:18:59.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2814', N'2025-04-21 14:19:01.597', N'70', N'2025-04-21 14:19:01.667', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2815', N'2025-04-21 14:19:01.993', N'69', N'2025-04-21 14:19:02.063', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2816', N'2025-04-21 14:19:02.673', N'76', N'2025-04-21 14:19:02.750', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2817', N'2025-04-21 14:19:03.680', N'69', N'2025-04-21 14:19:03.750', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2818', N'2025-04-21 14:19:04.507', N'68', N'2025-04-21 14:19:04.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2819', N'2025-04-21 14:19:05.507', N'66', N'2025-04-21 14:19:05.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2820', N'2025-04-21 14:19:06.507', N'65', N'2025-04-21 14:19:06.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2821', N'2025-04-21 14:19:07.503', N'74', N'2025-04-21 14:19:07.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2822', N'2025-04-21 14:19:08.513', N'66', N'2025-04-21 14:19:08.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2823', N'2025-04-21 14:19:09.510', N'66', N'2025-04-21 14:19:09.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2824', N'2025-04-21 14:19:10.823', N'66', N'2025-04-21 14:19:10.890', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2825', N'2025-04-21 14:19:11.640', N'115', N'2025-04-21 14:19:11.757', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2826', N'2025-04-21 14:19:12.670', N'89', N'2025-04-21 14:19:12.757', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2827', N'2025-04-21 14:19:13.767', N'115', N'2025-04-21 14:19:13.883', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2828', N'2025-04-21 14:19:14.507', N'79', N'2025-04-21 14:19:14.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2829', N'2025-04-21 14:19:15.503', N'76', N'2025-04-21 14:19:15.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2830', N'2025-04-21 14:19:16.513', N'68', N'2025-04-21 14:19:16.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2831', N'2025-04-21 14:19:17.520', N'69', N'2025-04-21 14:19:17.590', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2832', N'2025-04-21 14:19:18.507', N'73', N'2025-04-21 14:19:18.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2833', N'2025-04-21 14:19:19.503', N'69', N'2025-04-21 14:19:19.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2834', N'2025-04-21 14:19:20.657', N'76', N'2025-04-21 14:19:20.733', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2835', N'2025-04-21 14:19:21.707', N'77', N'2025-04-21 14:19:21.783', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2836', N'2025-04-21 14:19:22.707', N'70', N'2025-04-21 14:19:22.777', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2837', N'2025-04-21 14:19:23.747', N'88', N'2025-04-21 14:19:23.833', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2838', N'2025-04-21 14:19:24.507', N'70', N'2025-04-21 14:19:24.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2839', N'2025-04-21 14:19:25.510', N'68', N'2025-04-21 14:19:25.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2840', N'2025-04-21 14:19:26.517', N'75', N'2025-04-21 14:19:26.590', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2841', N'2025-04-21 14:19:27.510', N'74', N'2025-04-21 14:19:27.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2842', N'2025-04-21 14:19:28.503', N'135', N'2025-04-21 14:19:28.640', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2843', N'2025-04-21 14:19:29.523', N'130', N'2025-04-21 14:19:29.653', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2844', N'2025-04-21 14:19:30.750', N'71', N'2025-04-21 14:19:30.823', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2845', N'2025-04-21 14:19:31.743', N'88', N'2025-04-21 14:19:31.833', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2846', N'2025-04-21 14:19:32.633', N'66', N'2025-04-21 14:19:32.700', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2847', N'2025-04-21 14:19:33.667', N'68', N'2025-04-21 14:19:33.737', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2848', N'2025-04-21 14:19:34.503', N'69', N'2025-04-21 14:19:34.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2849', N'2025-04-21 14:19:35.507', N'72', N'2025-04-21 14:19:35.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2850', N'2025-04-21 14:19:36.517', N'90', N'2025-04-21 14:19:36.607', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2851', N'2025-04-21 14:19:37.513', N'28', N'2025-04-21 14:19:37.540', N'{"QueryString":"","BodyData":"{\"TaskNum\":584,\"Barcode\":\"25000480\",\"stationCode\":\"1002\",\"Weight\":158,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2852', N'2025-04-21 14:19:37.607', N'84', N'2025-04-21 14:19:37.690', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2853', N'2025-04-21 14:19:38.513', N'72', N'2025-04-21 14:19:38.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2854', N'2025-04-21 14:19:39.523', N'100', N'2025-04-21 14:19:39.623', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2855', N'2025-04-21 14:19:40.677', N'79', N'2025-04-21 14:19:40.753', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2856', N'2025-04-21 14:19:41.633', N'80', N'2025-04-21 14:19:41.713', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2857', N'2025-04-21 14:19:42.727', N'83', N'2025-04-21 14:19:42.810', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2858', N'2025-04-21 14:19:43.680', N'69', N'2025-04-21 14:19:43.750', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2859', N'2025-04-21 14:19:44.513', N'69', N'2025-04-21 14:19:44.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2860', N'2025-04-21 14:19:45.500', N'82', N'2025-04-21 14:19:45.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2861', N'2025-04-21 14:19:46.510', N'96', N'2025-04-21 14:19:46.607', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2862', N'2025-04-21 14:19:47.507', N'72', N'2025-04-21 14:19:47.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2863', N'2025-04-21 14:19:48.503', N'69', N'2025-04-21 14:19:48.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2864', N'2025-04-21 14:19:49.503', N'83', N'2025-04-21 14:19:49.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2865', N'2025-04-21 14:19:50.553', N'72', N'2025-04-21 14:19:50.623', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2866', N'2025-04-21 14:19:51.610', N'90', N'2025-04-21 14:19:51.700', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2867', N'2025-04-21 14:19:52.550', N'69', N'2025-04-21 14:19:52.620', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2868', N'2025-04-21 14:19:53.580', N'70', N'2025-04-21 14:19:53.650', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2869', N'2025-04-21 14:19:54.513', N'73', N'2025-04-21 14:19:54.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2870', N'2025-04-21 14:19:55.510', N'70', N'2025-04-21 14:19:55.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2871', N'2025-04-21 14:19:56.527', N'70', N'2025-04-21 14:19:56.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2872', N'2025-04-21 14:19:57.507', N'67', N'2025-04-21 14:19:57.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2873', N'2025-04-21 14:19:58.510', N'69', N'2025-04-21 14:19:58.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2874', N'2025-04-21 14:19:59.513', N'74', N'2025-04-21 14:19:59.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2875', N'2025-04-21 14:20:00.537', N'71', N'2025-04-21 14:20:00.607', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2876', N'2025-04-21 14:20:01.533', N'69', N'2025-04-21 14:20:01.600', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2877', N'2025-04-21 14:20:02.537', N'85', N'2025-04-21 14:20:02.620', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2878', N'2025-04-21 14:20:03.517', N'68', N'2025-04-21 14:20:03.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2879', N'2025-04-21 14:20:04.527', N'77', N'2025-04-21 14:20:04.603', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2880', N'2025-04-21 14:20:05.507', N'70', N'2025-04-21 14:20:05.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2881', N'2025-04-21 14:20:06.507', N'79', N'2025-04-21 14:20:06.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2882', N'2025-04-21 14:20:07.507', N'71', N'2025-04-21 14:20:07.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2883', N'2025-04-21 14:20:08.507', N'69', N'2025-04-21 14:20:08.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2884', N'2025-04-21 14:20:09.517', N'65', N'2025-04-21 14:20:09.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2885', N'2025-04-21 14:20:10.503', N'67', N'2025-04-21 14:20:10.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2886', N'2025-04-21 14:20:11.507', N'66', N'2025-04-21 14:20:11.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2887', N'2025-04-21 14:20:12.503', N'72', N'2025-04-21 14:20:12.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2888', N'2025-04-21 14:20:13.517', N'70', N'2025-04-21 14:20:13.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2889', N'2025-04-21 14:20:14.503', N'68', N'2025-04-21 14:20:14.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2890', N'2025-04-21 14:20:15.510', N'69', N'2025-04-21 14:20:15.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2891', N'2025-04-21 14:20:16.520', N'66', N'2025-04-21 14:20:16.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2892', N'2025-04-21 14:20:17.527', N'68', N'2025-04-21 14:20:17.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2893', N'2025-04-21 14:20:18.510', N'63', N'2025-04-21 14:20:18.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2894', N'2025-04-21 14:20:19.510', N'65', N'2025-04-21 14:20:19.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2895', N'2025-04-21 14:20:20.503', N'66', N'2025-04-21 14:20:20.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2896', N'2025-04-21 14:20:21.513', N'67', N'2025-04-21 14:20:21.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2897', N'2025-04-21 14:20:22.513', N'66', N'2025-04-21 14:20:22.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2898', N'2025-04-21 14:20:23.510', N'79', N'2025-04-21 14:20:23.590', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2899', N'2025-04-21 14:20:24.503', N'69', N'2025-04-21 14:20:24.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2900', N'2025-04-21 14:20:25.513', N'71', N'2025-04-21 14:20:25.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2901', N'2025-04-21 14:20:26.513', N'74', N'2025-04-21 14:20:26.590', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2902', N'2025-04-21 14:20:27.510', N'68', N'2025-04-21 14:20:27.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2903', N'2025-04-21 14:20:28.510', N'77', N'2025-04-21 14:20:28.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2904', N'2025-04-21 14:20:29.503', N'69', N'2025-04-21 14:20:29.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2905', N'2025-04-21 14:20:30.507', N'67', N'2025-04-21 14:20:30.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2906', N'2025-04-21 14:20:31.503', N'70', N'2025-04-21 14:20:31.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2907', N'2025-04-21 14:20:32.510', N'68', N'2025-04-21 14:20:32.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2908', N'2025-04-21 14:20:33.507', N'70', N'2025-04-21 14:20:33.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2909', N'2025-04-21 14:20:34.503', N'67', N'2025-04-21 14:20:34.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2910', N'2025-04-21 14:20:35.510', N'67', N'2025-04-21 14:20:35.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2911', N'2025-04-21 14:20:36.507', N'69', N'2025-04-21 14:20:36.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2912', N'2025-04-21 14:20:37.503', N'68', N'2025-04-21 14:20:37.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2913', N'2025-04-21 14:20:38.503', N'71', N'2025-04-21 14:20:38.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2914', N'2025-04-21 14:20:39.507', N'68', N'2025-04-21 14:20:39.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2915', N'2025-04-21 14:20:40.507', N'64', N'2025-04-21 14:20:40.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2916', N'2025-04-21 14:20:41.507', N'70', N'2025-04-21 14:20:41.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2917', N'2025-04-21 14:20:42.510', N'71', N'2025-04-21 14:20:42.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2918', N'2025-04-21 14:20:43.513', N'73', N'2025-04-21 14:20:43.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2919', N'2025-04-21 14:20:44.510', N'76', N'2025-04-21 14:20:44.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2920', N'2025-04-21 14:20:45.507', N'78', N'2025-04-21 14:20:45.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2921', N'2025-04-21 14:20:46.513', N'72', N'2025-04-21 14:20:46.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2922', N'2025-04-21 14:20:47.510', N'74', N'2025-04-21 14:20:47.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2923', N'2025-04-21 14:20:48.517', N'69', N'2025-04-21 14:20:48.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2924', N'2025-04-21 14:20:49.513', N'79', N'2025-04-21 14:20:49.590', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2925', N'2025-04-21 14:20:50.507', N'71', N'2025-04-21 14:20:50.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2926', N'2025-04-21 14:20:51.503', N'68', N'2025-04-21 14:20:51.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2927', N'2025-04-21 14:20:52.510', N'68', N'2025-04-21 14:20:52.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2928', N'2025-04-21 14:20:53.507', N'66', N'2025-04-21 14:20:53.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2929', N'2025-04-21 14:20:54.503', N'72', N'2025-04-21 14:20:54.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2930', N'2025-04-21 14:20:55.503', N'74', N'2025-04-21 14:20:55.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2931', N'2025-04-21 14:20:56.507', N'87', N'2025-04-21 14:20:56.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2932', N'2025-04-21 14:20:57.503', N'68', N'2025-04-21 14:20:57.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2933', N'2025-04-21 14:20:58.510', N'71', N'2025-04-21 14:20:58.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2934', N'2025-04-21 14:20:59.500', N'73', N'2025-04-21 14:20:59.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2935', N'2025-04-21 14:21:00.507', N'66', N'2025-04-21 14:21:00.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2936', N'2025-04-21 14:21:01.517', N'68', N'2025-04-21 14:21:01.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2937', N'2025-04-21 14:21:02.510', N'70', N'2025-04-21 14:21:02.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2938', N'2025-04-21 14:21:03.507', N'72', N'2025-04-21 14:21:03.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2939', N'2025-04-21 14:21:04.503', N'69', N'2025-04-21 14:21:04.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2940', N'2025-04-21 14:21:05.510', N'72', N'2025-04-21 14:21:05.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2941', N'2025-04-21 14:21:06.503', N'70', N'2025-04-21 14:21:06.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2942', N'2025-04-21 14:21:07.503', N'75', N'2025-04-21 14:21:07.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2943', N'2025-04-21 14:21:08.510', N'67', N'2025-04-21 14:21:08.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2944', N'2025-04-21 14:21:09.503', N'67', N'2025-04-21 14:21:09.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2945', N'2025-04-21 14:21:10.507', N'69', N'2025-04-21 14:21:10.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2946', N'2025-04-21 14:21:11.503', N'68', N'2025-04-21 14:21:11.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2947', N'2025-04-21 14:21:12.510', N'79', N'2025-04-21 14:21:12.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2948', N'2025-04-21 14:21:13.503', N'69', N'2025-04-21 14:21:13.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2949', N'2025-04-21 14:21:14.507', N'71', N'2025-04-21 14:21:14.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2950', N'2025-04-21 14:21:15.520', N'69', N'2025-04-21 14:21:15.590', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2951', N'2025-04-21 14:21:16.503', N'73', N'2025-04-21 14:21:16.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2952', N'2025-04-21 14:21:17.500', N'114', N'2025-04-21 14:21:17.613', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2953', N'2025-04-21 14:21:18.510', N'75', N'2025-04-21 14:21:18.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2954', N'2025-04-21 14:21:19.503', N'74', N'2025-04-21 14:21:19.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2955', N'2025-04-21 14:21:20.510', N'74', N'2025-04-21 14:21:20.583', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2956', N'2025-04-21 14:21:21.507', N'67', N'2025-04-21 14:21:21.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2957', N'2025-04-21 14:21:22.520', N'79', N'2025-04-21 14:21:22.600', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2958', N'2025-04-21 14:21:23.507', N'67', N'2025-04-21 14:21:23.573', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2959', N'2025-04-21 14:21:24.507', N'74', N'2025-04-21 14:21:24.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2960', N'2025-04-21 14:21:25.520', N'86', N'2025-04-21 14:21:25.607', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2961', N'2025-04-21 14:21:26.513', N'80', N'2025-04-21 14:21:26.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2962', N'2025-04-21 14:21:27.523', N'72', N'2025-04-21 14:21:27.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2963', N'2025-04-21 14:21:28.507', N'70', N'2025-04-21 14:21:28.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2964', N'2025-04-21 14:21:29.510', N'77', N'2025-04-21 14:21:29.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2965', N'2025-04-21 14:21:30.513', N'93', N'2025-04-21 14:21:30.607', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2966', N'2025-04-21 14:21:31.517', N'94', N'2025-04-21 14:21:31.610', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2967', N'2025-04-21 14:21:32.500', N'78', N'2025-04-21 14:21:32.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2968', N'2025-04-21 14:21:33.503', N'82', N'2025-04-21 14:21:33.587', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2969', N'2025-04-21 14:21:34.507', N'73', N'2025-04-21 14:21:34.580', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2970', N'2025-04-21 14:21:35.503', N'75', N'2025-04-21 14:21:35.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2971', N'2025-04-21 14:21:36.510', N'83', N'2025-04-21 14:21:36.593', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2972', N'2025-04-21 14:21:37.510', N'67', N'2025-04-21 14:21:37.577', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2973', N'2025-04-21 14:21:38.510', N'17275', N'2025-04-21 14:21:55.787', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2974', N'2025-04-21 14:21:55.880', N'7237', N'2025-04-21 14:22:03.120', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2975', N'2025-04-21 14:22:11.403', N'139', N'2025-04-21 14:22:11.540', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000126]的组盘信息","data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2976', N'2025-04-21 14:22:11.653', N'220', N'2025-04-21 14:22:11.873', N'{"QueryString":"","BodyData":"{\"TaskNum\":582,\"Barcode\":\"25000126\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2977', N'2025-04-21 14:22:56.383', N'9', N'2025-04-21 14:22:56.393', N'{"QueryString":"","BodyData":"{}"}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'admin', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2978', N'2025-04-21 14:23:02.577', N'56', N'2025-04-21 14:23:02.633', N'{"QueryString":"","BodyData":"{\"TaskNum\":584,\"Barcode\":\"25000480\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2979', N'2025-04-21 14:23:10.097', N'214', N'2025-04-21 14:23:10.313', N'{"QueryString":"","BodyData":"{\"UUID\":\"d1d690b9-69b8-405a-966b-215429fc5068\",\"passWord\":\"123456\",\"userName\":\"pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'admin', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2980', N'2025-04-21 14:23:21.373', N'703', N'2025-04-21 14:23:22.077', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2981', N'2025-04-21 14:23:30.020', N'72', N'2025-04-21 14:23:30.090', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":582,\"PalletCode\":\"25000126\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"001-003-001\",\"TargetAddress\":\"001-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2982', N'2025-04-21 14:23:34.453', N'1', N'2025-04-21 14:23:34.457', N'{"QueryString":"?barcode=25000134&station=K003","BodyData":"{}"}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2983', N'2025-04-21 14:23:36.773', N'67', N'2025-04-21 14:23:36.840', N'{"QueryString":"","BodyData":"{\"UUID\":\"818e0592-f763-4fa8-a701-1d07659e9cff\",\"passWord\":\"123456\",\"userName\":\"Pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.51', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2984', N'2025-04-21 14:23:44.693', N'301', N'2025-04-21 14:23:44.997', N'{"QueryString":"?barcode=25000134&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2985', N'2025-04-21 14:23:50.947', N'224', N'2025-04-21 14:23:51.170', N'{"QueryString":"?barcode=25000231&station=K002","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2986', N'2025-04-21 14:23:53.610', N'28', N'2025-04-21 14:23:53.637', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":576,\"PalletCode\":\"25000002\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2987', N'2025-04-21 14:24:15.783', N'3', N'2025-04-21 14:24:15.787', N'{"QueryString":"","BodyData":"{}"}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2988', N'2025-04-21 14:24:25.097', N'67', N'2025-04-21 14:24:25.163', N'{"QueryString":"","BodyData":"{\"UUID\":\"6e5356c6-6797-4309-a48a-e249b2606f0b\",\"passWord\":\"123456\",\"userName\":\"pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2989', N'2025-04-21 14:24:28.043', N'134', N'2025-04-21 14:24:28.180', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2990', N'2025-04-21 14:24:29.290', N'107', N'2025-04-21 14:24:29.397', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2991', N'2025-04-21 14:26:07.550', N'44', N'2025-04-21 14:26:07.593', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":574,\"PalletCode\":\"25000136\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2992', N'2025-04-21 14:26:11.927', N'27', N'2025-04-21 14:26:11.953', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":575,\"PalletCode\":\"25000263\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2993', N'2025-04-21 14:26:13.900', N'53', N'2025-04-21 14:26:13.953', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":584,\"PalletCode\":\"25000480\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K002\",\"CurrentAddress\":\"001-003-001\",\"TargetAddress\":\"001-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2994', N'2025-04-21 14:26:16.257', N'34', N'2025-04-21 14:26:16.290', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":576,\"PalletCode\":\"25000002\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2995', N'2025-04-21 14:28:22.537', N'32', N'2025-04-21 14:28:22.570', N'{"QueryString":"","BodyData":"{\"TaskNum\":585,\"Barcode\":\"25000360\",\"stationCode\":\"1002\",\"Weight\":142,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2996', N'2025-04-21 14:28:43.537', N'92', N'2025-04-21 14:28:43.630', N'{"QueryString":"","BodyData":"{\"TaskNum\":585,\"Barcode\":\"25000360\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2997', N'2025-04-21 14:37:12.440', N'93', N'2025-04-21 14:37:12.533', N'{"QueryString":"","BodyData":"{\"TaskNum\":587,\"Barcode\":\"25000134\",\"stationCode\":\"1002\",\"Weight\":158,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2998', N'2025-04-21 14:42:26.327', N'45', N'2025-04-21 14:42:26.370', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":577,\"PalletCode\":\"25000411\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'2999', N'2025-04-21 14:45:45.057', N'120', N'2025-04-21 14:45:45.177', N'{"QueryString":"","BodyData":"{\"TaskNum\":587,\"Barcode\":\"25000134\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3000', N'2025-04-21 14:46:45.020', N'90', N'2025-04-21 14:46:45.110', N'{"QueryString":"","BodyData":"{\"TaskNum\":588,\"Barcode\":\"25000231\",\"stationCode\":\"1002\",\"Weight\":160,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3001', N'2025-04-21 14:48:02.600', N'102', N'2025-04-21 14:48:02.703', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":585,\"PalletCode\":\"25000360\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K001\",\"CurrentAddress\":\"001-003-001\",\"TargetAddress\":\"001-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3002', N'2025-04-21 14:49:31.960', N'16', N'2025-04-21 14:49:31.977', N'{"QueryString":"?barcode=25000493&station=K003","BodyData":"{}"}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3003', N'2025-04-21 14:49:34.923', N'64', N'2025-04-21 14:49:34.987', N'{"QueryString":"","BodyData":"{\"UUID\":\"9ee9517d-7993-4ed8-84dc-bc67ff280bdf\",\"passWord\":\"123456\",\"userName\":\"Pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.51', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3004', N'2025-04-21 14:49:37.710', N'1', N'2025-04-21 14:49:37.710', N'{"QueryString":"?barcode=25000493&station=K003","BodyData":"{}"}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3005', N'2025-04-21 14:49:39.923', N'64', N'2025-04-21 14:49:39.987', N'{"QueryString":"","BodyData":"{\"UUID\":\"19f01ae0-ceb2-4b08-8487-a91fd4bdfdd0\",\"passWord\":\"123456\",\"userName\":\"Pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.51', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3006', N'2025-04-21 14:49:53.610', N'256', N'2025-04-21 14:49:53.863', N'{"QueryString":"?barcode=25000493&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3007', N'2025-04-21 14:50:00.127', N'234', N'2025-04-21 14:50:00.360', N'{"QueryString":"?barcode=25000430&station=K002","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3008', N'2025-04-21 14:50:04.027', N'61', N'2025-04-21 14:50:04.090', N'{"QueryString":"","BodyData":"{\"TaskNum\":588,\"Barcode\":\"25000231\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3009', N'2025-04-21 14:50:06.337', N'260', N'2025-04-21 14:50:06.597', N'{"QueryString":"?barcode=25000002&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3010', N'2025-04-21 14:50:33.790', N'88', N'2025-04-21 14:50:33.880', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":587,\"PalletCode\":\"25000134\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"001-003-001\",\"TargetAddress\":\"001-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3011', N'2025-04-21 14:52:54.743', N'74', N'2025-04-21 14:52:54.817', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":588,\"PalletCode\":\"25000231\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K002\",\"CurrentAddress\":\"001-003-001\",\"TargetAddress\":\"001-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3012', N'2025-04-21 14:54:09.263', N'80', N'2025-04-21 14:54:09.343', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":586,\"PalletCode\":\"25000031\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3013', N'2025-04-21 14:56:17.297', N'75', N'2025-04-21 14:56:17.370', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":589,\"PalletCode\":\"25000250\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3014', N'2025-04-21 14:59:02.437', N'70', N'2025-04-21 14:59:02.507', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":590,\"PalletCode\":\"25000245\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3015', N'2025-04-21 15:00:01.103', N'34', N'2025-04-21 15:00:01.137', N'{"QueryString":"","BodyData":"{\"TaskNum\":591,\"Barcode\":\"25000493\",\"stationCode\":\"1002\",\"Weight\":159,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3016', N'2025-04-21 15:00:23.010', N'101', N'2025-04-21 15:00:23.113', N'{"QueryString":"","BodyData":"{\"TaskNum\":591,\"Barcode\":\"25000493\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3017', N'2025-04-21 15:01:34.423', N'92', N'2025-04-21 15:01:34.517', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":591,\"PalletCode\":\"25000493\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"001-003-001\",\"TargetAddress\":\"001-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3018', N'2025-04-21 15:02:05.943', N'40', N'2025-04-21 15:02:05.983', N'{"QueryString":"","BodyData":"{\"TaskNum\":592,\"Barcode\":\"25000430\",\"stationCode\":\"1002\",\"Weight\":158,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3019', N'2025-04-21 15:02:27.293', N'76', N'2025-04-21 15:02:27.367', N'{"QueryString":"","BodyData":"{\"TaskNum\":592,\"Barcode\":\"25000430\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3020', N'2025-04-21 15:03:49.353', N'43', N'2025-04-21 15:03:49.397', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":592,\"PalletCode\":\"25000430\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K002\",\"CurrentAddress\":\"001-003-001\",\"TargetAddress\":\"001-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3021', N'2025-04-21 15:08:40.960', N'28', N'2025-04-21 15:08:40.987', N'{"QueryString":"","BodyData":"{\"TaskNum\":593,\"Barcode\":\"25000002\",\"stationCode\":\"1002\",\"Weight\":158,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3022', N'2025-04-21 15:09:01.923', N'95', N'2025-04-21 15:09:02.020', N'{"QueryString":"","BodyData":"{\"TaskNum\":593,\"Barcode\":\"25000002\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3023', N'2025-04-21 15:10:19.627', N'54', N'2025-04-21 15:10:19.680', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":593,\"PalletCode\":\"25000002\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K001\",\"CurrentAddress\":\"001-003-001\",\"TargetAddress\":\"001-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3024', N'2025-04-21 15:12:59.993', N'51', N'2025-04-21 15:13:00.047', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":581,\"PalletCode\":\"25000123\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"002-002-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3025', N'2025-04-21 15:17:08.990', N'100', N'2025-04-21 15:17:09.090', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":586,\"PalletCode\":\"25000031\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3026', N'2025-04-21 15:42:49.800', N'18', N'2025-04-21 15:42:49.817', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTIyMTM2OSIsIm5iZiI6IjE3NDUyMjEzNjkiLCJleHAiOiIxNzQ1MjI4NTY5IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.eRyqR27nL2sKIRGFW_Jq_cl35eksVULUByU6-L-6vXk","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3027', N'2025-04-21 15:42:49.817', N'1', N'2025-04-21 15:42:49.820', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3028', N'2025-04-21 16:20:43.913', N'103', N'2025-04-21 16:20:44.017', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"8fc0224e-6713-4683-9240-68480310878f\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3029', N'2025-04-21 16:47:04.350', N'37', N'2025-04-21 16:47:04.387', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":577,\"PalletCode\":\"25000411\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3030', N'2025-04-21 16:47:09.010', N'31', N'2025-04-21 16:47:09.040', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":581,\"PalletCode\":\"25000123\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"002-002-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3031', N'2025-04-21 16:47:12.083', N'27', N'2025-04-21 16:47:12.110', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":586,\"PalletCode\":\"25000031\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3032', N'2025-04-21 16:47:12.697', N'246', N'2025-04-21 16:47:12.943', N'{"QueryString":"?barcode=25000050&station=K003","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3033', N'2025-04-21 16:47:21.840', N'207', N'2025-04-21 16:47:22.047', N'{"QueryString":"?barcode=25000276&station=K002","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3034', N'2025-04-21 16:47:30.157', N'210', N'2025-04-21 16:47:30.367', N'{"QueryString":"?barcode=25000490&station=K001","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/InEmpty', N'192.168.10.51', N'PDA1', N'InEmpty', N'空托入库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3035', N'2025-04-21 16:54:07.623', N'67', N'2025-04-21 16:54:07.690', N'{"QueryString":"","BodyData":"{\"TaskNum\":594,\"Barcode\":\"25000050\",\"stationCode\":\"1002\",\"Weight\":158,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3036', N'2025-04-21 16:54:28.640', N'69', N'2025-04-21 16:54:28.710', N'{"QueryString":"","BodyData":"{\"TaskNum\":594,\"Barcode\":\"25000050\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3037', N'2025-04-21 16:54:31.000', N'129', N'2025-04-21 16:54:31.130', N'{"QueryString":"","BodyData":"{}"}', N'', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3038', N'2025-04-21 16:54:39.263', N'166', N'2025-04-21 16:54:39.430', N'{"QueryString":"","BodyData":"{\"UUID\":\"45cc3592-0876-43b7-a9b1-be78faacfb74\",\"passWord\":\"123456\",\"userName\":\"pda1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3039', N'2025-04-21 16:54:42.547', N'160', N'2025-04-21 16:54:42.707', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3040', N'2025-04-21 16:54:55.133', N'32', N'2025-04-21 16:54:55.167', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":589,\"PalletCode\":\"25000250\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3041', N'2025-04-21 16:57:14.283', N'71', N'2025-04-21 16:57:14.353', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":594,\"PalletCode\":\"25000050\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K003\",\"CurrentAddress\":\"001-003-001\",\"TargetAddress\":\"001-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3042', N'2025-04-21 17:00:22.667', N'41', N'2025-04-21 17:00:22.707', N'{"QueryString":"","BodyData":"{\"TaskNum\":595,\"Barcode\":\"25000276\",\"stationCode\":\"1002\",\"Weight\":156,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3043', N'2025-04-21 17:00:43.647', N'134', N'2025-04-21 17:00:43.780', N'{"QueryString":"","BodyData":"{\"TaskNum\":595,\"Barcode\":\"25000276\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3044', N'2025-04-21 17:01:30.560', N'30', N'2025-04-21 17:01:30.590', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":590,\"PalletCode\":\"25000245\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3045', N'2025-04-21 17:07:55.643', N'67', N'2025-04-21 17:07:55.710', N'{"QueryString":"","BodyData":"{\"TaskNum\":596,\"Barcode\":\"25000490\",\"stationCode\":\"1002\",\"Weight\":156,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/ConveyorLineRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3046', N'2025-04-21 17:08:18.200', N'113', N'2025-04-21 17:08:18.313', N'{"QueryString":"","BodyData":"{\"TaskNum\":596,\"Barcode\":\"25000490\",\"stationCode\":\"1004\",\"Weight\":0,\"Spec\":0}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/StackerCraneRequestInbound', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3047', N'2025-04-21 17:09:59.383', N'86', N'2025-04-21 17:09:59.470', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":595,\"PalletCode\":\"25000276\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K002\",\"CurrentAddress\":\"001-003-001\",\"TargetAddress\":\"001-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3048', N'2025-04-21 17:17:02.443', N'104', N'2025-04-21 17:17:02.547', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":596,\"PalletCode\":\"25000490\",\"RoadWay\":\"SC01\",\"TaskType\":204,\"TaskState\":235,\"SourceAddress\":\"K001\",\"CurrentAddress\":\"\",\"TargetAddress\":\"001-003-001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3049', N'2025-04-21 17:19:07.620', N'48', N'2025-04-21 17:19:07.670', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":589,\"PalletCode\":\"25000250\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3050', N'2025-04-21 17:19:10.490', N'31', N'2025-04-21 17:19:10.520', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":590,\"PalletCode\":\"25000245\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-002-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3051', N'2025-04-22 09:17:06.527', N'1408', N'2025-04-22 09:17:07.937', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"3d581921-c019-4369-a6b5-e00ca59b4f85\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3052', N'2025-04-22 11:02:47.410', N'2198', N'2025-04-22 11:02:49.607', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTI5MDk2OSIsIm5iZiI6IjE3NDUyOTA5NjkiLCJleHAiOiIxNzQ1Mjk4MTY5IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.dS8pKYZ92KXvPQ9KtyhWoKT_ITCjgtNyHgBwccdQIAM","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3053', N'2025-04-22 11:02:49.670', N'11', N'2025-04-22 11:02:49.680', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3054', N'2025-04-22 11:02:51.903', N'229', N'2025-04-22 11:02:52.133', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"86028d8e-86f1-4083-ab19-894de81ff2ed\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3055', N'2025-04-22 11:23:30.703', N'278', N'2025-04-22 11:23:30.980', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"250422\",\"orderStatus\":\"\",\"createType\":\"\",\"orderType\":\"100\",\"upperOrderNo\":\"\",\"remark\":\"\"},\"detailData\":[{\"materielCode\":\"1\",\"materielName\":\"1\",\"batchNo\":\"1T\",\"orderQuantity\":\"36\",\"elementIndex\":0}],\"delKeys\":null}"}', N'', N'1', N'http://192.168.10.88:8098/api/InboundOrder/Add', N'192.168.10.88', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3056', N'2025-04-22 11:23:50.420', N'74', N'2025-04-22 11:23:50.497', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"1\",\"orderStatus\":\"0\",\"createType\":\"0\",\"orderType\":\"100\",\"upperOrderNo\":\"\",\"remark\":\"\",\"id\":\"1052\"},\"detailData\":[{\"id\":325,\"orderId\":1052,\"materielCode\":\"1\",\"materielName\":\"1\",\"batchNo\":\"1T\",\"orderQuantity\":36,\"receiptQuantity\":0,\"overInQuantity\":0,\"orderDetailStatus\":0,\"remark\":null,\"creater\":\"admin\",\"createDate\":\"2025-04-22 11:23:30\",\"modifier\":null,\"modifyDate\":null,\"locationCode\":null,\"rowIndex\":1,\"elementIndex\":0},{\"elementIndex\":1}],\"delKeys\":null}"}', N'', N'1', N'http://192.168.10.88:8098/api/InboundOrder/update', N'192.168.10.88', N'admin', N'Update', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3057', N'2025-04-22 11:23:57.633', N'123', N'2025-04-22 11:23:57.757', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"1\",\"orderStatus\":\"0\",\"createType\":\"0\",\"orderType\":\"100\",\"upperOrderNo\":\"\",\"remark\":\"\",\"id\":\"1052\"},\"detailData\":[{\"id\":325,\"orderId\":1052,\"materielCode\":\"1\",\"materielName\":\"1\",\"batchNo\":\"1T\",\"orderQuantity\":36,\"receiptQuantity\":0,\"overInQuantity\":0,\"orderDetailStatus\":0,\"remark\":null,\"creater\":\"admin\",\"createDate\":\"2025-04-22 11:23:30\",\"modifier\":null,\"modifyDate\":null,\"locationCode\":null,\"rowIndex\":1,\"elementIndex\":0}],\"delKeys\":null}"}', N'', N'1', N'http://192.168.10.88:8098/api/InboundOrder/update', N'192.168.10.88', N'admin', N'Update', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3058', N'2025-04-22 11:24:05.547', N'85', N'2025-04-22 11:24:05.633', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"250422\",\"orderStatus\":\"0\",\"createType\":\"0\",\"orderType\":\"100\",\"upperOrderNo\":\"\",\"remark\":\"\",\"id\":\"1052\"},\"detailData\":[{\"id\":325,\"orderId\":1052,\"materielCode\":\"1\",\"materielName\":\"1\",\"batchNo\":\"1T\",\"orderQuantity\":36,\"receiptQuantity\":0,\"overInQuantity\":0,\"orderDetailStatus\":0,\"remark\":null,\"creater\":\"admin\",\"createDate\":\"2025-04-22 11:23:30\",\"modifier\":\"admin\",\"modifyDate\":\"2025-04-22 11:23:57\",\"locationCode\":null,\"rowIndex\":1,\"elementIndex\":0}],\"delKeys\":null}"}', N'', N'1', N'http://192.168.10.88:8098/api/InboundOrder/update', N'192.168.10.88', N'admin', N'Update', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3059', N'2025-04-22 11:26:00.270', N'101', N'2025-04-22 11:26:00.370', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"250422\",\"orderStatus\":\"\",\"createType\":\"\",\"orderType\":\"100\",\"upperOrderNo\":\"\",\"remark\":\"\",\"id\":\"\"},\"detailData\":[{\"materielCode\":\"1\",\"materielName\":\"1\",\"batchNo\":\"1T\",\"orderQuantity\":\"36\",\"elementIndex\":0},{\"materielCode\":\"2\",\"materielName\":\"2\",\"batchNo\":\"2T\",\"orderQuantity\":\"24\",\"elementIndex\":1},{\"materielCode\":\"3\",\"materielName\":\"3\",\"batchNo\":\"3T\",\"orderQuantity\":\"12\",\"elementIndex\":2}],\"delKeys\":null}"}', N'', N'1', N'http://192.168.10.88:8098/api/InboundOrder/Add', N'192.168.10.88', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3060', N'2025-04-22 11:26:04.783', N'133', N'2025-04-22 11:26:04.917', N'{"QueryString":"","BodyData":"[1052]"}', N'', N'1', N'http://192.168.10.88:8098/api/InboundOrder/del', N'192.168.10.88', N'admin', N'Del', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3061', N'2025-04-22 12:02:38.877', N'9250', N'2025-04-22 12:02:48.127', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000411\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"2504221T\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":599,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000411","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"250422","grade":0,"dispatchertime":"2025-04-22 12:02:47","remark":null,"creater":"System","createDate":"2025-04-22 12:02:48","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3062', N'2025-04-22 12:26:31.347', N'617', N'2025-04-22 12:26:31.963', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTI5NTk5MSIsIm5iZiI6IjE3NDUyOTU5OTEiLCJleHAiOiIxNzQ1MzAzMTkxIiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.MVKa9ahznDxKN_nnrwwXg0M7kkHC_yIqr-gNcE25gyc","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3063', N'2025-04-22 12:26:31.967', N'7', N'2025-04-22 12:26:31.973', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3064', N'2025-04-22 12:26:35.397', N'148', N'2025-04-22 12:26:35.543', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"2669e99b-f101-45a8-bfd0-63eb6ba3b837\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3065', N'2025-04-22 14:52:27.990', N'378', N'2025-04-22 14:52:28.370', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"d11a31f1-6979-4452-9104-c2b99647cce5\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3066', N'2025-04-22 14:52:48.647', N'171', N'2025-04-22 14:52:48.817', N'{"QueryString":"","BodyData":"{\"UUID\":\"3a59a0eb-7213-4fb4-b469-01ec82988669\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3067', N'2025-04-22 15:08:58.863', N'24862', N'2025-04-22 15:09:23.723', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 599,\n \"barcode\": \"25000411\",\n \"stationCode\": \"string\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":false,"code":0,"message":"未找到该站台对应的巷道,请检查基础配置信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3068', N'2025-04-22 16:04:03.900', N'8544', N'2025-04-22 16:04:12.447', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 599,\n \"barcode\": \"25000411\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3069', N'2025-04-22 16:20:01.427', N'483', N'2025-04-22 16:20:01.907', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTMxMDAwMSIsIm5iZiI6IjE3NDUzMTAwMDEiLCJleHAiOiIxNzQ1MzE3MjAxIiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.dyozGG0-Fbc3qnMoAWYOYWVc4ipC23wb01jAl9a3VAQ","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3070', N'2025-04-22 16:20:01.910', N'7', N'2025-04-22 16:20:01.917', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3071', N'2025-04-22 16:20:05.327', N'147', N'2025-04-22 16:20:05.473', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"0ab43b67-24e8-480e-a649-b6b69361df65\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3072', N'2025-04-22 16:20:27.057', N'77', N'2025-04-22 16:20:27.133', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 600,\n \"barcode\": \"25000412\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3073', N'2025-04-23 10:01:13.527', N'927', N'2025-04-23 10:01:14.453', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"b26556e1-6340-4b4c-9328-c741c656bb13\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3074', N'2025-04-23 10:06:45.933', N'202', N'2025-04-23 10:06:46.137', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 601,\n \"barcode\": \"25000413\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3075', N'2025-04-23 10:07:29.113', N'110', N'2025-04-23 10:07:29.223', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 601,\n \"barcode\": \"25000413\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":false,"code":0,"message":"托盘号[25000413]的入库任务状态不匹配","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3076', N'2025-04-23 10:07:38.153', N'102', N'2025-04-23 10:07:38.257', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 602,\n \"barcode\": \"25000414\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3077', N'2025-04-23 10:07:45.093', N'54', N'2025-04-23 10:07:45.147', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 603,\n \"barcode\": \"25000415\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3078', N'2025-04-23 10:07:53.367', N'44', N'2025-04-23 10:07:53.413', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 604,\n \"barcode\": \"25000416\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3079', N'2025-04-23 10:08:05.090', N'43', N'2025-04-23 10:08:05.133', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 605,\n \"barcode\": \"25000417\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3080', N'2025-04-23 10:08:15.087', N'51', N'2025-04-23 10:08:15.140', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 606,\n \"barcode\": \"25000418\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3081', N'2025-04-23 10:08:30.380', N'57', N'2025-04-23 10:08:30.437', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 609,\n \"barcode\": \"25000419\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3082', N'2025-04-23 10:09:08.273', N'51', N'2025-04-23 10:09:08.323', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 610,\n \"barcode\": \"25000420\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3083', N'2025-04-23 10:09:17.173', N'48', N'2025-04-23 10:09:17.220', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 611,\n \"barcode\": \"25000421\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3084', N'2025-04-23 10:09:23.387', N'51', N'2025-04-23 10:09:23.440', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 612,\n \"barcode\": \"25000422\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3085', N'2025-04-23 10:09:28.130', N'48', N'2025-04-23 10:09:28.180', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 613,\n \"barcode\": \"25000423\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3086', N'2025-04-23 10:09:33.973', N'85', N'2025-04-23 10:09:34.057', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 614,\n \"barcode\": \"25000424\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3087', N'2025-04-23 10:09:41.117', N'59', N'2025-04-23 10:09:41.177', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000425\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3088', N'2025-04-23 10:10:23.277', N'115', N'2025-04-23 10:10:23.390', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000426\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3089', N'2025-04-23 10:10:30.560', N'38', N'2025-04-23 10:10:30.600', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000427\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3090', N'2025-04-23 10:10:34.300', N'63', N'2025-04-23 10:10:34.363', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000428\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3091', N'2025-04-23 10:10:40.373', N'70', N'2025-04-23 10:10:40.443', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000429\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3092', N'2025-04-23 10:10:43.983', N'99', N'2025-04-23 10:10:44.080', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000430\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":false,"code":0,"message":"托盘[25000430],该组盘状态不可入库","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3093', N'2025-04-23 10:10:49.197', N'53', N'2025-04-23 10:10:49.250', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000431\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3094', N'2025-04-23 10:10:51.683', N'40', N'2025-04-23 10:10:51.723', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000432\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3095', N'2025-04-23 10:10:56.430', N'41', N'2025-04-23 10:10:56.470', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000433\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3096', N'2025-04-23 10:10:59.013', N'45', N'2025-04-23 10:10:59.060', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000434\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3097', N'2025-04-23 10:11:01.860', N'82', N'2025-04-23 10:11:01.943', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000435\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3098', N'2025-04-23 11:07:23.793', N'43376', N'2025-04-23 11:08:07.170', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000411\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3099', N'2025-04-23 11:08:34.477', N'94', N'2025-04-23 11:08:34.570', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000412\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3100', N'2025-04-23 11:08:52.223', N'26947', N'2025-04-23 11:09:19.170', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000413\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3101', N'2025-04-23 11:09:43.987', N'61', N'2025-04-23 11:09:44.050', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000414\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3102', N'2025-04-23 11:09:54.007', N'9378', N'2025-04-23 11:10:03.383', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000415\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3103', N'2025-04-23 11:10:23.560', N'63', N'2025-04-23 11:10:23.623', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000416\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3104', N'2025-04-23 11:12:49.647', N'172', N'2025-04-23 11:12:49.817', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000417\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3105', N'2025-04-23 11:13:06.287', N'96', N'2025-04-23 11:13:06.380', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000418\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3106', N'2025-04-23 11:13:10.187', N'71', N'2025-04-23 11:13:10.257', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000419\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3107', N'2025-04-23 11:13:13.797', N'57', N'2025-04-23 11:13:13.853', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000420\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3108', N'2025-04-23 11:13:17.860', N'70', N'2025-04-23 11:13:17.930', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000421\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3109', N'2025-04-23 11:13:22.677', N'53', N'2025-04-23 11:13:22.727', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000422\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3110', N'2025-04-23 11:13:24.930', N'49', N'2025-04-23 11:13:24.977', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000423\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3111', N'2025-04-23 11:13:27.117', N'49', N'2025-04-23 11:13:27.167', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000424\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3112', N'2025-04-23 11:13:29.390', N'47', N'2025-04-23 11:13:29.437', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000425\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3113', N'2025-04-23 11:13:31.360', N'51', N'2025-04-23 11:13:31.410', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000426\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3114', N'2025-04-23 11:13:33.313', N'45', N'2025-04-23 11:13:33.360', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000427\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3115', N'2025-04-23 11:13:35.457', N'46', N'2025-04-23 11:13:35.500', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000428\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3116', N'2025-04-23 11:13:37.833', N'45', N'2025-04-23 11:13:37.877', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000429\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3117', N'2025-04-23 11:13:40.540', N'92', N'2025-04-23 11:13:40.633', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000430\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":false,"code":0,"message":"托盘[25000430],该组盘状态不可入库","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3118', N'2025-04-23 11:13:42.733', N'46', N'2025-04-23 11:13:42.780', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000431\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3119', N'2025-04-23 11:13:45.183', N'46', N'2025-04-23 11:13:45.230', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000432\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3120', N'2025-04-23 11:13:47.803', N'56', N'2025-04-23 11:13:47.857', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000433\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3121', N'2025-04-23 11:13:50.343', N'113', N'2025-04-23 11:13:50.457', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000434\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3122', N'2025-04-23 11:13:53.290', N'40', N'2025-04-23 11:13:53.330', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000435\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3123', N'2025-04-23 11:14:31.730', N'83', N'2025-04-23 11:14:31.813', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000430\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":false,"code":0,"message":"托盘[25000430],该组盘状态不可入库","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3124', N'2025-04-23 11:17:46.953', N'9809', N'2025-04-23 11:17:56.763', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000437\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3125', N'2025-04-23 11:18:07.413', N'73', N'2025-04-23 11:18:07.483', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000438\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3126', N'2025-04-23 11:18:14.650', N'54', N'2025-04-23 11:18:14.703', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000439\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":true,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3127', N'2025-04-23 11:18:37.273', N'116', N'2025-04-23 11:18:37.390', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000440\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3128', N'2025-04-23 11:20:38.990', N'129', N'2025-04-23 11:20:39.120', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000440\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":false,"code":0,"message":"托盘号[25000440]的入库任务状态不匹配","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3129', N'2025-04-23 11:21:12.237', N'48747', N'2025-04-23 11:22:00.980', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000440\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3130', N'2025-04-23 11:22:03.903', N'1920', N'2025-04-23 11:22:05.823', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTM3ODUyNSIsIm5iZiI6IjE3NDUzNzg1MjUiLCJleHAiOiIxNzQ1Mzg1NzI1IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.ig5LBb_Iqfudz1HkU3WcKCAHRB1p9uud3ghxVIWcPeU","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3131', N'2025-04-23 11:22:05.827', N'7', N'2025-04-23 11:22:05.833', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3132', N'2025-04-23 11:22:08.560', N'158', N'2025-04-23 11:22:08.720', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"c857f6a5-102f-4595-b040-501380f04509\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3133', N'2025-04-23 11:31:47.700', N'44477', N'2025-04-23 11:32:32.177', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000441\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3134', N'2025-04-23 11:32:38.877', N'105', N'2025-04-23 11:32:38.983', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000442\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3135', N'2025-04-23 11:32:44.110', N'80', N'2025-04-23 11:32:44.190', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000443\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3136', N'2025-04-23 11:32:50.447', N'97', N'2025-04-23 11:32:50.543', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000444\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3137', N'2025-04-23 11:32:53.423', N'70', N'2025-04-23 11:32:53.493', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000445\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3138', N'2025-04-23 11:32:56.180', N'62', N'2025-04-23 11:32:56.240', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000446\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3139', N'2025-04-23 11:32:59.487', N'87', N'2025-04-23 11:32:59.577', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000447\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000447]的入库任务","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3140', N'2025-04-23 11:33:42.250', N'59', N'2025-04-23 11:33:42.307', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000447\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3141', N'2025-04-23 11:33:48.213', N'96', N'2025-04-23 11:33:48.307', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000448\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000448]的入库任务","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3142', N'2025-04-23 11:36:46.027', N'71', N'2025-04-23 11:36:46.097', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000411\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3143', N'2025-04-23 11:36:52.300', N'79', N'2025-04-23 11:36:52.380', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000412\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3144', N'2025-04-23 11:36:55.537', N'63', N'2025-04-23 11:36:55.600', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000413\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3145', N'2025-04-23 11:37:29.617', N'76', N'2025-04-23 11:37:29.693', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000414\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":true,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3146', N'2025-04-23 11:53:03.670', N'299', N'2025-04-23 11:53:03.967', N'{"QueryString":"","BodyData":"{\"UUID\":\"d7908d4f-fec4-4294-b05f-959353776a5f\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'admin', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3147', N'2025-04-23 11:53:06.680', N'2931', N'2025-04-23 11:53:09.610', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托出库任务超时","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3148', N'2025-04-23 11:53:14.017', N'2624', N'2025-04-23 11:53:16.640', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"向WCS下发空托出库任务超时","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3149', N'2025-04-23 12:44:34.747', N'18', N'2025-04-23 12:44:34.763', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTM4MzQ3NCIsIm5iZiI6IjE3NDUzODM0NzQiLCJleHAiOiIxNzQ1MzkwNjc0IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.4zjSX4oS8UxON9DwRUba-IM71T4lskEt8uoFExLVPE8","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3150', N'2025-04-23 12:44:34.773', N'3', N'2025-04-23 12:44:34.777', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3151', N'2025-04-23 12:44:38.463', N'72', N'2025-04-23 12:44:38.533', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"3e6fc6ff-1633-45d2-ac1b-d183a6ca14dd\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3152', N'2025-04-23 14:01:04.197', N'125', N'2025-04-23 14:01:04.323', N'{"QueryString":"","BodyData":"{}"}', N'', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3153', N'2025-04-23 14:01:10.853', N'160', N'2025-04-23 14:01:11.013', N'{"QueryString":"","BodyData":"{\"UUID\":\"10c82f29-ff61-4503-ac12-75db540b71f8\",\"passWord\":\"123456\",\"userName\":\"PDA1\",\"verificationCode\":\"1234\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'PDA1', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3154', N'2025-04-23 14:01:14.193', N'325', N'2025-04-23 14:01:14.517', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3155', N'2025-04-23 14:04:20.290', N'224', N'2025-04-23 14:04:20.513', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3156', N'2025-04-23 14:04:21.640', N'143', N'2025-04-23 14:04:21.783', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3157', N'2025-04-23 14:04:22.860', N'139', N'2025-04-23 14:04:22.997', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3158', N'2025-04-23 14:04:23.967', N'146', N'2025-04-23 14:04:24.113', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3159', N'2025-04-23 14:04:25.447', N'148', N'2025-04-23 14:04:25.593', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3160', N'2025-04-23 14:04:26.607', N'126', N'2025-04-23 14:04:26.733', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3161', N'2025-04-23 14:04:27.717', N'143', N'2025-04-23 14:04:27.860', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3162', N'2025-04-23 14:04:28.970', N'123', N'2025-04-23 14:04:29.093', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3163', N'2025-04-23 14:04:30.110', N'140', N'2025-04-23 14:04:30.250', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3164', N'2025-04-23 14:04:31.183', N'125', N'2025-04-23 14:04:31.310', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3165', N'2025-04-23 14:04:32.217', N'174', N'2025-04-23 14:04:32.390', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3166', N'2025-04-23 14:04:33.483', N'126', N'2025-04-23 14:04:33.610', N'{"QueryString":"","BodyData":"{}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3167', N'2025-04-23 14:04:34.877', N'98', N'2025-04-23 14:04:34.973', N'{"QueryString":"","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到空托库存","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/PDA/OutEmpty', N'192.168.10.88', N'PDA1', N'OutEmpty', N'空托出库', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3168', N'2025-04-23 14:04:38.053', N'23', N'2025-04-23 14:04:38.077', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTM4ODI3OCIsIm5iZiI6IjE3NDUzODgyNzgiLCJleHAiOiIxNzQ1Mzk1NDc4IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.fM9oJVgvIvfBQU6mKUlK-TLcOo7VGPw2oBdcSYvO5cw","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3169', N'2025-04-23 14:04:38.080', N'1', N'2025-04-23 14:04:38.080', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3170', N'2025-04-23 14:04:42.870', N'82', N'2025-04-23 14:04:42.950', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"2e79ce84-219d-438d-bf8c-bd4aba9be3ad\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3171', N'2025-04-23 14:06:14.070', N'183', N'2025-04-23 14:06:14.253', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":602,\"PalletCode\":\"25000490\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3172', N'2025-04-23 14:08:11.060', N'46', N'2025-04-23 14:08:11.103', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":603,\"PalletCode\":\"25000276\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3173', N'2025-04-23 14:10:12.070', N'125', N'2025-04-23 14:10:12.197', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":604,\"PalletCode\":\"25000050\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3174', N'2025-04-23 14:12:17.000', N'79', N'2025-04-23 14:12:17.080', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":605,\"PalletCode\":\"25000002\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3175', N'2025-04-23 14:23:52.950', N'123', N'2025-04-23 14:23:53.073', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":606,\"PalletCode\":\"25000430\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3176', N'2025-04-23 14:26:47.387', N'69', N'2025-04-23 14:26:47.453', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":602,\"PalletCode\":\"25000490\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3177', N'2025-04-23 14:32:16.937', N'58', N'2025-04-23 14:32:16.997', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":607,\"PalletCode\":\"25000493\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3178', N'2025-04-23 14:33:47.207', N'41', N'2025-04-23 14:33:47.247', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":603,\"PalletCode\":\"25000276\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3179', N'2025-04-23 14:37:10.907', N'86', N'2025-04-23 14:37:10.993', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":608,\"PalletCode\":\"25000231\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3180', N'2025-04-23 14:38:35.293', N'44', N'2025-04-23 14:38:35.337', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":604,\"PalletCode\":\"25000050\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3181', N'2025-04-23 14:39:23.673', N'86', N'2025-04-23 14:39:23.757', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":602,\"PalletCode\":\"25000490\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3182', N'2025-04-23 14:39:28.283', N'28', N'2025-04-23 14:39:28.313', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":603,\"PalletCode\":\"25000276\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3183', N'2025-04-23 14:39:31.373', N'29', N'2025-04-23 14:39:31.400', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":604,\"PalletCode\":\"25000050\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3184', N'2025-04-23 14:43:10.903', N'89', N'2025-04-23 14:43:10.990', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":609,\"PalletCode\":\"25000134\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3185', N'2025-04-23 14:44:46.130', N'59', N'2025-04-23 14:44:46.190', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":605,\"PalletCode\":\"25000002\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3186', N'2025-04-23 14:48:06.937', N'90', N'2025-04-23 14:48:07.027', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":610,\"PalletCode\":\"25000360\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3187', N'2025-04-23 14:49:33.540', N'43', N'2025-04-23 14:49:33.583', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":606,\"PalletCode\":\"25000430\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3188', N'2025-04-23 14:50:23.027', N'46', N'2025-04-23 14:50:23.073', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":605,\"PalletCode\":\"25000002\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3189', N'2025-04-23 14:50:26.607', N'32', N'2025-04-23 14:50:26.640', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":606,\"PalletCode\":\"25000430\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3190', N'2025-04-23 14:52:53.937', N'106', N'2025-04-23 14:52:54.040', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":611,\"PalletCode\":\"25000480\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3191', N'2025-04-23 14:54:07.447', N'63', N'2025-04-23 14:54:07.510', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":607,\"PalletCode\":\"25000493\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3192', N'2025-04-23 14:57:36.910', N'83', N'2025-04-23 14:57:36.993', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":612,\"PalletCode\":\"25000126\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3193', N'2025-04-23 14:58:46.830', N'45', N'2025-04-23 14:58:46.873', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":608,\"PalletCode\":\"25000231\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3194', N'2025-04-23 15:02:20.923', N'99', N'2025-04-23 15:02:21.023', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":613,\"PalletCode\":\"25000370\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3195', N'2025-04-23 15:03:35.053', N'62', N'2025-04-23 15:03:35.113', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":609,\"PalletCode\":\"25000134\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3196', N'2025-04-23 15:19:46.893', N'49', N'2025-04-23 15:19:46.943', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":608,\"PalletCode\":\"25000231\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3197', N'2025-04-23 15:19:49.877', N'32', N'2025-04-23 15:19:49.910', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":609,\"PalletCode\":\"25000134\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3198', N'2025-04-23 15:19:52.487', N'34', N'2025-04-23 15:19:52.520', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":607,\"PalletCode\":\"25000493\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3199', N'2025-04-23 15:23:37.870', N'128', N'2025-04-23 15:23:37.997', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":614,\"PalletCode\":\"25000070\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":125,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"1005\",\"TargetAddress\":\"1008\",\"NextAddress\":\"1008\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3200', N'2025-04-23 15:24:46.630', N'50', N'2025-04-23 15:24:46.680', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":610,\"PalletCode\":\"25000360\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3201', N'2025-04-23 15:29:37.490', N'67', N'2025-04-23 15:29:37.557', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":611,\"PalletCode\":\"25000480\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3202', N'2025-04-23 15:34:25.867', N'40', N'2025-04-23 15:34:25.907', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":612,\"PalletCode\":\"25000126\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3203', N'2025-04-23 15:57:08.127', N'83', N'2025-04-23 15:57:08.207', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":610,\"PalletCode\":\"25000360\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3204', N'2025-04-23 15:57:10.987', N'36', N'2025-04-23 15:57:11.023', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":611,\"PalletCode\":\"25000480\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3205', N'2025-04-23 15:57:13.553', N'26', N'2025-04-23 15:57:13.580', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":612,\"PalletCode\":\"25000126\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D003\",\"TargetAddress\":\"D003\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3206', N'2025-04-23 16:02:05.970', N'70', N'2025-04-23 16:02:06.040', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":613,\"PalletCode\":\"25000370\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3207', N'2025-04-23 16:07:04.983', N'61', N'2025-04-23 16:07:05.043', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":614,\"PalletCode\":\"25000070\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":150,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3208', N'2025-04-23 16:18:41.340', N'59', N'2025-04-23 16:18:41.397', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":613,\"PalletCode\":\"25000370\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D001\",\"TargetAddress\":\"D001\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3209', N'2025-04-23 16:18:44.100', N'27', N'2025-04-23 16:18:44.127', N'{"QueryString":"","BodyData":"{\"Id\":0,\"TaskNum\":614,\"PalletCode\":\"25000070\",\"RoadWay\":\"SC01\",\"TaskType\":104,\"TaskState\":190,\"SourceAddress\":\"001-003-001\",\"CurrentAddress\":\"D002\",\"TargetAddress\":\"D002\",\"NextAddress\":\"\",\"SourceIsPickPlace\":false,\"TargetIsPickPlace\":false,\"Grade\":0}"}', N'{"status":false,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/WCS/UpdateTaskStatus', N'127.0.0.1', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3210', N'2025-04-23 16:21:00.983', N'286', N'2025-04-23 16:21:01.267', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"280eb6af-dfa1-4b48-b036-f09326547524\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3211', N'2025-04-23 17:04:25.430', N'18778', N'2025-04-23 17:04:44.207', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000026\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3212', N'2025-04-23 17:04:59.627', N'78', N'2025-04-23 17:04:59.707', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000027\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3213', N'2025-04-23 17:05:03.363', N'73', N'2025-04-23 17:05:03.437', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000028\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3214', N'2025-04-23 17:05:08.687', N'47', N'2025-04-23 17:05:08.733', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000029\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3215', N'2025-04-23 17:05:12.650', N'68', N'2025-04-23 17:05:12.717', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000030\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3216', N'2025-04-23 17:05:14.947', N'81', N'2025-04-23 17:05:15.027', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000031\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3217', N'2025-04-23 17:05:17.490', N'53', N'2025-04-23 17:05:17.543', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000032\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3218', N'2025-04-23 17:05:19.757', N'78', N'2025-04-23 17:05:19.833', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000033\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3219', N'2025-04-23 17:05:21.933', N'62', N'2025-04-23 17:05:21.997', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000034\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3220', N'2025-04-23 17:05:24.133', N'67', N'2025-04-23 17:05:24.200', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000035\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3221', N'2025-04-23 17:05:26.493', N'44', N'2025-04-23 17:05:26.537', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000036\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3222', N'2025-04-23 17:05:48.053', N'71', N'2025-04-23 17:05:48.127', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000037\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":true,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3223', N'2025-04-23 17:06:51.883', N'70', N'2025-04-23 17:06:51.953', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000411\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3224', N'2025-04-23 17:07:04.860', N'62', N'2025-04-23 17:07:04.923', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000412\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3225', N'2025-04-23 17:07:07.633', N'46', N'2025-04-23 17:07:07.680', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000413\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3226', N'2025-04-23 17:07:09.777', N'89', N'2025-04-23 17:07:09.867', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000414\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3227', N'2025-04-23 17:07:11.950', N'72', N'2025-04-23 17:07:12.020', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000415\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3228', N'2025-04-23 17:07:14.880', N'92', N'2025-04-23 17:07:14.973', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000416\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3229', N'2025-04-23 17:07:17.090', N'51', N'2025-04-23 17:07:17.143', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000417\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3230', N'2025-04-23 17:07:18.987', N'77', N'2025-04-23 17:07:19.063', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000418\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3231', N'2025-04-23 17:07:21.530', N'85', N'2025-04-23 17:07:21.613', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000419\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3232', N'2025-04-23 17:07:27.570', N'52', N'2025-04-23 17:07:27.623', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000420\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3233', N'2025-04-23 17:07:29.783', N'73', N'2025-04-23 17:07:29.857', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000421\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3234', N'2025-04-23 17:07:31.900', N'62', N'2025-04-23 17:07:31.963', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000422\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3235', N'2025-04-23 17:07:34.037', N'74', N'2025-04-23 17:07:34.113', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000423\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3236', N'2025-04-23 17:07:36.233', N'45', N'2025-04-23 17:07:36.280', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000424\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3237', N'2025-04-23 17:07:38.943', N'83', N'2025-04-23 17:07:39.027', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000425\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3238', N'2025-04-23 17:07:41.803', N'53', N'2025-04-23 17:07:41.857', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000426\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3239', N'2025-04-23 17:07:44.183', N'69', N'2025-04-23 17:07:44.250', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000427\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3240', N'2025-04-23 17:07:46.817', N'46', N'2025-04-23 17:07:46.863', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000428\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3241', N'2025-04-23 17:07:49.120', N'60', N'2025-04-23 17:07:49.180', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000429\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3242', N'2025-04-23 17:07:52.927', N'92', N'2025-04-23 17:07:53.020', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000430\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000430]的入库任务","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3243', N'2025-04-23 17:07:55.530', N'79', N'2025-04-23 17:07:55.610', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000431\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3244', N'2025-04-23 17:07:58.550', N'67', N'2025-04-23 17:07:58.617', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000432\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3245', N'2025-04-23 17:08:00.587', N'65', N'2025-04-23 17:08:00.650', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000433\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3246', N'2025-04-23 17:08:03.737', N'53', N'2025-04-23 17:08:03.790', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000434\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3247', N'2025-04-23 17:08:06.487', N'71', N'2025-04-23 17:08:06.557', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000435\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":true,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3248', N'2025-04-23 17:08:37.320', N'76', N'2025-04-23 17:08:37.393', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000430\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3249', N'2025-04-23 17:10:32.423', N'81', N'2025-04-23 17:10:32.503', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000436\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3250', N'2025-04-23 17:10:37.863', N'44', N'2025-04-23 17:10:37.907', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000437\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3251', N'2025-04-23 17:10:41.443', N'69', N'2025-04-23 17:10:41.513', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000438\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3252', N'2025-04-23 17:10:44.727', N'49', N'2025-04-23 17:10:44.777', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000439\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3253', N'2025-04-23 17:10:48.123', N'64', N'2025-04-23 17:10:48.190', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000440\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3254', N'2025-04-23 17:10:51.590', N'50', N'2025-04-23 17:10:51.640', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000441\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3255', N'2025-04-23 17:10:53.840', N'48', N'2025-04-23 17:10:53.890', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000442\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3256', N'2025-04-23 17:10:56.160', N'59', N'2025-04-23 17:10:56.220', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000443\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3257', N'2025-04-23 17:10:58.193', N'92', N'2025-04-23 17:10:58.283', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000444\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3258', N'2025-04-23 17:11:00.813', N'65', N'2025-04-23 17:11:00.880', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000445\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3259', N'2025-04-23 17:11:05.733', N'73', N'2025-04-23 17:11:05.807', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000446\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":true,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3260', N'2025-04-23 17:11:52.677', N'69', N'2025-04-23 17:11:52.747', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000002\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3261', N'2025-04-23 17:12:10.080', N'85', N'2025-04-23 17:12:10.167', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000003\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3262', N'2025-04-23 17:12:12.270', N'61', N'2025-04-23 17:12:12.330', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000004\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3263', N'2025-04-23 17:12:14.967', N'58', N'2025-04-23 17:12:15.023', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000005\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3264', N'2025-04-23 17:12:16.800', N'66', N'2025-04-23 17:12:16.867', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000006\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3265', N'2025-04-23 17:12:19.310', N'74', N'2025-04-23 17:12:19.387', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000007\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3266', N'2025-04-23 17:12:21.147', N'47', N'2025-04-23 17:12:21.193', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000008\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3267', N'2025-04-23 17:12:24.337', N'66', N'2025-04-23 17:12:24.403', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000009\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3268', N'2025-04-23 17:12:27.760', N'55', N'2025-04-23 17:12:27.817', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000010\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3269', N'2025-04-23 17:12:29.713', N'72', N'2025-04-23 17:12:29.783', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000011\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3270', N'2025-04-23 17:12:31.977', N'56', N'2025-04-23 17:12:32.033', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000012\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3271', N'2025-04-23 17:12:34.490', N'64', N'2025-04-23 17:12:34.557', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000013\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3272', N'2025-04-23 17:12:40.260', N'70', N'2025-04-23 17:12:40.330', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000014\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3273', N'2025-04-23 17:12:43.013', N'90', N'2025-04-23 17:12:43.103', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000015\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3274', N'2025-04-23 17:12:45.297', N'54', N'2025-04-23 17:12:45.350', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000016\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3275', N'2025-04-23 17:12:47.927', N'61', N'2025-04-23 17:12:47.987', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000017\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3276', N'2025-04-23 17:12:51.150', N'45', N'2025-04-23 17:12:51.197', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000018\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3277', N'2025-04-23 17:12:53.253', N'68', N'2025-04-23 17:12:53.323', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000019\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3278', N'2025-04-23 17:12:56.453', N'44', N'2025-04-23 17:12:56.497', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000020\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3279', N'2025-04-23 17:12:59.010', N'65', N'2025-04-23 17:12:59.077', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000021\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3280', N'2025-04-23 17:13:01.163', N'53', N'2025-04-23 17:13:01.217', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000022\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3281', N'2025-04-23 17:13:03.297', N'65', N'2025-04-23 17:13:03.360', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000023\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3282', N'2025-04-23 17:13:11.903', N'59', N'2025-04-23 17:13:11.963', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000024\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3283', N'2025-04-23 17:13:14.517', N'71', N'2025-04-23 17:13:14.587', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 615,\n \"barcode\": \"25000025\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":true,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3284', N'2025-04-24 10:18:21.367', N'1131', N'2025-04-24 10:18:22.497', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"774f9b64-0baa-4eb9-819f-a7e22aa39184\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3285', N'2025-04-24 10:24:20.083', N'266', N'2025-04-24 10:24:20.350', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"250424\",\"orderStatus\":\"\",\"createType\":\"\",\"orderType\":\"100\",\"upperOrderNo\":\"\",\"remark\":\"\",\"id\":\"\"},\"detailData\":[{\"materielCode\":\"1\",\"materielName\":\"低钙腹膜透析液(乳酸盐-G1.5%)\",\"batchNo\":\"1T\",\"orderQuantity\":\"10\",\"elementIndex\":0},{\"materielCode\":\"2\",\"materielName\":\"2\",\"batchNo\":\"2T1\",\"orderQuantity\":\"12\",\"elementIndex\":1},{\"materielCode\":\"2\",\"materielName\":\"2\",\"batchNo\":\"2T2\",\"orderQuantity\":\"12\",\"elementIndex\":2}],\"delKeys\":null}"}', N'', N'1', N'http://192.168.10.88:8098/api/InboundOrder/Add', N'192.168.10.88', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3286', N'2025-04-24 10:24:46.137', N'135198', N'2025-04-24 10:27:01.337', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000001\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504233T1\",\n \"traytype\": 4\n}"}', N'{"status":false,"code":0,"message":"未找到批号为【250423】的入库单","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3287', N'2025-04-24 10:35:14.503', N'29109', N'2025-04-24 10:35:43.610', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000001\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":false,"code":0,"message":"柜号【1T1】可组盘数量不足","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3288', N'2025-04-24 10:36:19.097', N'1752', N'2025-04-24 10:36:20.847', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000001\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":false,"code":0,"message":"批号【250422】的柜号【1T1】可组盘数量不足","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3289', N'2025-04-24 10:42:19.137', N'32357', N'2025-04-24 10:42:51.493', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000001\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":616,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000001","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T1","grade":0,"dispatchertime":"2025-04-24 10:42:42","remark":null,"creater":"System","createDate":"2025-04-24 10:42:49","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3290', N'2025-04-24 10:45:26.540', N'3302', N'2025-04-24 10:45:29.843', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000002\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":617,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000002","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T1","grade":0,"dispatchertime":"2025-04-24 10:45:29","remark":null,"creater":"System","createDate":"2025-04-24 10:45:29","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3291', N'2025-04-24 10:45:35.850', N'72', N'2025-04-24 10:45:35.920', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000003\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":618,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000003","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T1","grade":0,"dispatchertime":"2025-04-24 10:45:35","remark":null,"creater":"System","createDate":"2025-04-24 10:45:35","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3292', N'2025-04-24 10:45:38.383', N'78', N'2025-04-24 10:45:38.463', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000004\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":619,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000004","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T1","grade":0,"dispatchertime":"2025-04-24 10:45:38","remark":null,"creater":"System","createDate":"2025-04-24 10:45:38","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3293', N'2025-04-24 10:45:40.480', N'77', N'2025-04-24 10:45:40.560', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000005\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":620,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000005","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T1","grade":0,"dispatchertime":"2025-04-24 10:45:40","remark":null,"creater":"System","createDate":"2025-04-24 10:45:40","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3294', N'2025-04-24 10:45:43.190', N'74', N'2025-04-24 10:45:43.263', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000006\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":621,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000006","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T1","grade":0,"dispatchertime":"2025-04-24 10:45:43","remark":null,"creater":"System","createDate":"2025-04-24 10:45:43","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3295', N'2025-04-24 10:45:46.170', N'88', N'2025-04-24 10:45:46.257', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000007\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":622,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000007","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T1","grade":0,"dispatchertime":"2025-04-24 10:45:46","remark":null,"creater":"System","createDate":"2025-04-24 10:45:46","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3296', N'2025-04-24 10:45:48.370', N'71', N'2025-04-24 10:45:48.440', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000008\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":623,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000008","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T1","grade":0,"dispatchertime":"2025-04-24 10:45:48","remark":null,"creater":"System","createDate":"2025-04-24 10:45:48","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3297', N'2025-04-24 10:45:51.367', N'70', N'2025-04-24 10:45:51.437', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000009\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":624,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000009","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T1","grade":0,"dispatchertime":"2025-04-24 10:45:51","remark":null,"creater":"System","createDate":"2025-04-24 10:45:51","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3298', N'2025-04-24 10:45:55.040', N'80', N'2025-04-24 10:45:55.120', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000010\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":625,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000010","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T1","grade":0,"dispatchertime":"2025-04-24 10:45:55","remark":null,"creater":"System","createDate":"2025-04-24 10:45:55","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3299', N'2025-04-24 10:45:57.350', N'71', N'2025-04-24 10:45:57.420', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000011\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":626,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000011","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T1","grade":0,"dispatchertime":"2025-04-24 10:45:57","remark":null,"creater":"System","createDate":"2025-04-24 10:45:57","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3300', N'2025-04-24 10:46:02.830', N'67', N'2025-04-24 10:46:02.897', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000012\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":627,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000012","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T1","grade":0,"dispatchertime":"2025-04-24 10:46:02","remark":null,"creater":"System","createDate":"2025-04-24 10:46:02","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3301', N'2025-04-24 10:46:17.837', N'91', N'2025-04-24 10:46:17.930', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000013\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T1\",\n \"traytype\": 4\n}"}', N'{"status":false,"code":0,"message":"批号【250422】的柜号【1T1】可组盘数量不足","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3302', N'2025-04-24 10:46:39.130', N'103', N'2025-04-24 10:46:39.233', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000013\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":628,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000013","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T2","grade":0,"dispatchertime":"2025-04-24 10:46:39","remark":null,"creater":"System","createDate":"2025-04-24 10:46:39","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3303', N'2025-04-24 10:46:44.853', N'80', N'2025-04-24 10:46:44.933', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000014\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":629,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000014","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T2","grade":0,"dispatchertime":"2025-04-24 10:46:44","remark":null,"creater":"System","createDate":"2025-04-24 10:46:44","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3304', N'2025-04-24 10:46:48.517', N'63', N'2025-04-24 10:46:48.580', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000015\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":630,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000015","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T2","grade":0,"dispatchertime":"2025-04-24 10:46:48","remark":null,"creater":"System","createDate":"2025-04-24 10:46:48","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3305', N'2025-04-24 10:46:51.033', N'67', N'2025-04-24 10:46:51.100', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000016\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":631,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000016","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T2","grade":0,"dispatchertime":"2025-04-24 10:46:51","remark":null,"creater":"System","createDate":"2025-04-24 10:46:51","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3306', N'2025-04-24 10:46:55.270', N'99', N'2025-04-24 10:46:55.370', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000017\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":632,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000017","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T2","grade":0,"dispatchertime":"2025-04-24 10:46:55","remark":null,"creater":"System","createDate":"2025-04-24 10:46:55","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3307', N'2025-04-24 10:46:57.933', N'63', N'2025-04-24 10:46:57.997', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000018\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":633,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000018","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T2","grade":0,"dispatchertime":"2025-04-24 10:46:57","remark":null,"creater":"System","createDate":"2025-04-24 10:46:57","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3308', N'2025-04-24 10:47:01.213', N'83', N'2025-04-24 10:47:01.297', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000019\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":634,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000019","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T2","grade":0,"dispatchertime":"2025-04-24 10:47:01","remark":null,"creater":"System","createDate":"2025-04-24 10:47:01","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3309', N'2025-04-24 10:47:05.137', N'66', N'2025-04-24 10:47:05.203', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000020\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":635,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000020","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T2","grade":0,"dispatchertime":"2025-04-24 10:47:05","remark":null,"creater":"System","createDate":"2025-04-24 10:47:05","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3310', N'2025-04-24 10:47:07.433', N'68', N'2025-04-24 10:47:07.503', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000021\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":636,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000021","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T2","grade":0,"dispatchertime":"2025-04-24 10:47:07","remark":null,"creater":"System","createDate":"2025-04-24 10:47:07","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3311', N'2025-04-24 10:47:09.850', N'80', N'2025-04-24 10:47:09.930', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000022\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":637,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000022","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T2","grade":0,"dispatchertime":"2025-04-24 10:47:09","remark":null,"creater":"System","createDate":"2025-04-24 10:47:09","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3312', N'2025-04-24 10:47:13.183', N'66', N'2025-04-24 10:47:13.250', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000023\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":638,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000023","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T2","grade":0,"dispatchertime":"2025-04-24 10:47:13","remark":null,"creater":"System","createDate":"2025-04-24 10:47:13","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3313', N'2025-04-24 10:47:15.757', N'47', N'2025-04-24 10:47:15.803', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000024\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":639,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000024","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T2","grade":0,"dispatchertime":"2025-04-24 10:47:15","remark":null,"creater":"System","createDate":"2025-04-24 10:47:15","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3314', N'2025-04-24 10:47:18.843', N'93', N'2025-04-24 10:47:18.937', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000025\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T2\",\n \"traytype\": 4\n}"}', N'{"status":false,"code":0,"message":"批号【250422】的柜号【1T2】可组盘数量不足","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3315', N'2025-04-24 11:02:58.233', N'66', N'2025-04-24 11:02:58.300', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000025\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T3\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":640,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000025","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T3","grade":0,"dispatchertime":"2025-04-24 11:02:58","remark":null,"creater":"System","createDate":"2025-04-24 11:02:58","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3316', N'2025-04-24 11:03:01.980', N'49', N'2025-04-24 11:03:02.027', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000026\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T3\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":641,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000026","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T3","grade":0,"dispatchertime":"2025-04-24 11:03:02","remark":null,"creater":"System","createDate":"2025-04-24 11:03:02","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3317', N'2025-04-24 11:03:04.350', N'65', N'2025-04-24 11:03:04.417', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000027\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T3\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":642,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000027","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T3","grade":0,"dispatchertime":"2025-04-24 11:03:04","remark":null,"creater":"System","createDate":"2025-04-24 11:03:04","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3318', N'2025-04-24 11:03:07.960', N'49', N'2025-04-24 11:03:08.010', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000028\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T3\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":643,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000028","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T3","grade":0,"dispatchertime":"2025-04-24 11:03:07","remark":null,"creater":"System","createDate":"2025-04-24 11:03:08","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3319', N'2025-04-24 11:03:11.393', N'99', N'2025-04-24 11:03:11.493', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000029\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T3\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":644,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000029","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T3","grade":0,"dispatchertime":"2025-04-24 11:03:11","remark":null,"creater":"System","createDate":"2025-04-24 11:03:11","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3320', N'2025-04-24 11:03:14.557', N'74', N'2025-04-24 11:03:14.630', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000030\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T3\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":645,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000030","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T3","grade":0,"dispatchertime":"2025-04-24 11:03:14","remark":null,"creater":"System","createDate":"2025-04-24 11:03:14","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3321', N'2025-04-24 11:03:17.293', N'62', N'2025-04-24 11:03:17.357', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000031\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T3\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":646,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000031","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T3","grade":0,"dispatchertime":"2025-04-24 11:03:17","remark":null,"creater":"System","createDate":"2025-04-24 11:03:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3322', N'2025-04-24 11:03:20.567', N'55', N'2025-04-24 11:03:20.623', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000032\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T3\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":647,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000032","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T3","grade":0,"dispatchertime":"2025-04-24 11:03:20","remark":null,"creater":"System","createDate":"2025-04-24 11:03:20","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3323', N'2025-04-24 11:03:23.047', N'63', N'2025-04-24 11:03:23.110', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000033\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T3\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":648,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000033","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T3","grade":0,"dispatchertime":"2025-04-24 11:03:23","remark":null,"creater":"System","createDate":"2025-04-24 11:03:23","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3324', N'2025-04-24 11:03:25.597', N'46', N'2025-04-24 11:03:25.640', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000034\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T3\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":649,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000034","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T3","grade":0,"dispatchertime":"2025-04-24 11:03:25","remark":null,"creater":"System","createDate":"2025-04-24 11:03:25","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3325', N'2025-04-24 11:03:28.323', N'63', N'2025-04-24 11:03:28.387', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000035\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T3\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":650,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000035","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T3","grade":0,"dispatchertime":"2025-04-24 11:03:28","remark":null,"creater":"System","createDate":"2025-04-24 11:03:28","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3326', N'2025-04-24 11:03:31.447', N'52', N'2025-04-24 11:03:31.500', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000036\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T3\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":651,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000036","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504221T3","grade":0,"dispatchertime":"2025-04-24 11:03:31","remark":null,"creater":"System","createDate":"2025-04-24 11:03:31","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3327', N'2025-04-24 11:03:37.667', N'90', N'2025-04-24 11:03:37.757', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000037\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T3\",\n \"traytype\": 4\n}"}', N'{"status":false,"code":0,"message":"批号【250422】的柜号【1T3】可组盘数量不足","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3328', N'2025-04-24 11:18:32.900', N'18474', N'2025-04-24 11:18:51.373', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000001\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":false,"code":0,"message":"托盘[25000001],该组盘状态不可入库","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3329', N'2025-04-24 11:38:32.693', N'12119', N'2025-04-24 11:38:44.813', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000001\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3330', N'2025-04-24 11:38:49.167', N'78', N'2025-04-24 11:38:49.247', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000001\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":false,"code":0,"message":"托盘号[25000001]的入库任务状态不匹配","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3331', N'2025-04-24 11:38:54.447', N'66', N'2025-04-24 11:38:54.513', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000002\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3332', N'2025-04-24 11:39:02.670', N'47', N'2025-04-24 11:39:02.717', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000003\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3333', N'2025-04-24 11:39:06.097', N'48', N'2025-04-24 11:39:06.143', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000004\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3334', N'2025-04-24 11:39:10.907', N'63', N'2025-04-24 11:39:10.970', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000005\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3335', N'2025-04-24 11:39:14.513', N'60', N'2025-04-24 11:39:14.573', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000006\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3336', N'2025-04-24 11:39:17.843', N'53', N'2025-04-24 11:39:17.897', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000007\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3337', N'2025-04-24 11:39:21.623', N'75', N'2025-04-24 11:39:21.700', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000008\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3338', N'2025-04-24 11:39:26.593', N'71', N'2025-04-24 11:39:26.667', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000009\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3339', N'2025-04-24 11:39:31.760', N'47', N'2025-04-24 11:39:31.807', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000010\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3340', N'2025-04-24 11:39:36.110', N'65', N'2025-04-24 11:39:36.173', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000011\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3341', N'2025-04-24 11:39:40.473', N'42', N'2025-04-24 11:39:40.517', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000012\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3342', N'2025-04-24 11:39:50.610', N'1858', N'2025-04-24 11:39:52.467', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTQ2NTk5MiIsIm5iZiI6IjE3NDU0NjU5OTIiLCJleHAiOiIxNzQ1NDczMTkyIiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.Eor1k8DDLlLLXxKgvC-0BVvfbYda-AzxQzMXj_u4tcc","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3343', N'2025-04-24 11:39:52.467', N'34', N'2025-04-24 11:39:52.503', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3344', N'2025-04-24 11:39:55.487', N'143', N'2025-04-24 11:39:55.630', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"6e8da8c0-2f45-4652-b0c7-82d2244bc82b\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3345', N'2025-04-24 14:39:07.813', N'58054', N'2025-04-24 14:40:05.867', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000013\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3346', N'2025-04-24 14:40:11.587', N'76', N'2025-04-24 14:40:11.663', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000014\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3347', N'2025-04-24 14:40:14.640', N'57', N'2025-04-24 14:40:14.700', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000015\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3348', N'2025-04-24 14:40:18.147', N'71', N'2025-04-24 14:40:18.217', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000016\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3349', N'2025-04-24 14:40:23.493', N'242', N'2025-04-24 14:40:23.737', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"d984a6dc-4cb0-46ec-9ad5-7912c5e3f91f\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3350', N'2025-04-24 14:40:48.647', N'110', N'2025-04-24 14:40:48.757', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000017\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3351', N'2025-04-24 14:40:50.887', N'86', N'2025-04-24 14:40:50.973', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000018\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3352', N'2025-04-24 14:40:53.453', N'106', N'2025-04-24 14:40:53.560', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000019\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3353', N'2025-04-24 14:40:57.047', N'49', N'2025-04-24 14:40:57.097', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000020\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3354', N'2025-04-24 14:40:59.030', N'65', N'2025-04-24 14:40:59.093', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000021\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3355', N'2025-04-24 14:41:01.377', N'49', N'2025-04-24 14:41:01.427', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000022\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3356', N'2025-04-24 14:41:03.877', N'55', N'2025-04-24 14:41:03.930', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000023\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3357', N'2025-04-24 14:41:06.140', N'43', N'2025-04-24 14:41:06.183', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000024\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":true,"targetAddress":"001-002-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3358', N'2025-04-24 14:41:30.530', N'46441', N'2025-04-24 14:42:16.973', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000025\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3359', N'2025-04-24 14:43:12.950', N'117', N'2025-04-24 14:43:13.063', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000025\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":false,"code":0,"message":"托盘号[25000025]的入库任务状态不匹配","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3360', N'2025-04-24 14:43:27.043', N'65', N'2025-04-24 14:43:27.107', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000026\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3361', N'2025-04-24 14:43:29.240', N'53', N'2025-04-24 14:43:29.293', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000027\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3362', N'2025-04-24 14:43:31.537', N'62', N'2025-04-24 14:43:31.597', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000028\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3363', N'2025-04-24 14:43:34.623', N'77', N'2025-04-24 14:43:34.700', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000029\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3364', N'2025-04-24 14:43:39.407', N'77', N'2025-04-24 14:43:39.483', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000030\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3365', N'2025-04-24 14:43:42.490', N'46', N'2025-04-24 14:43:42.537', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000031\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3366', N'2025-04-24 14:43:44.720', N'45', N'2025-04-24 14:43:44.763', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000032\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3367', N'2025-04-24 14:43:47.733', N'49', N'2025-04-24 14:43:47.783', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000033\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3368', N'2025-04-24 14:43:50.100', N'44', N'2025-04-24 14:43:50.143', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000034\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3369', N'2025-04-24 14:43:52.333', N'41', N'2025-04-24 14:43:52.377', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000035\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3370', N'2025-04-24 14:43:54.333', N'45', N'2025-04-24 14:43:54.377', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000036\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":true,"targetAddress":"002-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3371', N'2025-04-24 14:44:37.547', N'109', N'2025-04-24 14:44:37.657', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000037\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504221T3\",\n \"traytype\": 4\n}"}', N'{"status":false,"code":0,"message":"批号【250422】的柜号【1T3】可组盘数量不足","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3372', N'2025-04-24 14:45:06.753', N'219', N'2025-04-24 14:45:06.973', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000037\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504241T\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":652,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000037","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504241T","grade":0,"dispatchertime":"2025-04-24 14:45:06","remark":null,"creater":"System","createDate":"2025-04-24 14:45:06","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3373', N'2025-04-24 14:45:15.673', N'56', N'2025-04-24 14:45:15.730', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000038\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504241T\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":653,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000038","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504241T","grade":0,"dispatchertime":"2025-04-24 14:45:15","remark":null,"creater":"System","createDate":"2025-04-24 14:45:15","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3374', N'2025-04-24 14:45:19.053', N'63', N'2025-04-24 14:45:19.117', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000039\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504241T\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":654,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000039","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504241T","grade":0,"dispatchertime":"2025-04-24 14:45:19","remark":null,"creater":"System","createDate":"2025-04-24 14:45:19","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3375', N'2025-04-24 14:45:23.997', N'73', N'2025-04-24 14:45:24.070', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000040\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504241T\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":655,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000040","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504241T","grade":0,"dispatchertime":"2025-04-24 14:45:24","remark":null,"creater":"System","createDate":"2025-04-24 14:45:24","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3376', N'2025-04-24 14:45:26.310', N'50', N'2025-04-24 14:45:26.360', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000041\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504241T\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":656,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000041","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504241T","grade":0,"dispatchertime":"2025-04-24 14:45:26","remark":null,"creater":"System","createDate":"2025-04-24 14:45:26","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3377', N'2025-04-24 14:45:29.257', N'54', N'2025-04-24 14:45:29.313', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000042\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504241T\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":657,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000042","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504241T","grade":0,"dispatchertime":"2025-04-24 14:45:29","remark":null,"creater":"System","createDate":"2025-04-24 14:45:29","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3378', N'2025-04-24 14:45:32.283', N'58', N'2025-04-24 14:45:32.340', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000043\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504241T\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":658,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000043","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504241T","grade":0,"dispatchertime":"2025-04-24 14:45:32","remark":null,"creater":"System","createDate":"2025-04-24 14:45:32","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3379', N'2025-04-24 14:45:35.510', N'50', N'2025-04-24 14:45:35.560', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000044\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504241T\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":659,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000044","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504241T","grade":0,"dispatchertime":"2025-04-24 14:45:35","remark":null,"creater":"System","createDate":"2025-04-24 14:45:35","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3380', N'2025-04-24 14:45:38.123', N'77', N'2025-04-24 14:45:38.200', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000045\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504241T\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":660,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000045","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504241T","grade":0,"dispatchertime":"2025-04-24 14:45:38","remark":null,"creater":"System","createDate":"2025-04-24 14:45:38","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3381', N'2025-04-24 14:45:40.610', N'46', N'2025-04-24 14:45:40.657', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000046\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504241T\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":661,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000046","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504241T","grade":0,"dispatchertime":"2025-04-24 14:45:40","remark":null,"creater":"System","createDate":"2025-04-24 14:45:40","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3382', N'2025-04-24 14:45:47.997', N'106', N'2025-04-24 14:45:48.103', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000047\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504241T\",\n \"traytype\": 4\n}"}', N'{"status":false,"code":0,"message":"批号【250424】的柜号【1T】可组盘数量不足","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3383', N'2025-04-24 14:46:42.340', N'85', N'2025-04-24 14:46:42.423', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000047\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T\",\n \"traytype\": 4\n}"}', N'{"status":false,"code":0,"message":"批号【250424】的入库单未找到柜号【2T】","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3384', N'2025-04-24 14:46:51.780', N'78', N'2025-04-24 14:46:51.860', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000047\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":662,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000047","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T1","grade":0,"dispatchertime":"2025-04-24 14:46:51","remark":null,"creater":"System","createDate":"2025-04-24 14:46:51","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3385', N'2025-04-24 14:46:57.137', N'61', N'2025-04-24 14:46:57.200', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000048\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":663,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000048","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T1","grade":0,"dispatchertime":"2025-04-24 14:46:57","remark":null,"creater":"System","createDate":"2025-04-24 14:46:57","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3386', N'2025-04-24 14:47:01.130', N'48', N'2025-04-24 14:47:01.180', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000049\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":664,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000049","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T1","grade":0,"dispatchertime":"2025-04-24 14:47:01","remark":null,"creater":"System","createDate":"2025-04-24 14:47:01","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3387', N'2025-04-24 14:47:06.267', N'62', N'2025-04-24 14:47:06.327', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000050\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":665,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000050","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T1","grade":0,"dispatchertime":"2025-04-24 14:47:06","remark":null,"creater":"System","createDate":"2025-04-24 14:47:06","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3388', N'2025-04-24 14:47:08.783', N'64', N'2025-04-24 14:47:08.847', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000051\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":666,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000051","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T1","grade":0,"dispatchertime":"2025-04-24 14:47:08","remark":null,"creater":"System","createDate":"2025-04-24 14:47:08","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3389', N'2025-04-24 14:47:12.423', N'47', N'2025-04-24 14:47:12.470', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000052\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":667,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000052","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T1","grade":0,"dispatchertime":"2025-04-24 14:47:12","remark":null,"creater":"System","createDate":"2025-04-24 14:47:12","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3390', N'2025-04-24 14:47:15.817', N'60', N'2025-04-24 14:47:15.877', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000053\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":668,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000053","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T1","grade":0,"dispatchertime":"2025-04-24 14:47:15","remark":null,"creater":"System","createDate":"2025-04-24 14:47:15","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3391', N'2025-04-24 14:47:18.270', N'45', N'2025-04-24 14:47:18.317', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000054\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":669,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000054","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T1","grade":0,"dispatchertime":"2025-04-24 14:47:18","remark":null,"creater":"System","createDate":"2025-04-24 14:47:18","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3392', N'2025-04-24 14:47:20.853', N'66', N'2025-04-24 14:47:20.920', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000055\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":670,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000055","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T1","grade":0,"dispatchertime":"2025-04-24 14:47:20","remark":null,"creater":"System","createDate":"2025-04-24 14:47:20","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3393', N'2025-04-24 14:47:23.420', N'47', N'2025-04-24 14:47:23.467', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000056\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":671,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000056","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T1","grade":0,"dispatchertime":"2025-04-24 14:47:23","remark":null,"creater":"System","createDate":"2025-04-24 14:47:23","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3394', N'2025-04-24 14:47:26.367', N'64', N'2025-04-24 14:47:26.433', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000057\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":672,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000057","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T1","grade":0,"dispatchertime":"2025-04-24 14:47:26","remark":null,"creater":"System","createDate":"2025-04-24 14:47:26","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3395', N'2025-04-24 14:47:29.370', N'62', N'2025-04-24 14:47:29.430', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000058\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T1\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":673,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000058","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T1","grade":0,"dispatchertime":"2025-04-24 14:47:29","remark":null,"creater":"System","createDate":"2025-04-24 14:47:29","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3396', N'2025-04-24 14:47:35.953', N'97', N'2025-04-24 14:47:36.050', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000059\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T1\",\n \"traytype\": 4\n}"}', N'{"status":false,"code":0,"message":"批号【250424】的柜号【2T1】可组盘数量不足","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3397', N'2025-04-24 14:47:41.180', N'52', N'2025-04-24 14:47:41.230', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000059\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":674,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000059","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T2","grade":0,"dispatchertime":"2025-04-24 14:47:41","remark":null,"creater":"System","createDate":"2025-04-24 14:47:41","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3398', N'2025-04-24 14:47:47.813', N'47', N'2025-04-24 14:47:47.860', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000060\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":675,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000060","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T2","grade":0,"dispatchertime":"2025-04-24 14:47:47","remark":null,"creater":"System","createDate":"2025-04-24 14:47:47","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3399', N'2025-04-24 14:47:50.423', N'54', N'2025-04-24 14:47:50.477', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000061\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":676,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000061","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T2","grade":0,"dispatchertime":"2025-04-24 14:47:50","remark":null,"creater":"System","createDate":"2025-04-24 14:47:50","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3400', N'2025-04-24 14:47:53.917', N'50', N'2025-04-24 14:47:53.967', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000062\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":677,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000062","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T2","grade":0,"dispatchertime":"2025-04-24 14:47:53","remark":null,"creater":"System","createDate":"2025-04-24 14:47:53","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3401', N'2025-04-24 14:47:56.513', N'64', N'2025-04-24 14:47:56.580', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000063\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":678,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000063","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T2","grade":0,"dispatchertime":"2025-04-24 14:47:56","remark":null,"creater":"System","createDate":"2025-04-24 14:47:56","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3402', N'2025-04-24 14:48:00.773', N'69', N'2025-04-24 14:48:00.840', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000064\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":679,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000064","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T2","grade":0,"dispatchertime":"2025-04-24 14:48:00","remark":null,"creater":"System","createDate":"2025-04-24 14:48:00","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3403', N'2025-04-24 14:48:02.823', N'75', N'2025-04-24 14:48:02.897', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000065\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":680,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000065","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T2","grade":0,"dispatchertime":"2025-04-24 14:48:02","remark":null,"creater":"System","createDate":"2025-04-24 14:48:02","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3404', N'2025-04-24 14:48:06.003', N'50', N'2025-04-24 14:48:06.053', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000066\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":681,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000066","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T2","grade":0,"dispatchertime":"2025-04-24 14:48:06","remark":null,"creater":"System","createDate":"2025-04-24 14:48:06","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3405', N'2025-04-24 14:48:08.997', N'64', N'2025-04-24 14:48:09.063', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000067\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":682,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000067","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T2","grade":0,"dispatchertime":"2025-04-24 14:48:09","remark":null,"creater":"System","createDate":"2025-04-24 14:48:09","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3406', N'2025-04-24 14:48:12.190', N'46', N'2025-04-24 14:48:12.233', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000068\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":683,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000068","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T2","grade":0,"dispatchertime":"2025-04-24 14:48:12","remark":null,"creater":"System","createDate":"2025-04-24 14:48:12","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3407', N'2025-04-24 14:48:17.023', N'61', N'2025-04-24 14:48:17.083', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000069\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":684,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000069","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T2","grade":0,"dispatchertime":"2025-04-24 14:48:17","remark":null,"creater":"System","createDate":"2025-04-24 14:48:17","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3408', N'2025-04-24 14:48:23.947', N'49', N'2025-04-24 14:48:23.993', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000070\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T2\",\n \"traytype\": 4\n}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":685,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000070","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504242T2","grade":0,"dispatchertime":"2025-04-24 14:48:23","remark":null,"creater":"System","createDate":"2025-04-24 14:48:23","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3409', N'2025-04-24 14:48:28.790', N'72', N'2025-04-24 14:48:28.863', N'{"QueryString":"","BodyData":"{\n \"barcode\": \"25000071\",\n \"stationCode\": \"MDX01\",\n \"productQty\": \"string\",\n \"qtySum\": 0,\n \"batchNo\": \"2504242T2\",\n \"traytype\": 4\n}"}', N'{"status":false,"code":0,"message":"批号【250424】的柜号【2T2】可组盘数量不足","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/ProductionLine/ProductionlineRequest', N'192.168.10.88', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3410', N'2025-04-24 14:49:58.210', N'90630', N'2025-04-24 14:51:28.840', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000037\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3411', N'2025-04-24 14:51:44.347', N'55', N'2025-04-24 14:51:44.400', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000038\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3412', N'2025-04-24 14:51:47.553', N'58', N'2025-04-24 14:51:47.613', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000039\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3413', N'2025-04-24 14:51:51.673', N'62', N'2025-04-24 14:51:51.733', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000040\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3414', N'2025-04-24 14:51:54.337', N'49', N'2025-04-24 14:51:54.387', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000041\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3415', N'2025-04-24 14:51:57.677', N'67', N'2025-04-24 14:51:57.743', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000042\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3416', N'2025-04-24 14:52:00.657', N'47', N'2025-04-24 14:52:00.707', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000043\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3417', N'2025-04-24 14:52:02.953', N'40', N'2025-04-24 14:52:02.993', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000044\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3418', N'2025-04-24 14:52:27.127', N'1720', N'2025-04-24 14:52:28.847', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000045\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3419', N'2025-04-24 14:52:40.567', N'24648', N'2025-04-24 14:53:05.213', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000048\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3420', N'2025-04-24 14:53:38.500', N'96', N'2025-04-24 14:53:38.597', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000046\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"002-004-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3421', N'2025-04-24 14:53:55.650', N'59', N'2025-04-24 14:53:55.710', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000047\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3422', N'2025-04-24 14:54:14.380', N'59', N'2025-04-24 14:54:14.437', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000049\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3423', N'2025-04-24 14:54:21.817', N'57', N'2025-04-24 14:54:21.873', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000050\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3424', N'2025-04-24 14:54:24.417', N'58', N'2025-04-24 14:54:24.473', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000051\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3425', N'2025-04-24 14:54:27.133', N'81', N'2025-04-24 14:54:27.213', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000052\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3426', N'2025-04-24 14:54:29.113', N'43', N'2025-04-24 14:54:29.157', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000053\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3427', N'2025-04-24 14:54:31.357', N'79', N'2025-04-24 14:54:31.437', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000054\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3428', N'2025-04-24 14:54:33.650', N'103', N'2025-04-24 14:54:33.753', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000055\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3429', N'2025-04-24 14:54:35.960', N'64', N'2025-04-24 14:54:36.023', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000056\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3430', N'2025-04-24 14:54:38.997', N'76', N'2025-04-24 14:54:39.073', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000057\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3431', N'2025-04-24 14:54:42.113', N'47', N'2025-04-24 14:54:42.160', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000058\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3432', N'2025-04-24 14:54:45.327', N'42018', N'2025-04-24 14:55:27.347', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000059\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3433', N'2025-04-24 14:55:35.897', N'42', N'2025-04-24 14:55:35.940', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000060\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3434', N'2025-04-24 14:55:38.667', N'65', N'2025-04-24 14:55:38.730', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000061\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3435', N'2025-04-24 14:55:40.753', N'185', N'2025-04-24 14:55:40.937', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000062\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3436', N'2025-04-24 14:55:43.560', N'93', N'2025-04-24 14:55:43.653', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000063\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3437', N'2025-04-24 14:55:45.877', N'45', N'2025-04-24 14:55:45.923', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000064\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3438', N'2025-04-24 14:55:48.467', N'60', N'2025-04-24 14:55:48.527', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000065\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3439', N'2025-04-24 14:55:50.710', N'43', N'2025-04-24 14:55:50.753', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000066\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3440', N'2025-04-24 14:55:53.317', N'55', N'2025-04-24 14:55:53.370', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000067\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3441', N'2025-04-24 14:55:56.053', N'48', N'2025-04-24 14:55:56.100', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000068\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3442', N'2025-04-24 14:56:02.973', N'53', N'2025-04-24 14:56:03.027', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000069\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":false,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3443', N'2025-04-24 14:56:11.837', N'77', N'2025-04-24 14:56:11.913', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000070\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":{"sourceIsPickPlace":false,"targetIsPickPlace":true,"targetAddress":"001-003-001"},"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3444', N'2025-04-24 14:56:16.063', N'81', N'2025-04-24 14:56:16.147', N'{"QueryString":"","BodyData":"{\n \"taskNum\": 0,\n \"barcode\": \"25000071\",\n \"stationCode\": \"1004\",\n \"weight\": 0,\n \"spec\": 0\n}"}', N'{"status":false,"code":0,"message":"未找到托盘号[25000071]的入库任务","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/StackerCraneRequestInbound', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3445', N'2025-04-24 15:00:50.943', N'63002', N'2025-04-24 15:01:53.947', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 616,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3446', N'2025-04-24 15:02:49.090', N'2458', N'2025-04-24 15:02:51.547', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 617,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3447', N'2025-04-24 15:02:55.667', N'47', N'2025-04-24 15:02:55.713', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 618,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3448', N'2025-04-24 15:02:59.203', N'48', N'2025-04-24 15:02:59.250', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 619,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3449', N'2025-04-24 15:03:02.347', N'45', N'2025-04-24 15:03:02.390', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 620,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3450', N'2025-04-24 15:03:05.760', N'60', N'2025-04-24 15:03:05.820', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 621,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3451', N'2025-04-24 15:03:09.087', N'50', N'2025-04-24 15:03:09.137', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 622,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3452', N'2025-04-24 15:03:11.707', N'61', N'2025-04-24 15:03:11.767', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 623,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3453', N'2025-04-24 15:03:15.623', N'47', N'2025-04-24 15:03:15.670', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 624,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3454', N'2025-04-24 15:04:02.400', N'80', N'2025-04-24 15:04:02.480', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 625,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3455', N'2025-04-24 15:04:04.957', N'49', N'2025-04-24 15:04:05.003', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 626,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3456', N'2025-04-24 15:04:07.853', N'41', N'2025-04-24 15:04:07.893', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 627,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3457', N'2025-04-24 15:05:07.580', N'63', N'2025-04-24 15:05:07.643', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 628,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3458', N'2025-04-24 15:05:12.260', N'51', N'2025-04-24 15:05:12.310', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 629,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3459', N'2025-04-24 15:05:15.653', N'76', N'2025-04-24 15:05:15.730', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 630,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3460', N'2025-04-24 15:05:18.813', N'50', N'2025-04-24 15:05:18.863', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 631,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3461', N'2025-04-24 15:05:20.887', N'45', N'2025-04-24 15:05:20.933', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 632,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3462', N'2025-04-24 15:05:23.650', N'50', N'2025-04-24 15:05:23.697', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 633,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3463', N'2025-04-24 15:05:32.393', N'70', N'2025-04-24 15:05:32.463', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 634,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3464', N'2025-04-24 15:05:35.370', N'82', N'2025-04-24 15:05:35.453', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 635,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3465', N'2025-04-24 15:05:37.807', N'41', N'2025-04-24 15:05:37.850', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 636,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3466', N'2025-04-24 15:05:40.553', N'57', N'2025-04-24 15:05:40.613', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 637,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3467', N'2025-04-24 15:05:44.880', N'64', N'2025-04-24 15:05:44.943', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 638,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3468', N'2025-04-24 15:05:49.977', N'65', N'2025-04-24 15:05:50.040', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 639,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3469', N'2025-04-24 15:06:28.393', N'121', N'2025-04-24 15:06:28.517', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 640,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":false,"code":0,"message":"Object of type ''System.Collections.Generic.List`1[WIDESEA_Model.Models.Dt_InboundOrderDetail]'' cannot be converted to type ''System.Collections.Generic.List`1[WIDESEA_Model.Models.Dt_InboundOrderDetail_Hty]''.","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3470', N'2025-04-24 15:07:02.237', N'54355', N'2025-04-24 15:07:56.593', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 640,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":false,"code":0,"message":"Object of type ''System.Collections.Generic.List`1[WIDESEA_Model.Models.Dt_InboundOrderDetail]'' cannot be converted to type ''System.Collections.Generic.List`1[WIDESEA_Model.Models.Dt_InboundOrderDetail_Hty]''.","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3471', N'2025-04-24 15:08:25.630', N'32384', N'2025-04-24 15:08:58.013', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 640,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3472', N'2025-04-24 15:09:24.207', N'49', N'2025-04-24 15:09:24.253', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 641,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3473', N'2025-04-24 15:09:26.707', N'47', N'2025-04-24 15:09:26.753', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 642,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3474', N'2025-04-24 15:09:29.313', N'51', N'2025-04-24 15:09:29.367', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 643,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3475', N'2025-04-24 15:09:32.160', N'51', N'2025-04-24 15:09:32.213', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 644,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3476', N'2025-04-24 15:09:34.303', N'55', N'2025-04-24 15:09:34.357', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 645,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3477', N'2025-04-24 15:09:36.873', N'42', N'2025-04-24 15:09:36.917', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 646,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3478', N'2025-04-24 15:10:39.153', N'38', N'2025-04-24 15:10:39.193', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 646,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":false,"code":0,"message":"未找到任务信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3479', N'2025-04-24 15:10:44.220', N'73', N'2025-04-24 15:10:44.293', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 647,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3480', N'2025-04-24 15:10:47.313', N'43', N'2025-04-24 15:10:47.357', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 648,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3481', N'2025-04-24 15:11:01.130', N'83', N'2025-04-24 15:11:01.213', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 649,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3482', N'2025-04-24 15:11:05.440', N'64', N'2025-04-24 15:11:05.503', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 650,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3483', N'2025-04-24 15:15:53.993', N'22626', N'2025-04-24 15:16:16.620', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 651,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3484', N'2025-04-24 16:00:23.607', N'619', N'2025-04-24 16:00:24.223', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTQ4MTYyNCIsIm5iZiI6IjE3NDU0ODE2MjQiLCJleHAiOiIxNzQ1NDg4ODI0IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.EPC-ug8e7Aak_8kDlGwPwugRkuSn75qRW65fQUV8w-o","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3485', N'2025-04-24 16:00:24.230', N'8', N'2025-04-24 16:00:24.240', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3486', N'2025-04-24 16:00:27.247', N'99', N'2025-04-24 16:00:27.343', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"b321fc45-b6ba-4a7d-9b5e-4f2c2db1bd7d\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3487', N'2025-04-24 16:06:10.347', N'281', N'2025-04-24 16:06:10.630', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 652,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3488', N'2025-04-24 16:06:12.907', N'71', N'2025-04-24 16:06:12.977', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 653,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3489', N'2025-04-24 16:06:15.290', N'100', N'2025-04-24 16:06:15.387', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 654,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3490', N'2025-04-24 16:06:18.150', N'60', N'2025-04-24 16:06:18.210', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 655,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3491', N'2025-04-24 16:06:20.807', N'63', N'2025-04-24 16:06:20.870', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 656,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3492', N'2025-04-24 16:06:23.173', N'50', N'2025-04-24 16:06:23.220', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 657,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3493', N'2025-04-24 16:06:26.647', N'47', N'2025-04-24 16:06:26.693', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 658,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3494', N'2025-04-24 16:06:28.963', N'42', N'2025-04-24 16:06:29.007', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 659,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3495', N'2025-04-24 16:06:33.617', N'59', N'2025-04-24 16:06:33.677', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 660,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3496', N'2025-04-24 16:06:36.370', N'48', N'2025-04-24 16:06:36.417', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 661,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3497', N'2025-04-24 16:06:38.903', N'54', N'2025-04-24 16:06:38.957', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 662,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3498', N'2025-04-24 16:06:41.180', N'45', N'2025-04-24 16:06:41.227', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 663,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3499', N'2025-04-24 16:06:43.753', N'48', N'2025-04-24 16:06:43.800', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 664,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3500', N'2025-04-24 16:06:46.287', N'44', N'2025-04-24 16:06:46.330', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 665,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3501', N'2025-04-24 16:06:48.687', N'58', N'2025-04-24 16:06:48.743', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 666,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3502', N'2025-04-24 16:06:51.653', N'41', N'2025-04-24 16:06:51.693', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 667,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3503', N'2025-04-24 16:06:54.030', N'42', N'2025-04-24 16:06:54.073', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 668,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3504', N'2025-04-24 16:06:59.777', N'69', N'2025-04-24 16:06:59.847', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 669,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3505', N'2025-04-24 16:07:04.510', N'41', N'2025-04-24 16:07:04.553', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 670,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3506', N'2025-04-24 16:07:12.290', N'41', N'2025-04-24 16:07:12.330', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 671,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3507', N'2025-04-24 16:07:14.717', N'45', N'2025-04-24 16:07:14.763', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 672,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3508', N'2025-04-24 16:07:17.187', N'45', N'2025-04-24 16:07:17.230', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 673,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3509', N'2025-04-24 16:08:10.213', N'76', N'2025-04-24 16:08:10.290', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 674,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3510', N'2025-04-24 16:08:20.047', N'47', N'2025-04-24 16:08:20.093', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 675,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3511', N'2025-04-24 16:08:23.790', N'53', N'2025-04-24 16:08:23.843', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 676,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3512', N'2025-04-24 16:08:27.337', N'80', N'2025-04-24 16:08:27.417', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 677,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3513', N'2025-04-24 16:08:29.973', N'65', N'2025-04-24 16:08:30.040', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 678,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3514', N'2025-04-24 16:08:32.960', N'58', N'2025-04-24 16:08:33.017', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 679,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3515', N'2025-04-24 16:08:38.383', N'44', N'2025-04-24 16:08:38.427', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 680,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3516', N'2025-04-24 16:08:41.210', N'61', N'2025-04-24 16:08:41.270', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 681,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3517', N'2025-04-24 16:08:43.790', N'53', N'2025-04-24 16:08:43.843', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 682,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3518', N'2025-04-24 16:08:46.157', N'55', N'2025-04-24 16:08:46.213', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 683,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3519', N'2025-04-24 16:09:05.623', N'55', N'2025-04-24 16:09:05.677', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 684,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3520', N'2025-04-24 16:09:33.800', N'5008', N'2025-04-24 16:09:38.807', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 685,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":false,"code":0,"message":"未找到托盘[25000070]的入库单明细信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3521', N'2025-04-24 16:09:55.677', N'53453', N'2025-04-24 16:10:49.130', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 685,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3522', N'2025-04-24 16:21:29.933', N'6877', N'2025-04-24 16:21:36.813', N'{"QueryString":"","BodyData":"{\n \"id\": 0,\n \"taskNum\": 685,\n \"palletCode\": \"string\",\n \"roadWay\": \"string\",\n \"taskType\": 200,\n \"taskState\": 0,\n \"sourceAddress\": \"string\",\n \"currentAddress\": \"string\",\n \"targetAddress\": \"string\",\n \"nextAddress\": \"string\",\n \"sourceIsPickPlace\": true,\n \"targetIsPickPlace\": true,\n \"grade\": 0\n}"}', N'{"status":false,"code":0,"message":"未找到任务信息","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/WCS/UpdateTaskStatus', N'192.168.10.88', N'', N'', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3523', N'2025-04-24 16:22:49.593', N'128', N'2025-04-24 16:22:49.723', N'{"QueryString":"","BodyData":"[11,10,9]"}', N'', N'1', N'http://192.168.10.88:8098/api/OutboundOrder/del', N'192.168.10.88', N'admin', N'Del', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3524', N'2025-04-24 16:23:25.140', N'78', N'2025-04-24 16:23:25.220', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderType\":\"205\",\"upperOrderNo\":\"\",\"orderStatus\":\"\",\"remark\":\"\"},\"detailData\":[],\"delKeys\":null}"}', N'', N'1', N'http://192.168.10.88:8098/api/OutboundOrder/Add', N'192.168.10.88', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3525', N'2025-04-24 16:24:10.300', N'197', N'2025-04-24 16:24:10.497', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderType\":\"205\",\"upperOrderNo\":\"\",\"orderStatus\":\"\",\"remark\":\"\"},\"detailData\":[{\"materielCode\":\"1\",\"materielName\":\"低钙腹膜透析液(乳酸盐-G1.5%)\",\"orderQuantity\":\"10\",\"elementIndex\":0},{\"materielCode\":\"1\",\"materielName\":\"低钙腹膜透析液(乳酸盐-G1.5%)\",\"orderQuantity\":\"24\",\"elementIndex\":1},{\"materielCode\":\"2\",\"materielName\":\"2\",\"orderQuantity\":\"12\",\"elementIndex\":2}],\"delKeys\":null}"}', N'', N'1', N'http://192.168.10.88:8098/api/OutboundOrder/Add', N'192.168.10.88', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3526', N'2025-04-25 08:57:56.950', N'929', N'2025-04-25 08:57:57.880', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"3d770ab8-e6fc-42fa-b20a-818496e3ace9\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3527', N'2025-04-25 09:23:17.713', N'164472', N'2025-04-25 09:26:02.187', N'{"QueryString":"","BodyData":"[15,14,13]"}', N'{"status":false,"code":0,"message":"Sequence contains no elements","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/Task/GenerateOutboundTasks', N'192.168.10.88', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3528', N'2025-04-25 09:45:31.200', N'450', N'2025-04-25 09:45:31.650', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"250423\",\"orderStatus\":\"\",\"createType\":\"\",\"orderType\":\"100\",\"upperOrderNo\":\"\",\"remark\":\"\"},\"detailData\":[{\"materielCode\":\"1\",\"materielName\":\"低钙腹膜透析液(乳酸盐-G1.5%)\",\"batchNo\":\"3T1\",\"orderQuantity\":\"12\",\"elementIndex\":0}],\"delKeys\":null}"}', N'', N'1', N'http://192.168.10.88:8098/api/InboundOrder/Add', N'192.168.10.88', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3529', N'2025-04-25 09:47:10.277', N'3362', N'2025-04-25 09:47:13.637', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000463\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"2504233T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":686,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000463","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504233T1","grade":0,"dispatchertime":"2025-04-25 09:47:13","remark":null,"creater":"System","createDate":"2025-04-25 09:47:13","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3530', N'2025-04-25 10:02:00.667', N'499', N'2025-04-25 10:02:01.167', N'{"QueryString":"","BodyData":"{\"Barcode\":\"25000577\",\"stationCode\":\"MDX01\",\"productQty\":null,\"batchNo\":\"2504233T1\",\"traytype\":4}"}', N'{"status":true,"code":0,"message":null,"data":{"taskId":0,"taskNum":687,"sourceIsPickPlace":false,"targetIsPickPlace":false,"palletCode":"25000577","roadway":"SC01","taskType":200,"taskState":200,"sourceAddress":"MDX01","targetAddress":"SC01","currentAddress":"MDX01","nextAddress":"SC01","orderNo":"2504233T1","grade":0,"dispatchertime":"2025-04-25 10:02:00","remark":null,"creater":"System","createDate":"2025-04-25 10:02:01","modifier":null,"modifyDate":null},"devMessage":null}', N'1', N'http://127.0.0.1:8098/api/ProductionLine/ProductionlineRequest', N'127.0.0.1', N'', N'ProductionlineRequest', N'ProductionlineRequest', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3531', N'2025-04-25 10:23:15.400', N'1954', N'2025-04-25 10:23:17.353', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTU0Nzc5NyIsIm5iZiI6IjE3NDU1NDc3OTciLCJleHAiOiIxNzQ1NTU0OTk3IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.zVuiBKC0j0c7iu3xqcnkY7soSH92OVDmzFighTZJmFg","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3532', N'2025-04-25 10:23:17.403', N'9', N'2025-04-25 10:23:17.410', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3533', N'2025-04-25 10:23:27.993', N'240', N'2025-04-25 10:23:28.233', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"15f27643-4770-468a-901a-527b9a15dc2c\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3534', N'2025-04-25 10:37:49.120', N'16344', N'2025-04-25 10:38:05.463', N'{"QueryString":"","BodyData":"[14]"}', N'{"status":false,"code":0,"message":"无库存","data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/Task/GenerateOutboundTasks', N'192.168.10.88', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3535', N'2025-04-25 11:46:48.313', N'1787', N'2025-04-25 11:46:50.100', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTU1MjgxMCIsIm5iZiI6IjE3NDU1NTI4MTAiLCJleHAiOiIxNzQ1NTYwMDEwIiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.fVS2HAlIF-hzW5BqJydekbQueZdWqWQHY-KaQJPeOkQ","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3536', N'2025-04-25 11:46:50.160', N'8', N'2025-04-25 11:46:50.170', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3537', N'2025-04-25 11:46:54.987', N'223', N'2025-04-25 11:46:55.210', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"856917ad-43c6-472a-ad39-d42acd84a76e\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3538', N'2025-04-25 14:22:56.327', N'1110', N'2025-04-25 14:22:57.437', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"b191b2dd-8bd0-417e-9055-531f78d00811\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3539', N'2025-04-25 15:21:52.937', N'139213', N'2025-04-25 15:24:12.150', N'{"QueryString":"","BodyData":"[14]"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/Task/GenerateOutboundTasks', N'192.168.10.88', N'admin', N'GenerateOutboundTasks', N'GenerateOutboundTasks', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3540', N'2025-04-25 15:35:58.653', N'51207', N'2025-04-25 15:36:49.860', N'{"QueryString":"?id=13","BodyData":"[{\"id\":1,\"materielCode\":\"1\",\"materielName\":\"低钙腹膜透析液(乳酸盐-G1.5%)\",\"useableQuantity\":12,\"palletCode\":\"25000001,25000002,25000003,25000004,25000005,25000006,25000007,25000008,25000009,25000010,25000011,25000012\",\"locationCode\":\"001-002-001\",\"orderNo\":\"250422\",\"batchNo\":\"1T1\",\"inDate\":\"2025-04-24 15:04:07\"}]"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', N'1', N'http://192.168.10.88:8098/api/Task/GenerateOutboundTask', N'192.168.10.88', N'admin', N'GenerateOutboundTask', N'GenerateOutboundTask', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3541', N'2025-04-25 15:43:43.743', N'2356', N'2025-04-25 15:43:46.097', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTU2NzAyNSIsIm5iZiI6IjE3NDU1NjcwMjUiLCJleHAiOiIxNzQ1NTc0MjI1IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.oumu_4XESdKePw2pUFeGw_s9aFTsL_KeReuXrWHbj9c","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3542', N'2025-04-25 15:43:46.257', N'20', N'2025-04-25 15:43:46.277', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3543', N'2025-04-25 15:43:50.997', N'124', N'2025-04-25 15:43:51.123', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"c394bc64-30c3-4a5d-a7df-f8c7c782318a\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3544', N'2025-04-25 17:18:56.313', N'76', N'2025-04-25 17:18:56.390', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc0NTU3MjczNiIsIm5iZiI6IjE3NDU1NzI3MzYiLCJleHAiOiIxNzQ1NTc5OTM2IiwiaXNzIjoiV0lERVNFQV9XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.wwkrPfv_Q1MPc1Kiq88ETJX38YIgYsHnazQuXlRehk4","devMessage":null}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3545', N'2025-04-25 17:18:56.433', N'2', N'2025-04-25 17:18:56.437', N'{"QueryString":"","BodyData":""}', N'{"message":"登陆已过期","status":false,"code":401}', N'1', N'http://192.168.10.88:8098/api/User/replaceToken', N'192.168.10.88', N'admin', N'ReplaceToken', N'ReplaceToken', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3546', N'2025-04-25 17:18:58.983', N'94', N'2025-04-25 17:18:59.080', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"4676eaa2-47c7-47ec-8522-0eec40efcae5\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3547', N'2025-04-26 09:16:15.710', N'431', N'2025-04-26 09:16:16.143', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"58bb9089-44a7-406e-bf7d-13007a9d4fd9\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'3548', N'2025-04-26 12:56:42.817', N'204', N'2025-04-26 12:56:43.020', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"e73aa50e-8aac-4252-9911-7326530187de\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'4028', N'2025-04-26 18:24:58.157', N'369', N'2025-04-26 18:24:58.527', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"44c28c69-1721-4d2e-b755-f3d61b545a51\"}"}', N'', N'1', N'http://192.168.10.88:8098/api/User/login', N'192.168.10.88', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'4029', N'2025-04-27 10:32:24.107', N'1151', N'2025-04-27 10:32:25.260', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"897a2f80-1864-47fc-9f1b-3dd2ad9eaac5\"}"}', N'', N'1', N'http://127.0.0.1:8098/api/User/login', N'127.0.0.1', N'', N'Login', N'用户登陆', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'4030', N'2025-04-27 11:14:15.580', N'536', N'2025-04-27 11:14:16.117', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"250427\",\"orderStatus\":\"\",\"createType\":\"\",\"orderType\":\"100\",\"upperOrderNo\":\"\",\"remark\":\"\"},\"detailData\":[{\"materielCode\":\"1\",\"materielName\":\"低钙腹膜透析液(乳酸盐-G1.5%)\",\"batchNo\":\"1T1\",\"orderQuantity\":\"12\",\"elementIndex\":0},{\"materielCode\":\"1\",\"materielName\":\"低钙腹膜透析液(乳酸盐-G1.5%)\",\"batchNo\":\"1T2\",\"orderQuantity\":\"12\",\"elementIndex\":1},{\"materielCode\":\"1\",\"materielName\":\"低钙腹膜透析液(乳酸盐-G1.5%)\",\"batchNo\":\"1T3\",\"orderQuantity\":\"12\",\"elementIndex\":2},{\"materielCode\":\"1\",\"materielName\":\"低钙腹膜透析液(乳酸盐-G1.5%)\",\"batchNo\":\"2T1\",\"orderQuantity\":\"12\",\"elementIndex\":3},{\"materielCode\":\"1\",\"materielName\":\"低钙腹膜透析液(乳酸盐-G1.5%)\",\"batchNo\":\"2T2\",\"orderQuantity\":\"12\",\"elementIndex\":4}],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:8098/api/InboundOrder/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'4031', N'2025-04-27 11:15:28.547', N'114', N'2025-04-27 11:15:28.660', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"250427\",\"orderStatus\":\"\",\"createType\":\"\",\"orderType\":\"110\",\"upperOrderNo\":\"\",\"remark\":\"\",\"id\":\"\"},\"detailData\":[{\"materielCode\":\"2\",\"materielName\":\"2\",\"batchNo\":\"1\",\"orderQuantity\":\"1\",\"elementIndex\":0}],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:8098/api/InboundOrder/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'4032', N'2025-04-27 11:17:44.073', N'3392', N'2025-04-27 11:17:47.463', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"250407\",\"orderStatus\":\"\",\"createType\":\"\",\"orderType\":\"105\",\"upperOrderNo\":\"\",\"remark\":\"\",\"id\":\"\"},\"detailData\":[{\"materielCode\":\"1\",\"materielName\":\"低钙腹膜透析液(乳酸盐-G1.5%)\",\"batchNo\":\"1\",\"orderQuantity\":\"1\",\"elementIndex\":0}],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:8098/api/InboundOrder/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'4033', N'2025-04-27 11:18:37.207', N'16818', N'2025-04-27 11:18:54.023', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"250427\",\"orderStatus\":\"\",\"createType\":\"\",\"orderType\":\"105\",\"upperOrderNo\":\"\",\"remark\":\"\",\"id\":\"\"},\"detailData\":[{\"materielCode\":\"1\",\"materielName\":\"低钙腹膜透析液(乳酸盐-G1.5%)\",\"batchNo\":\"1\",\"orderQuantity\":\"1\",\"elementIndex\":0}],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:8098/api/InboundOrder/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [MethodName], [Methodremark], [User_Id]) VALUES (N'4034', N'2025-04-27 11:19:11.923', N'2684', N'2025-04-27 11:19:14.607', N'{"QueryString":"","BodyData":"{\"mainData\":{\"orderNo\":\"250427\",\"orderStatus\":\"\",\"createType\":\"\",\"orderType\":\"125\",\"upperOrderNo\":\"\",\"remark\":\"\",\"id\":\"\"},\"detailData\":[{\"materielCode\":\"3\",\"materielName\":\"3\",\"batchNo\":\"2\",\"orderQuantity\":\"1\",\"elementIndex\":0}],\"delKeys\":null}"}', N'', N'1', N'http://127.0.0.1:8098/api/InboundOrder/Add', N'127.0.0.1', N'admin', N'Add', N'', NULL) GO SET IDENTITY_INSERT [dbo].[Sys_Log] OFF GO -- ---------------------------- -- Table structure for Sys_Menu -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Menu]') AND type IN ('U')) DROP TABLE [dbo].[Sys_Menu] GO CREATE TABLE [dbo].[Sys_Menu] ( [MenuId] int IDENTITY(1,1) NOT NULL, [MenuName] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [Auth] varchar(2000) COLLATE Chinese_PRC_CI_AS NULL, [Icon] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [Description] varchar(2000) COLLATE Chinese_PRC_CI_AS NULL, [Enable] tinyint NULL, [TableName] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [ParentId] int NOT NULL, [Url] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [OrderNo] int NULL, [MenuType] int NOT 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].[Sys_Menu] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'菜单ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'MenuId' GO EXEC sp_addextendedproperty 'MS_Description', N'菜单名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'MenuName' GO EXEC sp_addextendedproperty 'MS_Description', N'权限', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'Auth' GO EXEC sp_addextendedproperty 'MS_Description', N'图标', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'Icon' GO EXEC sp_addextendedproperty 'MS_Description', N'描述', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'Description' GO EXEC sp_addextendedproperty 'MS_Description', N'是否启用', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'Enable' GO EXEC sp_addextendedproperty 'MS_Description', N'表名', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'TableName' GO EXEC sp_addextendedproperty 'MS_Description', N'父级ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'ParentId' GO EXEC sp_addextendedproperty 'MS_Description', N'路径', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'Url' GO EXEC sp_addextendedproperty 'MS_Description', N'排序号', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'菜单类型', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'MenuType' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'菜单配置', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu' GO -- ---------------------------- -- Records of Sys_Menu -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_Menu] ON GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'用户管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-user', NULL, N'1', N'.', N'0', NULL, N'4000', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-05-09 15:50:07.567') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'用户管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"}]', NULL, NULL, N'1', N'Sys_User', N'1', N'/Sys_User', N'2000', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2025-02-11 13:42:47.183') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'权限管理', N'[{"text":"查询","value":"Search"},{"text":"编辑","value":"Update"}]', N'ivu-icon ivu-icon-ios-boat', NULL, N'1', N',', N'1', N'/permission', N'1000', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2025-02-11 13:56:41.943') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'角色管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"}]', NULL, NULL, N'1', N'Sys_Role', N'1', N'/Sys_Role', N'900', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2025-02-11 13:42:54.530') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'5', N'系统设置', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-setting', NULL, N'1', N'系统设置', N'0', N'/', N'0', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-05-09 15:50:38.703') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'6', N'菜单设置', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', NULL, NULL, N'1', N'Sys_Menu', N'5', N'/sysmenu', N'10', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-05-09 15:50:42.007') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7', N'下拉框绑定设置', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', NULL, NULL, N'1', N'Sys_Dictionary', N'5', N'/Sys_Dictionary', N'10', N'0', N'admin', N'2024-10-21 14:40:52.610', NULL, N'2024-09-04 11:06:31.127') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'8', N'日志管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'xxx', N'0', N'/', N'500', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-05-09 15:50:30.557') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'9', N'接口日志', N'[{"text":"查询","value":"Search"}]', NULL, NULL, N'1', N'Sys_Log', N'8', N'/Sys_Log', N'0', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2025-02-10 16:31:42.040') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'12', N'任务管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-shopping-bag-2', NULL, N'1', N'/', N'0', N'/', N'9000', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-09-04 10:44:31.457') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'任务信息', N'[{"text":"查询","value":"Search"},{"text":"打印","value":"print"}]', NULL, NULL, N'1', N'Dt_Task', N'12', N'/task', N'500', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-12-24 18:56:53.443') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'17', N'基础管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-notebook-2', NULL, N'1', N'/', N'0', N'/', N'10000', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-09-04 10:44:15.293') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'19', N'单据管理', N'[{"text":"查询","value":"Search"}]', N'el-icon-document', NULL, N'1', N'/', N'0', N'', N'8000', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-09-04 10:50:35.370') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'20', N'库存管理', N'[{"text":"查询","value":"Search"}]', N'el-icon-discount', NULL, N'1', N'/', N'0', N'', N'7000', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-09-04 10:53:10.417') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'21', N'仓库信息', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"},{"text":"启用","value":"Enable"},{"text":"禁用","value":"Disable"}]', N'', NULL, N'1', N'Dt_Warehouse', N'17', N'/warehouse', N'10000', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-09-24 14:36:38.443') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'22', N'区域信息', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"},{"text":"启用","value":"Enable"},{"text":"禁用","value":"Disable"}]', N'', NULL, N'1', N'Dt_AreaInfo', N'17', N'areaInfo', N'9000', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-09-24 14:36:41.967') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'23', N'货位信息', N'[{"text":"查询","value":"Search"},{"text":"禁用状态","value":"enableStatus"}]', N'', NULL, N'1', N'Dt_LocationInfo', N'17', N'/locationInfo', N'8000', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-10-30 10:11:52.170') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'24', N'物料信息', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'', NULL, N'1', N'Dt_MaterielInfo', N'17', N'/materielInfo', N'7000', N'0', N'admin', N'2024-10-21 14:40:52.610', NULL, N'2024-09-04 11:06:31.127') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'25', N'入库单', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'', NULL, N'1', N'Dt_InboundOrder', N'19', N'/inboundOrder', N'10000', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-11-13 17:17:53.917') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'26', N'入库单明细', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'', NULL, N'0', N'Dt_InboundOrderDetail', N'19', N'/inboundOrderDetail', N'9000', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-09-24 11:12:44.150') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'27', N'出库单', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'', NULL, N'1', N'Dt_OutboundOrder', N'19', N'/outboundOrder', N'8000', N'0', N'admin', N'2024-10-21 14:40:52.610', NULL, N'2024-09-04 11:06:31.127') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'28', N'出库单明细', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'', NULL, N'0', N'Dt_OutboundOrderDetail', N'19', N'/outboundOrderDetail', N'7000', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-09-24 11:12:46.923') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'29', N'库存信息', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"}]', N'', NULL, N'1', N'Dt_StockInfo', N'20', N'/stockInfo', N'10000', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2025-02-11 13:35:00.267') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'30', N'库存信息明细', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'', NULL, N'1', N'Dt_StockInfoDetail', N'20', N'stockInfoDetail', N'9000', N'0', N'admin', N'2024-10-21 14:40:52.610', NULL, N'2024-09-04 11:06:31.127') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'31', N'巷道信息', N'[{"text":"查询","value":"Search"},{"text":"编辑","value":"Update"},{"text":"导出","value":"Export"},{"text":"禁用状态","value":"enableStatus"}]', N'', NULL, N'1', N'Dt_RoadwayInfo', N'17', N'/roadwayInfo', N'8500', N'0', N'admin', N'2024-10-21 14:40:52.610', N'admin', N'2024-11-12 09:03:10.007') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'32', N'库存视图', N'[{"text":"查询","value":"Search"}]', N'', NULL, N'1', N'StockView', N'20', N'/stockView', N'9000', N'0', N'admin', N'2024-10-21 14:40:52.610', NULL, NULL) GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'42', N'任务历史信息', N'[{"text":"查询","value":"Search"}]', N'', NULL, N'1', N'Dt_Task_Hty', N'12', N'/Task_Hty', N'0', N'0', N'admin', N'2024-10-30 11:35:50.620', N'admin', N'2024-10-30 14:53:22.030') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'43', N'入库单历史', N'[{"text":"查询","value":"Search"}]', N'', NULL, N'1', N'inboundOrder_hty', N'19', N'/inboundOrder_hty', N'0', N'0', N'admin', N'2024-11-18 19:14:27.403', N'admin', N'2024-11-18 19:21:40.857') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'44', N'入库单明细历史', N'[{"text":"查询","value":"Search"}]', N'', NULL, N'0', N'Dt_InboundOrderDetail_hty', N'19', N'/Dt_InboundOrderDetail_hty', N'0', N'0', N'admin', N'2024-11-18 19:15:22.410', NULL, NULL) GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'45', N'出库单历史', N'[{"text":"查询","value":"Search"}]', N'', NULL, N'1', N'outboundOrder_hty', N'19', N'/outboundOrder_hty', N'0', N'0', N'admin', N'2024-11-18 19:16:01.690', N'admin', N'2024-11-18 19:31:41.907') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'46', N'出库单明细历史', N'[{"text":"查询","value":"Search"}]', N'', NULL, N'0', N'Dt_OutboundOrderDetail_hty', N'19', N'/Dt_OutboundOrderDetail_hty', N'0', N'0', N'admin', N'2024-11-18 19:16:30.597', NULL, NULL) GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'47', N'托盘码信息', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"}]', N'', NULL, N'1', N'Dt_PalletCodeInfo', N'17', N'/palletCodeInfo', N'0', N'0', N'admin', N'2025-01-13 15:41:41.103', N'admin', N'2025-01-13 16:50:05.870') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'48', N'缓存仓', N'[{"text":"查询","value":"Search"}]', N'chengpincangku', N'1', N'1', N'/', N'0', N'pages/stash/index', N'600', N'1', N'admin', N'2024-12-24 15:38:29.000', N'admin', N'2024-12-24 15:38:34.000') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'空托入库', N'[{"text":"查询","value":"Search"}]', N'ruku', N'', N'1', N'/', N'48', N'pages/stash/InEmpty', N'700', N'1', N'admin', N'2024-11-20 13:56:06.250', N'admin', N'2024-12-27 17:01:38.000') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'空托出库', N'[{"text":"查询","value":"Search"}]', N'chuku', N'', N'1', N'/', N'48', N'出空托', N'600', N'1', N'admin', N'2024-11-20 13:56:06.250', N'admin', N'2024-12-27 17:01:38.000') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'51', N'PDA权限管理', N'[{"text":"查询","value":"Search"}]', N'', NULL, N'1', N'permissionPDA', N'1', N'/permissionPDA', N'0', N'0', N'admin', N'2025-03-12 18:21:16.517', NULL, NULL) GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'52', N'出库完成', N'[{"text":"查询","value":"Search"}]', N'ruku', N'', N'1', N'/', N'48', N'pages/stash/OutTaskFinish', N'500', N'1', N'admin', N'2024-11-20 13:56:06.250', N'admin', N'2024-12-27 17:01:38.000') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'53', N'放货完成', N'[{"text":"查询","value":"Search"}]', N'chuku', N'', N'1', N'/', N'48', N'入库放货完成', N'400', N'1', N'admin', N'2024-11-20 13:56:06.250', N'admin', N'2024-12-27 17:01:38.000') GO SET IDENTITY_INSERT [dbo].[Sys_Menu] OFF GO -- ---------------------------- -- Table structure for Sys_Role -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Role]') AND type IN ('U')) DROP TABLE [dbo].[Sys_Role] GO CREATE TABLE [dbo].[Sys_Role] ( [RoleId] int IDENTITY(1,1) NOT NULL, [DeptId] int NULL, [Enable] tinyint NOT NULL, [ParentId] int NOT NULL, [RoleName] varchar(50) COLLATE Chinese_PRC_CI_AS NOT 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].[Sys_Role] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'RoleId' GO EXEC sp_addextendedproperty 'MS_Description', N'部门主键', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'DeptId' GO EXEC sp_addextendedproperty 'MS_Description', N'是否启用', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'Enable' GO EXEC sp_addextendedproperty 'MS_Description', N'父ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'ParentId' GO EXEC sp_addextendedproperty 'MS_Description', N'角色名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'RoleName' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'角色表', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role' GO -- ---------------------------- -- Records of Sys_Role -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_Role] ON GO INSERT INTO [dbo].[Sys_Role] ([RoleId], [DeptId], [Enable], [ParentId], [RoleName], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'111', N'1', N'0', N'超级管理员', N'超级管理员', N'2024-10-21 14:40:53.107', N'admin', N'2024-04-29 13:53:44.717') GO INSERT INTO [dbo].[Sys_Role] ([RoleId], [DeptId], [Enable], [ParentId], [RoleName], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', NULL, N'1', N'1', N'管理员', N'admin', N'2024-10-30 21:21:55.090', N'admin', N'2024-10-30 21:43:40.213') GO INSERT INTO [dbo].[Sys_Role] ([RoleId], [DeptId], [Enable], [ParentId], [RoleName], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', NULL, N'1', N'2', N'员工', N'admin', N'2024-10-30 21:22:26.147', N'admin', N'2024-10-30 22:42:33.127') GO INSERT INTO [dbo].[Sys_Role] ([RoleId], [DeptId], [Enable], [ParentId], [RoleName], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'5', NULL, N'1', N'2', N'PDA', N'admin', N'2025-03-13 11:46:54.960', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Sys_Role] OFF GO -- ---------------------------- -- Table structure for Sys_RoleAuth -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_RoleAuth]') AND type IN ('U')) DROP TABLE [dbo].[Sys_RoleAuth] GO CREATE TABLE [dbo].[Sys_RoleAuth] ( [AuthId] int IDENTITY(1,1) NOT NULL, [AuthValue] varchar(500) COLLATE Chinese_PRC_CI_AS NULL, [MenuId] int NOT NULL, [RoleId] int NULL, [UserId] int 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].[Sys_RoleAuth] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'角色身份验证ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'AuthId' GO EXEC sp_addextendedproperty 'MS_Description', N'用户权限', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'AuthValue' GO EXEC sp_addextendedproperty 'MS_Description', N'菜单ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'MenuId' GO EXEC sp_addextendedproperty 'MS_Description', N'角色ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'RoleId' GO EXEC sp_addextendedproperty 'MS_Description', N'用户ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'UserId' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'角色身份验证管理', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth' GO -- ---------------------------- -- Records of Sys_RoleAuth -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_RoleAuth] ON GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'136', N'Search,Add,Delete,Update,Import,Export', N'1', N'1', NULL, N'admin', N'2024-10-21 14:40:53.577', N'admin', N'2024-02-22 09:31:16.363') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'137', N'Search,Add,Delete,Update,Import,Export', N'2', N'1', NULL, N'admin', N'2024-10-21 14:40:53.577', N'admin', N'2024-04-29 15:04:07.830') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'138', N'Search,Add,Delete,Update,Import,Export', N'3', N'1', NULL, N'admin', N'2024-10-21 14:40:53.577', N'admin', N'2024-02-22 09:31:16.363') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'140', N'Search,Add,Delete,Update,Import,Export', N'4', N'1', NULL, N'admin', N'2024-10-21 14:40:53.577', N'admin', N'2024-02-22 09:31:16.363') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'141', N'Search,Add,Delete,Update,Import,Export', N'5', N'1', NULL, N'admin', N'2024-10-21 14:40:53.577', N'admin', N'2024-02-22 09:31:16.363') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'143', N'Search,Add,Delete,Update,Import,Export', N'6', N'1', NULL, N'admin', N'2024-10-21 14:40:53.577', N'admin', N'2024-02-22 09:31:16.363') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'144', N'Search,Add,Delete,Update,Import,Export', N'7', N'1', NULL, N'admin', N'2024-10-21 14:40:53.577', N'admin', N'2024-04-29 15:00:47.033') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'146', N'Search,Add,Delete,Update,Import,Export', N'8', N'1', NULL, N'admin', N'2024-10-21 14:40:53.577', N'admin', N'2024-04-29 15:04:07.830') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'148', N'Search,Add,Delete,Update,Import,Export', N'9', N'1', NULL, N'admin', N'2024-10-21 14:40:53.577', N'admin', N'2024-02-22 09:31:16.363') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'154', N'Search,Add,Delete,Update,Import,Export', N'12', N'1', NULL, N'admin', N'2024-10-21 14:40:53.577', NULL, N'2024-09-04 11:06:51.967') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'155', N'Search', N'13', N'1', NULL, N'admin', N'2024-10-21 14:40:53.577', N'admin', N'2024-10-30 22:15:08.717') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'159', N'Search,Add,Delete', N'25', N'2', NULL, N'admin', N'2024-10-30 21:48:08.927', N'admin', N'2024-11-19 10:01:18.430') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'160', N'Search,Enable,Disable', N'21', N'2', NULL, N'admin', N'2024-10-30 21:48:08.927', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'161', N'Search', N'17', N'2', NULL, N'admin', N'2024-10-30 21:48:08.927', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'162', N'Search,Enable,Disable', N'22', N'2', NULL, N'admin', N'2024-10-30 21:48:08.927', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'163', N'Search', N'12', N'2', NULL, N'admin', N'2024-10-30 21:48:08.927', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'164', N'Search', N'31', N'2', NULL, N'admin', N'2024-10-30 21:48:08.930', N'admin', N'2024-11-13 17:10:30.557') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'165', N'Search,Add,Delete', N'27', N'2', NULL, N'admin', N'2024-10-30 21:48:08.930', N'admin', N'2024-11-19 10:01:18.433') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'166', N'Search,enableStatus', N'23', N'2', NULL, N'admin', N'2024-10-30 21:48:08.930', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'167', N'Search', N'19', N'2', NULL, N'admin', N'2024-10-30 21:48:08.930', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'168', N'Search,Add,Delete,Update,Import', N'24', N'2', NULL, N'admin', N'2024-10-30 21:48:08.930', N'admin', N'2025-02-11 13:40:11.947') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'169', N'Search', N'13', N'2', NULL, N'admin', N'2024-10-30 21:48:08.930', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'170', N'Search', N'42', N'2', NULL, N'admin', N'2024-10-30 21:48:08.930', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'171', N'Search', N'25', N'3', NULL, N'admin', N'2024-10-30 21:49:42.107', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'172', N'Search', N'21', N'3', NULL, N'admin', N'2024-10-30 21:49:42.107', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'173', N'Search', N'17', N'3', NULL, N'admin', N'2024-10-30 21:49:42.107', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'174', N'Search', N'22', N'3', NULL, N'admin', N'2024-10-30 21:49:42.107', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'175', N'Search', N'12', N'3', NULL, N'admin', N'2024-10-30 21:49:42.107', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'176', N'Search', N'31', N'3', NULL, N'admin', N'2024-10-30 21:49:42.110', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'178', N'Search', N'23', N'3', NULL, N'admin', N'2024-10-30 21:49:42.110', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'179', N'Search', N'19', N'3', NULL, N'admin', N'2024-10-30 21:49:42.110', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'180', N'Search', N'24', N'3', NULL, N'admin', N'2024-10-30 21:49:42.110', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'181', N'Search', N'13', N'3', NULL, N'admin', N'2024-10-30 21:49:42.110', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'182', N'Search', N'42', N'3', NULL, N'admin', N'2024-10-30 21:49:42.110', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'183', N'Search', N'1', N'2', NULL, N'admin', N'2024-10-30 21:52:04.093', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'184', N'Search,Add,Delete,Update', N'2', N'2', NULL, N'admin', N'2024-10-30 21:52:04.093', N'admin', N'2024-11-19 10:00:36.460') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'185', N'Search', N'3', N'2', NULL, N'admin', N'2024-10-30 21:52:04.093', N'Test1', N'2024-10-30 21:52:32.490') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'186', N'Search,Add,Delete,Update', N'4', N'2', NULL, N'admin', N'2024-10-30 21:52:04.097', N'admin', N'2024-11-19 10:00:36.467') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'187', N'Search,Add,Delete,Update,Import,Export', N'29', N'1', NULL, N'admin', N'2024-10-30 22:15:08.747', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'188', N'Search,Add,Delete,Update,Import,Export', N'25', N'1', NULL, N'admin', N'2024-10-30 22:15:08.750', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'189', N'Search,Add,Delete,Update,Import,Export,Enable,Disable', N'21', N'1', NULL, N'admin', N'2024-10-30 22:15:08.750', N'admin', N'2024-10-30 22:16:18.037') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'190', N'Search,Add,Delete,Update,Import,Export', N'17', N'1', NULL, N'admin', N'2024-10-30 22:15:08.750', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'191', N'Search,Add,Delete,Update,Import,Export', N'30', N'1', NULL, N'admin', N'2024-10-30 22:15:08.753', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'192', N'Search', N'32', N'1', NULL, N'admin', N'2024-10-30 22:15:08.753', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'193', N'Search,Add,Delete,Update,Import,Export,Enable,Disable', N'22', N'1', NULL, N'admin', N'2024-10-30 22:15:08.753', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'194', N'Search,Update,Export,Enable,Disable', N'31', N'1', NULL, N'admin', N'2024-10-30 22:15:08.753', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'195', N'Search,Add,Delete,Update,Import,Export', N'27', N'1', NULL, N'admin', N'2024-10-30 22:15:08.753', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'196', N'Search,enableStatus', N'23', N'1', NULL, N'admin', N'2024-10-30 22:15:08.753', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'197', N'Search', N'19', N'1', NULL, N'admin', N'2024-10-30 22:15:08.753', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'198', N'Search,Add,Delete,Update,Import,Export', N'24', N'1', NULL, N'admin', N'2024-10-30 22:15:08.757', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'199', N'Search', N'20', N'1', NULL, N'admin', N'2024-10-30 22:15:08.757', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'200', N'Search', N'42', N'1', NULL, N'admin', N'2024-10-30 22:15:08.757', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'201', N'Search', N'29', N'2', NULL, N'admin', N'2024-11-13 17:10:30.593', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'202', N'Search', N'30', N'2', NULL, N'admin', N'2024-11-13 17:10:30.597', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'203', N'Search', N'32', N'2', NULL, N'admin', N'2024-11-13 17:10:30.597', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'204', N'Search', N'20', N'2', NULL, N'admin', N'2024-11-13 17:10:30.597', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'205', N'Search', N'8', N'2', NULL, N'admin', N'2024-11-19 10:00:36.533', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'206', N'Search', N'43', N'2', NULL, N'admin', N'2024-11-19 10:00:36.540', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'207', N'Search', N'45', N'2', NULL, N'admin', N'2024-11-19 10:00:36.540', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'208', N'Search', N'9', N'2', NULL, N'admin', N'2024-11-19 10:00:36.543', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1208', N'Search', N'49', N'5', NULL, N'admin', N'2025-03-13 11:47:31.703', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1209', N'Search', N'50', N'5', NULL, N'admin', N'2025-03-13 11:47:31.707', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1210', N'Search', N'48', N'5', NULL, N'admin', N'2025-03-13 11:47:31.707', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1211', N'Search', N'52', N'5', NULL, N'admin', N'2025-04-20 11:06:33.873', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1212', N'Search', N'53', N'5', NULL, N'admin', N'2025-04-20 11:06:33.873', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Sys_RoleAuth] OFF GO -- ---------------------------- -- Table structure for Sys_Tenant -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Tenant]') AND type IN ('U')) DROP TABLE [dbo].[Sys_Tenant] GO CREATE TABLE [dbo].[Sys_Tenant] ( [TenantId] int IDENTITY(1,1) NOT NULL, [TenantName] varchar(200) COLLATE Chinese_PRC_CI_AS NOT NULL, [TenantType] int NOT NULL, [DbType] int NOT NULL, [ConnectionString] varchar(1000) COLLATE Chinese_PRC_CI_AS NOT NULL, [Status] int NOT NULL, [Remark] varchar(2000) 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].[Sys_Tenant] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'租户ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'TenantId' GO EXEC sp_addextendedproperty 'MS_Description', N'租户名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'TenantName' GO EXEC sp_addextendedproperty 'MS_Description', N'租户类型', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'TenantType' GO EXEC sp_addextendedproperty 'MS_Description', N'数据库类型', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'DbType' GO EXEC sp_addextendedproperty 'MS_Description', N'连接字符串', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'ConnectionString' GO EXEC sp_addextendedproperty 'MS_Description', N'状态', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'Status' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'租户', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant' GO -- ---------------------------- -- Records of Sys_Tenant -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_Tenant] ON GO SET IDENTITY_INSERT [dbo].[Sys_Tenant] OFF GO -- ---------------------------- -- Table structure for Sys_User -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_User]') AND type IN ('U')) DROP TABLE [dbo].[Sys_User] GO CREATE TABLE [dbo].[Sys_User] ( [User_Id] int IDENTITY(1,1) NOT NULL, [UserName] varchar(100) COLLATE Chinese_PRC_CI_AS NOT NULL, [Role_Id] int NOT NULL, [RoleName] varchar(100) COLLATE Chinese_PRC_CI_AS NULL, [PhoneNo] varchar(11) COLLATE Chinese_PRC_CI_AS NULL, [Remark] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [UserPwd] varchar(200) COLLATE Chinese_PRC_CI_AS NOT NULL, [UserTrueName] varchar(100) COLLATE Chinese_PRC_CI_AS NOT NULL, [DeptName] varchar(100) COLLATE Chinese_PRC_CI_AS NULL, [Dept_Id] int NULL, [Email] varchar(100) COLLATE Chinese_PRC_CI_AS NULL, [Enable] tinyint NOT NULL, [Gender] int NULL, [HeadImageUrl] varchar(500) COLLATE Chinese_PRC_CI_AS NULL, [LastModifyPwdDate] datetime NULL, [Address] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [AuditDate] datetime NULL, [AuditStatus] int NULL, [Auditor] varchar(100) COLLATE Chinese_PRC_CI_AS NULL, [Token] varchar(500) COLLATE Chinese_PRC_CI_AS NULL, [TenantId] bigint DEFAULT '0' NOT 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].[Sys_User] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'用户ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'User_Id' GO EXEC sp_addextendedproperty 'MS_Description', N'帐号', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'UserName' GO EXEC sp_addextendedproperty 'MS_Description', N'角色ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Role_Id' GO EXEC sp_addextendedproperty 'MS_Description', N'角色名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'RoleName' GO EXEC sp_addextendedproperty 'MS_Description', N'电话', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'PhoneNo' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'密码', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'UserPwd' GO EXEC sp_addextendedproperty 'MS_Description', N'真实姓名', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'UserTrueName' GO EXEC sp_addextendedproperty 'MS_Description', N'部门', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'DeptName' GO EXEC sp_addextendedproperty 'MS_Description', N'部门ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Dept_Id' GO EXEC sp_addextendedproperty 'MS_Description', N'邮箱', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Email' GO EXEC sp_addextendedproperty 'MS_Description', N'是否可用', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Enable' GO EXEC sp_addextendedproperty 'MS_Description', N'性别', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Gender' GO EXEC sp_addextendedproperty 'MS_Description', N'头像', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'HeadImageUrl' GO EXEC sp_addextendedproperty 'MS_Description', N'最后密码修改时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'LastModifyPwdDate' GO EXEC sp_addextendedproperty 'MS_Description', N'地址', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Address' GO EXEC sp_addextendedproperty 'MS_Description', N'审核时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'AuditDate' GO EXEC sp_addextendedproperty 'MS_Description', N'审核状态', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'AuditStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'审核人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Auditor' GO EXEC sp_addextendedproperty 'MS_Description', N'令牌', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Token' GO EXEC sp_addextendedproperty 'MS_Description', N'租户ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'TenantId' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'用户表', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User' GO -- ---------------------------- -- Records of Sys_User -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_User] ON GO INSERT INTO [dbo].[Sys_User] ([User_Id], [UserName], [Role_Id], [RoleName], [PhoneNo], [Remark], [UserPwd], [UserTrueName], [DeptName], [Dept_Id], [Email], [Enable], [Gender], [HeadImageUrl], [LastModifyPwdDate], [Address], [AuditDate], [AuditStatus], [Auditor], [Token], [TenantId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'admin', N'1', NULL, NULL, NULL, N'j79rYYvCz4vdhcboB1Ausg==', N'超级管理员', NULL, NULL, NULL, N'1', N'0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'0', N'系统', N'2024-10-21 14:40:55.403', N'admin', N'2024-10-30 23:24:58.403') GO INSERT INTO [dbo].[Sys_User] ([User_Id], [UserName], [Role_Id], [RoleName], [PhoneNo], [Remark], [UserPwd], [UserTrueName], [DeptName], [Dept_Id], [Email], [Enable], [Gender], [HeadImageUrl], [LastModifyPwdDate], [Address], [AuditDate], [AuditStatus], [Auditor], [Token], [TenantId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'Test1', N'2', NULL, NULL, NULL, N'j79rYYvCz4vdhcboB1Ausg==', N'Test1', NULL, NULL, NULL, N'1', N'0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'0', N'admin', N'2024-10-30 21:50:05.493', N'admin', N'2024-10-30 23:24:44.300') GO INSERT INTO [dbo].[Sys_User] ([User_Id], [UserName], [Role_Id], [RoleName], [PhoneNo], [Remark], [UserPwd], [UserTrueName], [DeptName], [Dept_Id], [Email], [Enable], [Gender], [HeadImageUrl], [LastModifyPwdDate], [Address], [AuditDate], [AuditStatus], [Auditor], [Token], [TenantId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'Test2', N'3', NULL, NULL, NULL, N'j79rYYvCz4vdhcboB1Ausg==', N'Test2', NULL, NULL, NULL, N'1', N'0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'0', N'admin', N'2024-10-30 21:50:32.987', N'Test1', N'2024-10-30 22:55:37.473') GO INSERT INTO [dbo].[Sys_User] ([User_Id], [UserName], [Role_Id], [RoleName], [PhoneNo], [Remark], [UserPwd], [UserTrueName], [DeptName], [Dept_Id], [Email], [Enable], [Gender], [HeadImageUrl], [LastModifyPwdDate], [Address], [AuditDate], [AuditStatus], [Auditor], [Token], [TenantId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'PDA1', N'5', NULL, NULL, NULL, N'j79rYYvCz4vdhcboB1Ausg==', N'PDA1', NULL, NULL, NULL, N'1', N'0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, N'0', N'admin', N'2025-03-13 11:48:01.950', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Sys_User] OFF GO -- ---------------------------- -- Auto increment value for Dt_AnalysisRuleConfig -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_AnalysisRuleConfig]', RESEED, 2) GO -- ---------------------------- -- Primary Key structure for table Dt_AnalysisRuleConfig -- ---------------------------- ALTER TABLE [dbo].[Dt_AnalysisRuleConfig] ADD CONSTRAINT [PK_Dt_AnalysisRuleConfig_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 -- ---------------------------- -- Auto increment value for Dt_AreaInfo -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_AreaInfo]', RESEED, 1004) GO -- ---------------------------- -- Primary Key structure for table Dt_AreaInfo -- ---------------------------- ALTER TABLE [dbo].[Dt_AreaInfo] ADD CONSTRAINT [PK_Dt_AreaInfo_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 -- ---------------------------- -- Auto increment value for Dt_AreaRouter -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_AreaRouter]', RESEED, 1) GO -- ---------------------------- -- Primary Key structure for table Dt_AreaRouter -- ---------------------------- ALTER TABLE [dbo].[Dt_AreaRouter] ADD CONSTRAINT [PK_Dt_AreaRouter_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 -- ---------------------------- -- Auto increment value for Dt_CachePoint -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_CachePoint]', RESEED, 1) GO -- ---------------------------- -- Primary Key structure for table Dt_CachePoint -- ---------------------------- ALTER TABLE [dbo].[Dt_CachePoint] ADD CONSTRAINT [PK_Dt_CachePoint_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 -- ---------------------------- -- Auto increment value for Dt_CodeRuleConfig -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_CodeRuleConfig]', RESEED, 1) GO -- ---------------------------- -- Primary Key structure for table Dt_CodeRuleConfig -- ---------------------------- ALTER TABLE [dbo].[Dt_CodeRuleConfig] ADD CONSTRAINT [PK_Dt_CodeRuleConfig_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 -- ---------------------------- -- Auto increment value for Dt_InboundOrder -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_InboundOrder]', RESEED, 2054) GO -- ---------------------------- -- Primary Key structure for table Dt_InboundOrder -- ---------------------------- ALTER TABLE [dbo].[Dt_InboundOrder] ADD CONSTRAINT [PK_Dt_InboundOrder_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 -- ---------------------------- -- Auto increment value for Dt_InboundOrder_Hty -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_InboundOrder_Hty]', RESEED, 1001) GO -- ---------------------------- -- Primary Key structure for table Dt_InboundOrder_Hty -- ---------------------------- ALTER TABLE [dbo].[Dt_InboundOrder_Hty] ADD CONSTRAINT [PK_Dt_InboundOrder_Hty_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 -- ---------------------------- -- Auto increment value for Dt_InboundOrderDetail -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_InboundOrderDetail]', RESEED, 1331) GO -- ---------------------------- -- Primary Key structure for table Dt_InboundOrderDetail -- ---------------------------- ALTER TABLE [dbo].[Dt_InboundOrderDetail] ADD CONSTRAINT [PK_Dt_InboundOrderDetail_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 -- ---------------------------- -- Auto increment value for Dt_InboundOrderDetail_Hty -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_InboundOrderDetail_Hty]', RESEED, 1003) GO -- ---------------------------- -- Primary Key structure for table Dt_InboundOrderDetail_Hty -- ---------------------------- ALTER TABLE [dbo].[Dt_InboundOrderDetail_Hty] ADD CONSTRAINT [PK_Dt_InboundOrderDetail_Hty_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 -- ---------------------------- -- 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_copy1] 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 -- ---------------------------- -- Auto increment value for Dt_LocationInfo_copy1 -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_LocationInfo_copy1]', RESEED, 1279) GO -- ---------------------------- -- Primary Key structure for table Dt_LocationInfo_copy1 -- ---------------------------- ALTER TABLE [dbo].[Dt_LocationInfo_copy1] ADD CONSTRAINT [PK_Dt_LocationInfo_Id_copy1_copy1] 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 -- ---------------------------- -- Auto increment value for Dt_LocationStatusChangeRecord -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_LocationStatusChangeRecord]', RESEED, 107) GO -- ---------------------------- -- Primary Key structure for table Dt_LocationStatusChangeRecord -- ---------------------------- ALTER TABLE [dbo].[Dt_LocationStatusChangeRecord] ADD CONSTRAINT [PK_Dt_LocationStatusChangeRecord_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 -- ---------------------------- -- Auto increment value for Dt_MaterielInfo -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_MaterielInfo]', RESEED, 7) GO -- ---------------------------- -- Primary Key structure for table Dt_MaterielInfo -- ---------------------------- ALTER TABLE [dbo].[Dt_MaterielInfo] ADD CONSTRAINT [PK_Dt_MaterielInfo_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 -- ---------------------------- -- Auto increment value for Dt_OutboundOrder -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_OutboundOrder]', RESEED, 1011) GO -- ---------------------------- -- Primary Key structure for table Dt_OutboundOrder -- ---------------------------- ALTER TABLE [dbo].[Dt_OutboundOrder] ADD CONSTRAINT [PK_Dt_OutboundOrder_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 -- ---------------------------- -- Auto increment value for Dt_OutboundOrder_Hty -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_OutboundOrder_Hty]', RESEED, 1) GO -- ---------------------------- -- Primary Key structure for table Dt_OutboundOrder_Hty -- ---------------------------- ALTER TABLE [dbo].[Dt_OutboundOrder_Hty] ADD CONSTRAINT [PK_Dt_OutboundOrder_Hty_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 -- ---------------------------- -- Auto increment value for Dt_OutboundOrderDetail -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_OutboundOrderDetail]', RESEED, 1012) GO -- ---------------------------- -- Primary Key structure for table Dt_OutboundOrderDetail -- ---------------------------- ALTER TABLE [dbo].[Dt_OutboundOrderDetail] ADD CONSTRAINT [PK_Dt_OutboundOrderDetail_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 -- ---------------------------- -- Auto increment value for Dt_OutboundOrderDetail_Hty -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_OutboundOrderDetail_Hty]', RESEED, 1) GO -- ---------------------------- -- Primary Key structure for table Dt_OutboundOrderDetail_Hty -- ---------------------------- ALTER TABLE [dbo].[Dt_OutboundOrderDetail_Hty] ADD CONSTRAINT [PK_Dt_OutboundOrderDetail_Hty_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 -- ---------------------------- -- Auto increment value for Dt_OutStockLockInfo -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_OutStockLockInfo]', RESEED, 1163) GO -- ---------------------------- -- Primary Key structure for table Dt_OutStockLockInfo -- ---------------------------- ALTER TABLE [dbo].[Dt_OutStockLockInfo] ADD CONSTRAINT [PK_Dt_OutStockLockInfo_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 -- ---------------------------- -- Auto increment value for Dt_PalletCodeInfo -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_PalletCodeInfo]', RESEED, 7) GO -- ---------------------------- -- Primary Key structure for table Dt_PalletCodeInfo -- ---------------------------- ALTER TABLE [dbo].[Dt_PalletCodeInfo] ADD CONSTRAINT [PK_Dt_PalletCodeInfo_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 -- ---------------------------- -- Auto increment value for Dt_RoadwayInfo -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_RoadwayInfo]', RESEED, 1001) GO -- ---------------------------- -- Primary Key structure for table Dt_RoadwayInfo -- ---------------------------- ALTER TABLE [dbo].[Dt_RoadwayInfo] ADD CONSTRAINT [PK_Dt_RoadwayInfo_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 -- ---------------------------- -- Auto increment value for Dt_StockInfo -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_StockInfo]', RESEED, 2254) GO -- ---------------------------- -- Primary Key structure for table Dt_StockInfo -- ---------------------------- ALTER TABLE [dbo].[Dt_StockInfo] ADD CONSTRAINT [PK_Dt_StockInfo_Id_copy1] 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 -- ---------------------------- -- Auto increment value for Dt_StockInfo_Hty -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_StockInfo_Hty]', RESEED, 1053) GO -- ---------------------------- -- Primary Key structure for table Dt_StockInfo_Hty -- ---------------------------- ALTER TABLE [dbo].[Dt_StockInfo_Hty] ADD CONSTRAINT [PK_Dt_StockInfo_Hty_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 -- ---------------------------- -- Auto increment value for Dt_StockInfoDetail -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_StockInfoDetail]', RESEED, 2266) GO -- ---------------------------- -- Primary Key structure for table Dt_StockInfoDetail -- ---------------------------- ALTER TABLE [dbo].[Dt_StockInfoDetail] ADD CONSTRAINT [PK_Dt_StockInfoDetail_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 -- ---------------------------- -- Auto increment value for Dt_StockInfoDetail_Hty -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_StockInfoDetail_Hty]', RESEED, 1053) GO -- ---------------------------- -- Primary Key structure for table Dt_StockInfoDetail_Hty -- ---------------------------- ALTER TABLE [dbo].[Dt_StockInfoDetail_Hty] ADD CONSTRAINT [PK_Dt_StockInfoDetail_Hty_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 -- ---------------------------- -- Auto increment value for Dt_StockQuantityChangeRecord -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_StockQuantityChangeRecord]', RESEED, 2239) GO -- ---------------------------- -- Primary Key structure for table Dt_StockQuantityChangeRecord -- ---------------------------- ALTER TABLE [dbo].[Dt_StockQuantityChangeRecord] ADD CONSTRAINT [PK_Dt_StockQuantityChangeRecord_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 -- ---------------------------- -- Auto increment value for Dt_Task -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_Task]', RESEED, 2643) GO -- ---------------------------- -- Primary Key structure for table Dt_Task -- ---------------------------- ALTER TABLE [dbo].[Dt_Task] ADD CONSTRAINT [PK_Dt_Task_TaskId] PRIMARY KEY CLUSTERED ([TaskId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Dt_Task_Hty -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_Task_Hty]', RESEED, 1136) GO -- ---------------------------- -- Primary Key structure for table Dt_Task_Hty -- ---------------------------- ALTER TABLE [dbo].[Dt_Task_Hty] ADD CONSTRAINT [PK_Dt_Task_Hty_TaskId] PRIMARY KEY CLUSTERED ([TaskId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Dt_Warehouse -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_Warehouse]', RESEED, 1007) GO -- ---------------------------- -- Primary Key structure for table Dt_Warehouse -- ---------------------------- ALTER TABLE [dbo].[Dt_Warehouse] ADD CONSTRAINT [PK_Dt_Warehouse_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 -- ---------------------------- -- Auto increment value for Sys_Department -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_Department]', RESEED, 1) GO -- ---------------------------- -- Primary Key structure for table Sys_Department -- ---------------------------- ALTER TABLE [dbo].[Sys_Department] ADD CONSTRAINT [PK_Sys_Department_DepartmentId] PRIMARY KEY CLUSTERED ([DepartmentId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_Dictionary -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_Dictionary]', RESEED, 2084) GO -- ---------------------------- -- Primary Key structure for table Sys_Dictionary -- ---------------------------- ALTER TABLE [dbo].[Sys_Dictionary] ADD CONSTRAINT [PK_Sys_Dictionary_DicId] PRIMARY KEY CLUSTERED ([DicId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_DictionaryList -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_DictionaryList]', RESEED, 459) GO -- ---------------------------- -- Primary Key structure for table Sys_DictionaryList -- ---------------------------- ALTER TABLE [dbo].[Sys_DictionaryList] ADD CONSTRAINT [PK_Sys_DictionaryList_DicListId] PRIMARY KEY CLUSTERED ([DicListId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_Log -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_Log]', RESEED, 4034) GO -- ---------------------------- -- Primary Key structure for table Sys_Log -- ---------------------------- ALTER TABLE [dbo].[Sys_Log] ADD CONSTRAINT [PK_Sys_Log_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 -- ---------------------------- -- Auto increment value for Sys_Menu -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_Menu]', RESEED, 53) GO -- ---------------------------- -- Primary Key structure for table Sys_Menu -- ---------------------------- ALTER TABLE [dbo].[Sys_Menu] ADD CONSTRAINT [PK_Sys_Menu_MenuId] PRIMARY KEY CLUSTERED ([MenuId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_Role -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_Role]', RESEED, 5) GO -- ---------------------------- -- Primary Key structure for table Sys_Role -- ---------------------------- ALTER TABLE [dbo].[Sys_Role] ADD CONSTRAINT [PK_Sys_Role_RoleId] PRIMARY KEY CLUSTERED ([RoleId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_RoleAuth -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_RoleAuth]', RESEED, 1212) GO -- ---------------------------- -- Primary Key structure for table Sys_RoleAuth -- ---------------------------- ALTER TABLE [dbo].[Sys_RoleAuth] ADD CONSTRAINT [PK_Sys_RoleAuth_AuthId] PRIMARY KEY CLUSTERED ([AuthId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_Tenant -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_Tenant]', RESEED, 1) GO -- ---------------------------- -- Primary Key structure for table Sys_Tenant -- ---------------------------- ALTER TABLE [dbo].[Sys_Tenant] ADD CONSTRAINT [PK_Sys_Tenant_TenantId] PRIMARY KEY CLUSTERED ([TenantId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_User -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_User]', RESEED, 4) GO -- ---------------------------- -- Primary Key structure for table Sys_User -- ---------------------------- ALTER TABLE [dbo].[Sys_User] ADD CONSTRAINT [PK_Sys_User_User_Id] PRIMARY KEY CLUSTERED ([User_Id]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO