diff --git a/DeviceRepair.DataAccess/CheckForm/CheckFormDa.cs b/DeviceRepair.DataAccess/CheckForm/CheckFormDa.cs index eab1976..9bd32e6 100644 --- a/DeviceRepair.DataAccess/CheckForm/CheckFormDa.cs +++ b/DeviceRepair.DataAccess/CheckForm/CheckFormDa.cs @@ -18,7 +18,7 @@ namespace DeviceRepair.DataAccess.CheckForm public class CheckFormDa : BaseDa { private static readonly Logger log = LogManager.GetCurrentClassLogger(); - + public CheckFormDa(IDictionary apiParams) : base(apiParams) { @@ -33,7 +33,7 @@ namespace DeviceRepair.DataAccess.CheckForm DataSet dsDatas = new DataSet("Datas"); try { - string formName = GetParamString("FormName","点检表名称"); + string formName = GetParamString("FormName", "点检表名称"); var exp = Expressionable.Create() .AndIF(!formName.IsNull(), x => SqlFunc.Contains(x.FormName, SqlFunc.Trim(formName))).ToExpression();//拼接表达式 @@ -76,36 +76,25 @@ namespace DeviceRepair.DataAccess.CheckForm if (plan.Belong.Trim() == EnumDeviceBelong.AM.ToString()) { - DateTime maintenanceDate = GetParamDateTime("MaintenanceDate", "每日保养的保养日期"); - - string sql = - @"SELECT CAST(JSON_VALUE(ContentData, '$.Operation[0].MaintenanceTypeValue') AS INT) AS MaintenanceDayValue , FormPrimaryID -FROM dbo.MaintenanceRecord WHERE PlanPrimaryID = @PlanPrimaryID"; - - List days = devMain.Ado.SqlQuery(sql, new { PlanPrimaryID = plan.AutoID }); - - PlanRecordFormInfo item = days.FirstOrDefault(x => x.MaintenanceDayValue == maintenanceDate.Day); - if (item != null) + /* 判断当月AM是否存在点检记录 */ + var record = devMain.Queryable().First(x => x.PlanPrimaryID == plan.AutoID); + MaintenanceFormVersionInfo formData; + if (record != null) { - MaintenanceFormVersionInfo formData = devMain.Queryable().First(x => x.AutoID == item.FormPrimaryID); - if (formData == null) - { - throw new ArgumentException("当前设备的点检表不存在!"); - } - DataTable table2 = new List { formData }.ToDataTable(); - dsDatas.Tables.Add(table2); + formData = devMain.Queryable().First(x => x.AutoID == record.FormPrimaryID); } else { - MaintenanceFormVersionInfo formData = devMain.Queryable((t1, t2) => new object[] { JoinType.Inner, t1.MaintenanceAMFormVersion == t2.AutoID }) - .Where((t1, t2) => t1.AutoID == plan.EquipmentID).Select((t1, t2) => t2).First(); - if (formData == null) - { - throw new ArgumentException("当前设备的点检表不存在!"); - } - DataTable table2 = new List { formData }.ToDataTable(); - dsDatas.Tables.Add(table2); + formData = devMain.Queryable((t1, t2) => new object[] { JoinType.Inner, t1.MaintenanceAMFormVersion == t2.AutoID }) + .Where((t1, t2) => t1.AutoID == plan.EquipmentID).Select((t1, t2) => t2).First(); } + + if (formData == null) + { + throw new ArgumentException("当前设备的点检表不存在!"); + } + DataTable table2 = new List { formData }.ToDataTable(); + dsDatas.Tables.Add(table2); return new APIResponseData { Code = 1, Message = "操作成功!" }; } else if (plan.Belong.Trim() == EnumDeviceBelong.PM.ToString()) diff --git a/DeviceRepair.DataAccess/Data/BaseDa.cs b/DeviceRepair.DataAccess/Data/BaseDa.cs index 600dfee..5f81085 100644 --- a/DeviceRepair.DataAccess/Data/BaseDa.cs +++ b/DeviceRepair.DataAccess/Data/BaseDa.cs @@ -11,14 +11,14 @@ namespace DeviceRepair.DataAccess.Data public class BaseDa { #region 属性&字段 - + private SqlSugarClient deviceDB; private SqlSugarClient deviceLogDB; private SqlSugarClient sfcDataDB; private SqlSugarClient sfcAddOnDB; internal OperationModel OperationInfo; - + private IDictionary m_ApiParameters; /// @@ -133,7 +133,7 @@ namespace DeviceRepair.DataAccess.Data return sfcAddOnDB; } } - + #endregion #region 函数 @@ -152,7 +152,7 @@ namespace DeviceRepair.DataAccess.Data #region 方法 - + /// /// 取字符串参数 /// @@ -224,7 +224,7 @@ namespace DeviceRepair.DataAccess.Data } DateTime value; - if (!DateTime.TryParse(ApiParameters[Key]+"",out value)) + if (!DateTime.TryParse(ApiParameters[Key] + "", out value)) { throw new ArgumentException($"参数【{Caption}】传入值转时间类型出错!"); } @@ -254,7 +254,7 @@ namespace DeviceRepair.DataAccess.Data } Guid value; - if (!Guid.TryParse(ApiParameters[Key]+"",out value)) + if (!Guid.TryParse(ApiParameters[Key] + "", out value)) { throw new ArgumentException($"参数【{Caption}】传入值转通用唯一识别码类型出错!"); } @@ -272,7 +272,7 @@ namespace DeviceRepair.DataAccess.Data /// /// /// - public DataTable ToDataTable(IEnumerable varlist) + public DataTable IListToDataTable(IEnumerable varlist) { DataTable dtReturn = new DataTable(); PropertyInfo[] oProps = null; @@ -306,7 +306,44 @@ namespace DeviceRepair.DataAccess.Data return (dtReturn); } - + + /// + /// 集合 转 DataTable + /// + /// + /// + /// + public DataTable ListToDataTable(List varlist) + { + DataTable dtReturn = new DataTable(); + PropertyInfo[] oProps = typeof(T).GetProperties(); + dtReturn.TableName = typeof(T).Name; + + foreach (PropertyInfo pi in oProps) + { + Type colType = pi.PropertyType; + if ((colType.IsGenericType) && (colType.GetGenericTypeDefinition() == typeof(Nullable<>))) + { + colType = colType.GetGenericArguments()[0]; + } + + dtReturn.Columns.Add(new DataColumn(pi.Name, colType)); + } + + foreach (T rec in varlist) + { + DataRow dr = dtReturn.NewRow(); + foreach (PropertyInfo pi in oProps) + { + dr[pi.Name] = pi.GetValue(rec, null) == null ? DBNull.Value : pi.GetValue(rec, null); + } + + dtReturn.Rows.Add(dr); + } + + return (dtReturn); + } + #endregion } } \ No newline at end of file diff --git a/DeviceRepair.DataAccess/DeviceRepair.DataAccess.csproj b/DeviceRepair.DataAccess/DeviceRepair.DataAccess.csproj index 383f4dd..22c0ea4 100644 --- a/DeviceRepair.DataAccess/DeviceRepair.DataAccess.csproj +++ b/DeviceRepair.DataAccess/DeviceRepair.DataAccess.csproj @@ -100,6 +100,8 @@ + + diff --git a/DeviceRepair.DataAccess/PLAN/PlanDa.cs b/DeviceRepair.DataAccess/PLAN/PlanDa.cs index 71565cc..9660486 100644 --- a/DeviceRepair.DataAccess/PLAN/PlanDa.cs +++ b/DeviceRepair.DataAccess/PLAN/PlanDa.cs @@ -447,8 +447,8 @@ GROUP BY MaintenanceDay;"; } DataTable devDT = Dev.toDataTable(); - DataTable planDT = plans.ToDataTable(); - DataTable Records = records.ToDataTable(); + DataTable planDT = ListToDataTable(plans); + DataTable Records = ListToDataTable(records); dsDatas.Tables.Add(devDT); dsDatas.Tables.Add(planDT); dsDatas.Tables.Add(Records); @@ -494,7 +494,7 @@ GROUP BY MaintenanceDay;"; }).ToList(); if (Datas != null && Datas.Count > 0) - dsDatas.Tables.Add(Datas.toDataTable()); + dsDatas.Tables.Add(ListToDataTable(Datas)); return dsDatas; } catch (SqlException sqlEx) @@ -839,7 +839,7 @@ GROUP BY MaintenanceDay;"; /// /// /// - public APIResponseData Get_EquipmentPlanIsComplete(string EquipmentID) + public APIResponseData Get_EquipmentPlanIsComplete(string EquipmentID, int Banci) { try { @@ -853,9 +853,16 @@ GROUP BY MaintenanceDay;"; throw new ArgumentNullException("输入的设备编号错误或不存在!"); } - devMain.Ado.UseStoredProcedure().ExecuteCommand("proc_EquipmentPlanIsComplete", new { EquipmentDisplayID = EquipmentID }); + int Operation = base.GetParamInt("OPERATORAUTOID", "操作员"); + var parEquipmentDisplayID = new SugarParameter("@EquipmentDisplayID", EquipmentID); + var parBanci = new SugarParameter("@Banci", Banci); + var parCreateBy = new SugarParameter("@CreateBy", Operation); + var parCreateClient = new SugarParameter("@CreateClient", ApiParameters["CLIENTIP"]); + var parMsg = new SugarParameter("@Msg", null, true); - return new APIResponseData { Code = 1 }; + devMain.Ado.UseStoredProcedure().ExecuteCommand("proc_EquipmentPlanIsComplete", parEquipmentDisplayID, parBanci, parCreateBy, parCreateClient, parMsg); + + return new APIResponseData { Code = 1, Message = parMsg.Value + "" }; } catch (Exception ex) { diff --git a/DeviceRepair.DataAccess/Preserve/PreserveDa.cs b/DeviceRepair.DataAccess/Preserve/PreserveDa.cs index 8866a20..d7f41a8 100644 --- a/DeviceRepair.DataAccess/Preserve/PreserveDa.cs +++ b/DeviceRepair.DataAccess/Preserve/PreserveDa.cs @@ -80,7 +80,7 @@ namespace DeviceRepair.DataAccess.Preserve List entity = devMain.Queryable() .OrderBy(x => x.AutoID, OrderByType.Asc) - .Where(x => x.EquipmentPrimaryID == EquipmentPrimaryID && x.FormPrimaryID == FormPrimaryID + .Where(x => x.EquipmentPrimaryID == EquipmentPrimaryID //&& x.FormPrimaryID == FormPrimaryID && x.MYear == plan.MaintenanceYear && x.PlanPrimaryID == plan.AutoID).ToList(); if (entity == null || entity.Count == 0) @@ -450,10 +450,11 @@ namespace DeviceRepair.DataAccess.Preserve MaintenanceRecordSubmit model = new MaintenanceRecordSubmit(); DriveMaintencePlanInfo plan = devMain.Queryable().First(x => x.AutoID == PlanPrimaryKey); DeviceInformationInfo dev = devMain.Queryable().First(x => x.AutoID == plan.EquipmentID); - int FormID = plan.Belong.Trim() == EnumDeviceBelong.AM.ToString().Trim() ? dev.MaintenanceAMFormVersion : dev.MaintenanceFormVersion; List Datas = devMain.Queryable() - .Where(x => x.PlanPrimaryID == plan.AutoID && x.FormPrimaryID == FormID).ToList(); + .Where(x => x.PlanPrimaryID == plan.AutoID + //&& x.FormPrimaryID == FormID + ).ToList(); if (Datas != null && Datas.Count > 0) { @@ -587,7 +588,7 @@ namespace DeviceRepair.DataAccess.Preserve if (fs.Count > 0) { - DataTable table2 = fs.toDataTable(); + DataTable table2 = ListToDataTable(fs); table2.TableName = "Attachment"; dsDatas.Tables.Add(table2); } @@ -606,7 +607,7 @@ namespace DeviceRepair.DataAccess.Preserve if (im.Count > 0) { - DataTable table3 = fs.toDataTable(); + DataTable table3 = ListToDataTable(im); table3.TableName = "Image"; dsDatas.Tables.Add(table3); } @@ -628,6 +629,8 @@ namespace DeviceRepair.DataAccess.Preserve } } + + /// /// 获取设备保养记录信息 /// diff --git a/DeviceRepair.DataAccess/Script/5.0/Datas/DeviceRoute.sql b/DeviceRepair.DataAccess/Script/5.0/Datas/DeviceRoute.sql new file mode 100644 index 0000000..10d781d --- /dev/null +++ b/DeviceRepair.DataAccess/Script/5.0/Datas/DeviceRoute.sql @@ -0,0 +1,304 @@ +USE [DriveMaintenance] +GO +SET IDENTITY_INSERT [dbo].[DeviceRoute] ON +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (1, N'975a0c12-7efa-41e3-a2b3-16bd6726fd05', N'OEM', 1, 0, CAST(N'2024-04-24T09:46:38.210' AS DateTime), 1, NULL, NULL) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (2, N'f5e4109e-67c4-4f7d-b398-a67a4f6e1342', N'后道设备', 1, 1, CAST(N'2024-04-24T09:47:15.270' AS DateTime), 1, NULL, NULL) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (4, N'c5ddfac3-6139-4c6b-81b2-353cc64b12d8', N'纵切/车削机床', 1, 1, CAST(N'2024-04-24T09:47:37.600' AS DateTime), 1, NULL, NULL) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (5, N'a250fb7e-d81c-4059-ace3-be643ca10251', N'加工中心', 1, 1, CAST(N'2024-04-24T09:47:56.263' AS DateTime), 1, NULL, NULL) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (6, N'bb05aee4-aac5-464a-816e-c3b41a4fb755', N'KH', 1, 0, CAST(N'2024-04-24T09:48:27.220' AS DateTime), 1, NULL, NULL) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (7, N'eaf4ad83-e0da-4df2-a727-99ea12a7a290', N'纵切/车削机床', 1, 6, CAST(N'2024-04-24T09:49:02.593' AS DateTime), 1, NULL, NULL) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (8, N'd93b65ee-311d-46a7-a11b-add767662b06', N'后道设备', 1, 6, CAST(N'2024-04-24T09:49:10.943' AS DateTime), 1, NULL, NULL) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (9, N'54a49193-f6ba-4241-99c3-e7fa91cfe6ab', N'加工中心', 1, 6, CAST(N'2024-04-24T09:49:21.480' AS DateTime), 1, NULL, NULL) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (10, N'b837d2e9-f726-4caf-9a3d-77d72330f159', N'4轴加工中心', 1, 5, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (11, N'ec029a62-bfdb-4a80-b4eb-6d5b76a7c07b', N'5轴加工中心', 1, 5, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (12, N'935a4a25-e036-4a5e-bef4-a986a3e39386', N'LED UV固化箱', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (13, N'6503b341-afe3-4a39-82eb-969a738eb7b4', N'UV固化系统', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (14, N'8d7ea115-fd53-4f9d-9c02-68ec09371fd5', N'安川机械手', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (15, N'343f0ad8-753f-44df-9fcd-23b9a6d89f31', N'斑马标签打印机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (16, N'2da15a5e-156c-4fb1-8b13-c148259ffa5c', N'包装封口机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (17, N'54b2aefa-8ebc-468e-bc8b-486cda0a6679', N'保洁柜', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (18, N'ff2b0432-ed09-48c6-8f70-764663e3f800', N'标签打印机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (19, N'39590146-643c-4dbf-986c-2042bc286823', N'超声波清洗机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (20, N'b5e7abd9-c803-4ed0-9adb-077a6e1af96d', N'车铣复合加工中心', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (21, N'ff22a7b1-f722-41e5-8c88-0bc3a3bcc540', N'车铣复合加工中心', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (22, N'b14d9b1a-fa68-42e4-a602-3705655007f1', N'车削中心', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (23, N'ec1665c5-148e-4edd-b636-638e12e30c07', N'车削中心', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (24, N'738c677c-70bf-462f-a9db-a21ca0c575b3', N'车削中心自动上下料系统', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (25, N'9e55e88c-1c5d-4e7d-a97c-ed43253257ab', N'除尘设备', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (26, N'acb498a8-6c5f-4f7e-8440-5a24a9c860f7', N'穿孔机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (27, N'02734d10-85a5-4a3e-a212-88a1743c423e', N'打标机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (28, N'4cb91f1f-8b20-4cbc-8b20-1746d763afa5', N'打标机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (29, N'184ba8fd-9e89-4eb0-9a5f-696c2d6102d8', N'得力条码标签打印机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (30, N'a4126c2f-42dc-4f3e-9826-b96fe418cd66', N'点胶机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (31, N'78167252-d742-4beb-8c5f-0e08bcde4569', N'点胶机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (32, N'6d8383b6-3d6c-4764-b506-9b9b019c5cec', N'电火花成型机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (33, N'46e44aaf-a8d3-4473-afa3-6714d39970ed', N'电解线', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (34, N'015eef54-de9a-40d5-9cfa-d96b8a98aad7', N'电解线', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (35, N'e0ca4cd4-1792-4e3e-a33a-831a5221e0e9', N'对刀仪', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (36, N'e0d990e5-5567-4f92-9ec1-6a962eee896f', N'对刀仪', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (37, N'cae58169-4966-43a1-9cb6-5e84f189c512', N'钝化线', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (38, N'9f7d9cd0-08aa-4998-a059-df97a85b13f4', N'钝化线', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (39, N'6758644f-de9a-4046-b6c2-e6008b10bf30', N'方柱立式钻床', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (40, N'aa14936b-fb41-4b83-9738-667a366bfc85', N'封口机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (41, N'd3400d2f-7933-4c7c-9827-99baca37cc48', N'封装机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (42, N'b38ff1db-5728-4f5a-ab82-e8c273c04a1f', N'干洗机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (43, N'4df1421a-8e5e-4c43-87ce-fa28ae90829f', N'干燥箱', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (44, N'bc61bfa9-afcb-4731-b6fc-1c357913e5cb', N'干燥箱', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (45, N'de87f075-4ff1-4d92-9120-88d5603f8c9e', N'高频焊机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (46, N'be3993b2-d3ab-4e89-bd61-4e8bda1b9901', N'高频焊机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (47, N'f0976868-f939-457b-accd-b06c119eeb77', N'工具磨床', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (48, N'3c11b638-4dcd-49fc-8d32-05604e46118f', N'焊道处理机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (49, N'a6e7c9db-e7e4-479f-9a76-66cb8c4f922b', N'焊机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (50, N'f13ba7c0-670a-4838-aa17-1b5f10b2ef2d', N'焊机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (51, N'1d5b7f8c-23e4-40d1-9baa-4ecc80b4da73', N'烘干箱', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (52, N'ff579521-4a3c-4e64-aad4-ca235653adf6', N'烘箱', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (53, N'1c6c2cb6-e32b-49e7-82aa-ef37eee17dd7', N'烘箱', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (54, N'db398f9f-5d0b-47af-8dd3-14036e696307', N'激光打标机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (55, N'ae002a2d-15f1-4ade-a63a-6cbcf1b09774', N'激光打标机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (56, N'a3fdaed9-f5fb-4742-959f-7289a61816d7', N'激光焊机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (57, N'8a80b0fc-e63f-4e72-9683-e2f757ee1318', N'激光焊机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (58, N'785db79c-2f81-4f41-b1e4-9de19d7c242e', N'激光焊接机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (59, N'd2b76cca-6c81-45d7-8012-482de446cc1e', N'激光切割机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (60, N'523e5abb-4fb8-431e-804a-52bd76591c4d', N'加工中心', 1, 5, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (61, N'3100acca-525d-4a05-b949-079a42394aa2', N'加工中心', 1, 9, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (62, N'648a247c-6ae2-4a53-a906-dcc263ad97c2', N'锯床', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (63, N'e4ace4c4-567a-432d-8734-f0bdf6ef9238', N'慢走丝', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (64, N'bab8f74d-9d3c-48c5-970a-88f6853dd3ff', N'铆接机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (65, N'26b34d80-29ce-4fc2-80ce-3c7d643f3fbe', N'诺信手动点胶机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (66, N'ea980965-4a90-4610-8439-31fc16c9e068', N'抛光机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (67, N'e22748db-ad34-4e3d-b673-481407ee7732', N'抛光机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (68, N'2f8cbf44-7b6d-41f2-be52-b49a03d67f2b', N'喷砂机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (69, N'd7210392-65b7-49f3-847b-808346eb225e', N'喷砂机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (70, N'0a1e2d23-c2ea-4dc5-a276-bc99a39d948e', N'平面磨床', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (71, N'cc53029b-9ba6-44cf-8fd0-2564f4bfb819', N'平面磨床', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (72, N'2a33299b-c0a6-4d34-b4c8-9f656785e90f', N'普车', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (73, N'9c27d31b-8678-4060-b4db-c29e9337d6c7', N'普通车床', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (74, N'2fc58e56-743f-43f8-80e1-a45bf66b5b8e', N'普通车床', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (75, N'2d821723-213c-4222-9b0f-222679ba2228', N'普通铣床', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (76, N'f9e93a9d-e1da-4f0e-8609-b7980282a77f', N'普铣', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (77, N'0f5744bb-1698-4fb3-adb4-19ddb17bed72', N'切削液车', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (78, N'ca530dce-dc80-41f5-bc10-c00db1977bae', N'切削液过滤机', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (79, N'2c1c4d01-a1ec-4195-9d84-96ddf1fa8443', N'切削液过滤器', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (80, N'8bb813d3-224f-4b17-b6a2-f5215f1e6477', N'切削油车', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (81, N'973b29ff-be7d-4c4e-ab56-3199a5ecdbad', N'切削油车', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (82, N'5741b8b3-65bd-4163-98eb-14cf70d622ea', N'清洗机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (83, N'0ca2dc8a-0682-4997-a145-112bf659b7bf', N'清洗机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (84, N'32d1dbe3-e23a-4e1c-a2fa-8d10095ec6cb', N'清洗线', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (85, N'2c2ca1e8-f94a-49b4-9c53-3cf481848d2c', N'清洗线', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (86, N'efe16902-9ac9-48b7-b951-0bc6d24537fb', N'去氢烘箱', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (87, N'4356ac85-e9a7-41d5-877d-3a6f883cbe16', N'全自动封切机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (88, N'87fe947c-e4ac-45f1-ad3d-0212f335ca5d', N'热处理炉', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (89, N'a229da01-ac94-4f9e-9954-1f5fc10fcebb', N'热处理炉', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (90, N'b611dbb2-be1d-46db-b00b-1171a7f0d6b8', N'热风循环电阻炉', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (91, N'9abb3320-644c-4175-a297-f8ff6dc19088', N'热合封装机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (92, N'3e0ccc81-a161-47a0-ab09-741825937de0', N'热收缩机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (93, N'777dde8f-062e-4c57-8dc5-dfe183d76351', N'热循环烘箱', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (94, N'd2aa9588-f9ff-4cd5-930d-796545bcb095', N'三维扫描仪', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (95, N'c4af434e-821a-48d0-9bb4-e23fe4784c53', N'砂带机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (96, N'6d8cb60a-e15b-4e6b-8be8-f205f2c89671', N'砂带机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (97, N'ff2cf9fe-4ab4-4c1f-b4f2-7799b9dd7188', N'深孔打磨机', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (98, N'040f30cb-f537-4d70-9b49-ab01916b25fc', N'深孔钻', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (99, N'74d4db27-dd23-42a1-b465-4b6ffbbe7f45', N'深孔钻', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (100, N'de6b6298-25c1-4229-8f7c-a2a516c62338', N'生化培养箱', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (101, N'54d6983a-bdb0-4c8b-bb29-a5801b397a20', N'数车', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (102, N'0329f57c-d8a5-493a-ac9f-a36c9b33bb56', N'数控车床', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (103, N'52f20f11-105c-43aa-8332-2fac15e4274e', N'数控车床', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (104, N'656257da-dba9-48a9-8253-3454339dcc9e', N'数控铣床', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (105, N'e512574f-5f01-45b9-9ae3-6263aae0b042', N'伺服压力机', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (106, N'612670e9-b641-48b1-8bae-7dd4d754f5aa', N'台式电动封口机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (107, N'35e10fe9-ca80-4fc9-9f98-29a032e1ea47', N'台式铣钻床', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (108, N'fd55568d-76b5-4843-8e4f-9cbd1fcc9242', N'台式钻床', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (109, N'9a433eaa-5954-422d-b8fb-86f5d908905e', N'台钻', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (110, N'cd34ecd2-064b-4599-93c3-5519517b69a3', N'外圆磨床', 1, 9, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (111, N'248ebd64-9a6e-42c8-a533-8054c66f30ad', N'弯形机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (112, N'0601bdad-5a3f-4e27-a2de-618ee0c113fe', N'无心磨床', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (113, N'559f8b65-8c93-4de8-b212-e25da00ac2fb', N'无心磨床', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (114, N'ac0957af-221d-4785-a09d-617bd9315e53', N'五轴加工中心', 1, 5, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (115, N'459b8ba7-5030-41c6-bcb2-66dd5fcd63f9', N'五轴加工中心', 1, 9, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (116, N'e84137f5-baec-480a-bea1-cd04c48619e5', N'五轴磨床', 1, 5, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (117, N'98a28c18-b366-4319-b92a-607ad5a35a9d', N'五轴磨床', 1, 9, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (118, N'8b094067-4bda-48eb-b43f-acd7cb988f8b', N'洗衣机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (119, N'519d7989-deba-42d8-ae45-08c0f8b844e7', N'线切割', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (120, N'b9849755-d539-45b0-99e6-190bb32a911c', N'线切割机床', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (121, N'4e7b39d8-5278-4767-b5b9-520955d0ca39', N'线切割机床', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (122, N'5dd004c9-679e-438c-b128-e2a631563d3c', N'线切割机床(慢丝)', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (123, N'c780a4b6-b6a2-4068-a96d-10a7c5ee3ad1', N'压力机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (124, N'443395d4-a7e8-4e6d-a6fa-a7d9ec9d2509', N'氩弧焊机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (125, N'3408472e-3142-4eb4-92cc-030e6f9a85a5', N'研磨机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (126, N'8fa44d06-96df-4240-99fe-d7634c9ad5f3', N'研磨机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (127, N'05984f21-114c-4d8b-9bc1-f01169450b90', N'盐雾试验箱', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (128, N'77d41afd-c66b-437e-91f8-29babf016034', N'医用封口机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (129, N'6848a2aa-a181-4d55-a60e-c40d36477e7e', N'医用冷藏箱', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (130, N'41996466-7e0d-4a8a-98ca-cf80982dfe0e', N'医用冷藏箱', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (131, N'7c80c724-0da9-421d-b3b9-f80443fc75bd', N'移动式除尘器', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (132, N'22edb1ad-d352-43b0-8227-398584ecdc6a', N'油压机', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (133, N'df73bb57-d072-4e3b-bd81-b289da549e58', N'油压机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (134, N'adac4079-2bd5-4489-bf4e-a8b0b2103eed', N'折弯机', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (135, N'37fd076a-38ea-440a-b78d-5d43167f4a5f', N'折弯机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (136, N'dbf75765-65e4-4671-b0df-d084120111fc', N'真空烘干箱', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (137, N'ae1d5fe0-4959-44a7-9f9e-7cd11508a03e', N'真空炉', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (138, N'84c0343c-787f-4ce7-b09a-d87913bf4f63', N'真空时效炉', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (139, N'e6290891-181f-492f-af69-40c58847bcd6', N'真空油淬炉', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (140, N'f8e372b2-0ef0-49d0-ae61-26c8c80e58fa', N'震动研磨机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (141, N'2c0343c1-6360-46ab-993e-77010c95cd12', N'震动研磨机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (142, N'f71f3467-9ee5-43c2-a68f-8003cdf7adf7', N'中丝线切割', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (143, N'7da8dc15-a8bb-4528-bdb3-c1ece7f3bea9', N'注塑机', 1, 2, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (144, N'bbdcd4e8-3138-4751-8e3e-0976bfbfc12d', N'注塑机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (145, N'a31c4d5d-7da7-40b2-a346-f9caebb55015', N'装配机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (146, N'a4772698-0206-47aa-ad2f-e5c5c718ca41', N'着色线', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (147, N'dc9425ad-80e4-491d-b1af-cf8e0e76cb8e', N'自动包装机', 1, 8, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (148, N'af945820-204d-4adf-81f9-a07105107d37', N'纵切', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (149, N'd6ce932e-d1fd-4e18-b4ac-0b670b141f79', N'纵切机床', 1, 4, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +INSERT [dbo].[DeviceRoute] ([AutoID], [GUID], [Name], [Status], [ParentID], [CreatDate], [CreatUser], [ModifyDate], [ModifyUser]) VALUES (150, N'0c5b2485-c68f-426c-8432-b6bd775445cf', N'纵切机床', 1, 7, CAST(N'2024-04-24T14:43:19.157' AS DateTime), 1, NULL, 0) +GO +SET IDENTITY_INSERT [dbo].[DeviceRoute] OFF +GO diff --git a/DeviceRepair.DataAccess/Script/5.0/Datas/DriveMaintenance.sql b/DeviceRepair.DataAccess/Script/5.0/Datas/DriveMaintenance.sql new file mode 100644 index 0000000..4d08078 --- /dev/null +++ b/DeviceRepair.DataAccess/Script/5.0/Datas/DriveMaintenance.sql @@ -0,0 +1,1504 @@ +USE [DriveMaintenance] +GO +SET IDENTITY_INSERT [dbo].[DriveInformation] ON +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (47, N'25ebc3bd-53c4-4df1-ba0b-7100f17dfc23', N'50', N'台式钻床', N'Z4116B', N'常州台钻厂', N'35759', N'1998', 0.55, 0.2, N'B类', 0.2500, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'∮16mm', 0, 0, 108, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 0, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (48, N'1c3ac7a2-722e-40d4-a97c-864b4d1d01aa', N'55', N'干燥箱', N'SX2-10-12.400*250*160', N'上海实验电炉厂', N'58', N'1996.12', 10, 0.4, N'B类', 0.4900, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'400x250x160 max1200°', 0, 0, 44, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-07-14T02:07:03.750' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (49, N'8f0ca0c2-80f7-44b9-9151-c02b75a0ad11', N'86', N'抛光机', N'2M4150-500', N'江苏如东机床厂', N'无', N'2000.12', 5.5, 0.62, N'B类', 0.9000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'主轴长度1200.抛光轮最大直径500mm, 主轴转速2200', 0, 0, 67, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (50, N'143bb898-932e-494f-8a9b-d258460f818d', N'99', N'方柱立式钻床', N'Z5125A-25', N'常州机床厂', N'1023', N'2001.7', 2.2, 0.96, N'B类', 2.5000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'最大钻孔直径25mm', 0, 0, 39, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (51, N'8e70081c-3eca-4412-8c97-32fd67a49b8a', N'119', N'台式钻床', N'Z4116B', N'常州台钻厂', N'33181', N'2002.1', 0.55, 0.3, N'B类', 0.2500, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'∮16mm', 0, 0, 108, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (52, N'2566d53a-be87-4e3f-9cbd-262619150feb', N'121', N'研磨机', N'XMW36', N'无锡精工光饰材料厂', N'415', N'2002.7', 2.2, 1, N'B类', 0.6500, 1, N'N/A', N'KH一楼北', N'KH脊柱单元', N'容量36 滚筒数量4 尺寸170x316', 0, 0, 126, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (53, N'9f68f0bb-bd88-436d-8fc7-ed260dff035f', N'129', N'普铣', N'X6325', N'南通机床厂', N'28551', NULL, 0, 0, N'B类', 0.0000, 1, N'N/A', N'5206', N'5206', NULL, 0, 0, 76, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (54, N'33e19da9-cbc7-42ce-ba89-5bc52b2b6437', N'171', N'普车', NULL, NULL, NULL, NULL, 4.5, 0, N'B类', 0.0000, 1, N'N/A', N'5206', N'5206', NULL, 0, 0, 72, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (55, N'6768f35c-34e3-4a05-8086-f6b875d92af8', N'182', N'压力机', N'J23-10B', N'徐州锻压设备厂', N'740059', N'2004.11', 1.1, 0.6, N'B类', 0.8300, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'公称压力100 最大封闭高度180mm', 0, 0, 123, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (56, N'22eddc90-d3f0-4122-85da-84db60c7ff6d', N'189', N'干燥箱', N'HN1013As-750*600*500', N'南通沪南科学仪器公司', N'4888', N'2005.4', 4.8, 0.3, N'B类', 0.6600, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'工作仓尺寸750x600x500最高 300±1度', 0, 0, 44, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (57, N'b2c93182-c8ed-4067-9239-d42fbbbfbd05', N'198', N'数控铣床', N'JSK--30-300*1370', N'南通精晟机床厂', N'25026', N'2005.7', 3, 1.8, N'B类', 7.5000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'工作台尺寸300x1370', 0, 0, 104, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (58, N'7d8417d1-586f-483d-8e65-2061066ee45b', N'199', N'数控铣床', N'JSK--30-300*1370', N'南通精晟机床厂', N'35008', N'2005.7', 3, 1.8, N'B类', 7.5000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'工作台尺寸300x1370', 0, 0, 104, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (59, N'7158d381-d98c-4ac2-b298-1ad2da5be8f7', N'200', N'台式铣钻床', N'ZX7045', N'杭州西湖台钻有限公司', N'505003', N'2005.7', 0.75, 0.1, N'B类', 0.9150, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'最大钻孔直径45mm 工作台行程550x200mm', 0, 0, 107, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (60, N'f727a58d-c46a-49c7-bd7c-eb3942ff4ca5', N'218', N'焊机', N'YE-300WP', N'唐山松下产业机器公司', N'无', N'2005.9', 20, 0.193, N'B类', 3.1300, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'315A', 0, 0, 50, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (61, N'9d33cc60-7385-4ba6-a67b-803ac85f6914', N'227', N'平面磨床', N'PSG-306AH', N' 杭州平野机械有限公司', N'P0509306AH-36', N'2005.1', 8.25, 2.8, N'B类', 7.3000, 1, N'N/A', N'KH一楼', N'KH器械单元', N'工作台尺寸500x300 ', 0, 0, 71, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (62, N'e26ee0d5-91f5-439e-989b-4b78df27558b', N'234', N'线切割机床', N'FW2', N'北京阿奇夏米尔', N'035-005', N'2005.11', 3, 2.2, N'B类', 17.6000, 1, N'N/A', N'KH一楼东南', N'KH脊柱单元', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300', 0, 0, 121, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (63, N'2fb8a032-e467-42bd-a346-424be91277d8', N'235', N'纵切机床', N'SR-20RII', N'STAR精密株式会社', N'1075', N'2005.12', 7, 2.2, N'A类', 91.2062, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (64, N'391bf0a5-e9bd-4e0f-8bbb-669b511fc6a9', N'242', N'普通车床', N'C6132A1', N'广州机床厂', N'JE0966', N'2005.11', 3, 1.3, N'B类', 3.9000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'最大工件回转直径320mm, 最大工件长度750mm.', 0, 0, 74, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (65, N'fa2b8c2a-454d-4829-aa98-0458d95e4969', N'243', N'普通铣床', N'243', N'南通纵横国际', N'451627', N'2005.11', 3, 1.2, N'B类', 3.7500, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'工作台尺寸1120x250. 工作台最大行程: 纵向700mm. 横向300mm. 垂直400mm.', 0, 0, 75, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (66, N'db298497-1b70-4c99-a08e-74d987931990', N'258', N'纵切机床', N'SR-20RII', N'STAR精密株式会社', N'1152', N'2006.01', 7, 2.2, N'A类', 78.9209, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (67, N'cef71df6-5383-4ca8-9258-2f4b43a2b736', N'259', N'纵切机床', N'SR-20RII', N'STAR精密株式会社', N'1151', N'2006.01', 7, 2.2, N'A类', 78.9209, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (68, N'ec94a0fc-12b7-46a0-9db5-78d0a2714ac9', N'268', N'纵切机床', N'SR-20RII', N'STAR精密株式会社', N'1179', N'2006.01', 7, 2.2, N'A类', 87.7110, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (69, N'0beb28da-e488-4900-9a78-cc76a10068c8', N'269', N'纵切机床', N'SR-20RII', N'STAR精密株式会社', N'1180', N'2006.01', 7, 2.2, N'A类', 87.7110, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (70, N'02bfd140-a743-4415-a4f6-1d1723636e88', N'270', N'纵切机床', N'SR-20RII', N'STAR精密株式会社', N'1181', N'2006.01', 7, 2.2, N'A类', 87.7110, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (71, N'ec5d2998-08b9-4115-b66a-1a7dac448d0d', N'276', N'普通铣床', N'X6330A', N'南通纵横国际', N'461038', N'2006.06', 4, 2, N'B类', 4.1000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'工作台尺寸1370x300. ', 0, 0, 75, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (72, N'ae60cb19-6234-40a6-aaa4-4fa9607be22d', N'277', N'纵切机床', N'SR-20RII', N'STAR精密株式会社', N'1261', N'2006.03', 7, 2.2, N'A类', 87.4599, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (73, N'0d3b4265-acf3-4a7e-bcf6-1f6e723e389d', N'278', N'纵切机床', N'SR-20RII', N'STAR精密株式会社', N'1276', N'2006.03', 7, 2.2, N'A类', 87.4599, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (74, N'acf06799-ede7-4454-b199-6b2501aae5c8', N'280', N'纵切机床', N'SR-20RII', N'STAR精密株式会社', N'1278', N'2006.03', 7, 2.2, N'A类', 87.4599, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (75, N'dcc0941a-af2d-40c3-b63a-d8e03639a80d', N'281', N'工具磨床', N'MG6025A', N'武汉机床厂', N'200602', N'2006.03.15', 1, 1.2, N'B类', 9.8500, 1, N'N/A', N'KH一楼', N'KH器械单元', N'最大磨削直径250mm 最大磨 长度700mm 工作台纵向行程48,磨头横向行程250,磨头垂直行程250', 0, 0, 47, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (76, N'67802984-1257-4717-9725-65e768c69c87', N'290', N'普通车床', N'C6132A1', N'广州机床厂', N'JF0833', N'2006.05', 4.625, 1.3, N'B类', 3.8000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'最大工件回转直径320mm, 最大工件长度750mm.', 0, 0, 74, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 0, CAST(N'1753-01-01T00:00:00.000' AS DateTime), 2028, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (77, N'3314d0a1-38a3-4eff-8056-b58e485332ca', N'293', N'纵切机床', N'SR-20RII', N'STAR精密株式会社', N'1378', N'2006.07', 7, 2.2, N'A类', 91.9548, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (78, N'8ffbd64e-8f26-4d1b-9115-4fe596568285', N'295', N'纵切机床', N'SR-20RII', N'STAR精密株式会社', N'1526', N'2006.08', 7, 2.2, N'A类', 92.4100, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm. 主轴转速500-10000', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (79, N'c6368a50-89aa-4807-a818-5b2f11122198', N'296', N'焊机', N'ITG350AP', N'广州巨电机电制造有限公司', N'110121185', N'2006.09', 11, 0.1, N'B类', 3.1900, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'水箱20升,最大焊接电流640A', 0, 0, 50, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (80, N'a7c2271e-5654-414d-8a5d-ba51a679cdde', N'311', N'清洗线', N'QZ-5048-25B/02', N'众强超声科技', N'70301', N'2007.5', 25, 1, N'B类', 6.6000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'第一槽尺寸500x420x350 超声波功率1.2KW, 加热功率4KW.第二槽尺寸500x420x350 超声波功率1.2KW, 加热功率4KW', 0, 0, 85, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (81, N'8e555385-aada-491b-82fe-0af08543d547', N'331', N'数控车床', N'CAK3665NJ', N'沈阳第一机床厂', N'0801145', NULL, 0, 0, N'B类', 0.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', NULL, 0, 0, 103, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (82, N'87c1aab4-666b-4b67-b20d-d537136349b9', N'337', N'台钻', N'Z512B', N'杭州西湖台钻有限公司', N'1120344', NULL, 0, 0, N'B类', 0.0000, 1, N'N/A', N'5206', N'5206', NULL, 0, 0, 109, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (83, N'0f48f70a-e01f-4297-a042-68efef958690', N'344', N'普通铣床', N'X6325T', N'南通科技投资', N'472154', N'2008.5', 4.3, 1, N'B类', 3.6500, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'工作台尺寸1120x250. 工作台最大行程: 纵向700mm. 横向300mm. 垂直400mm.', 0, 0, 75, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (84, N'9d3cae32-171e-4020-93b0-ef8789b5bb30', N'345', N'压力机', N'J23-6.3T', N'沃得精机', N'8003', N'2008.5', 1.2, 0.4, N'B类', 0.6500, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'200*310*45°', 0, 0, 123, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (85, N'f4f4de68-6920-4a20-9a7b-a18b1052ba8b', N'359', N'加工中心', N'VF-3D', N'美国哈斯自动化', N'1053725', N'2007.1', 24.3, 5.675, N'A类', 63.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'行程1016*508*635刀20把 主轴8100转台面承重1.36T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (86, N'38e557f8-4833-4b78-9e45-6ae33a2a3b4d', N'369', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'153', N'2008.11', 6.05, 2.2, N'A类', 73.5000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (87, N'b3cf64f1-c364-4fb0-be04-eedb548d7b4d', N'373', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCA81C147', N'2008.11', 25, 5.5, N'A类', 54.6000, 1, N'N/A', N'KH一楼中南', N'KH创伤单元', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (88, N'4d6c8e7e-0621-44ce-b00d-9995de075ab8', N'375', N'加工中心', N'VF-3D', N'美国哈斯自动化', N'1069262', N'2008.11', 24.3, 5.675, N'A类', 70.8050, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'行程1016*508*635刀20把主轴8100转台面承重1.37T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (89, N'f7918821-bc60-4ab5-81cf-282ce82debe9', N'381', N'加工中心', N'MiNi Mill', N'美国哈斯自动化', N'4001099', N'2009.3', 5.6, 1.542, N'A类', 18.0000, 1, N'N/A', N'KH一楼中南', N'KH脊柱单元', N'行程406*305*254,6000转', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (90, N'6796c0ad-1f3e-4b4c-a954-f76885dd4e41', N'395', N'数控车床', N'CAK3665nj', N'沈阳第一机床厂', N'A30901161', N'2009.9', 6, 1.8, N'B类', 7.1000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'最大工件回转直径¢360mm 最大工件长度650mm', 0, 0, 103, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (91, N'ee7b610a-10be-4544-896c-6e0e3f8d35fe', N'396', N'五轴磨床', N'fast grind', N'奥大利亚安卡', N'750013', N'2009.9', 13, 4.25, N'A类', 130.0000, 1, N'N/A', N'KH一楼南', N'KH创伤单元', N'435*457*275*310°*360°刀具直径220砂轮202主轴1万转', 0, 0, 117, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (92, N'e5aaa067-35b5-4b8f-9a52-258c63e2766d', N'410', N'纵切机床', N'XD20M', N'韩国韩华机械株式会社', N'XD-20-BF-1162', N'2010.5', 10.05, 3.3, N'A类', 9.0000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动250mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (93, N'd3f0a3fa-7e94-44dd-8d9d-31ed6741ea6f', N'411', N'纵切机床', N'XD20M', N'韩国韩华机械株式会社', N'XD-20-BF-1163', N'2010.5', 10.05, 3.3, N'A类', 9.0000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动250mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (94, N'09a8c4ea-e566-49a7-aeea-d54e32897897', N'414', N'数控车床', N'CAK3665ni', N'沈阳第一机床厂', N'A31001566', N'2010.5.11', 6, 1.8, N'B类', 7.3500, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'最大工件回转直径¢360mm 最大工件长度650mm', 0, 0, 103, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (95, N'ad19f096-8db6-4133-915c-8106efad41e6', N'415', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB0DC309', N'2010.5', 20, 5.5, N'A类', 57.0000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (96, N'6f062c2c-0d85-4bb4-82a9-1f4952e86ad9', N'417', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB0EC331', N'2010.6', 20, 5.5, N'A类', 57.0000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (97, N'6b3ca0ed-5bf8-4840-bb61-5feaddaa129a', N'420', N'数控车床', N'CAK3665nzi', N'沈阳第一机床厂', N'A31002362', N'2010.6.18', 6, 1.8, N'B类', 7.4000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'最大工件回转直径¢360mm 最大工件长度650mm', 0, 0, 103, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (98, N'b9418c75-b94a-472f-ad0e-7f3e34364e4b', N'428', N'激光焊接机', N'WF300', N'大族激光有限公司', N'HYF321006107', N'2010.8.12', 16, 0.5, N'B类', 20.2800, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'最大输出功率300w,激光频率1-200Hz光线芯径0.6mm', 0, 0, 58, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (99, N'f520a85f-fe84-44ff-8f09-aab21e49ebdf', N'429', N'外圆磨床', N'MA1420A-200*500', N' 上海第三机床厂', N'8202', N'2010.9', 8, 2.1, N'B类', 6.5500, 1, N'N/A', N'KH一楼', N'KH器械单元', N'最大磨削直径200mm 最大磨削长度500mm 磨削孔径13-80', 0, 0, 110, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (100, N'fc767728-134a-43f8-82c2-9312b6d6d8bc', N'430-1', N'加工中心', N'VF1', N'美国哈斯自动化', N'1079464', N'2010.11', 14, 3.22, N'A类', 34.0000, 1, N'N/A', N'KH一楼西北', N'KH创伤单元', N'行程508*406*508刀20把主轴7500转台面承重1.36T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (101, N'eaf6f1c5-6488-4585-9116-8d54bad992cd', N'431', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB0JC433', N'2010.11', 25, 5.1, N'A类', 57.0000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (102, N'dec30a86-3e74-404c-bf82-09ef0532e835', N'432', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB0JC434', N'2010.11', 25, 5.1, N'A类', 57.0000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (103, N'53f5a5f5-f0f8-4989-8bf6-856f924468d7', N'437', N'数控车床', N'CAK3665nzi', N'沈阳第一机床厂', N'A31003949', N'2010.11', 6, 1.8, N'B类', 7.4000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'最大工件回转直径¢360mm 最大工件长度650mm', 0, 0, 103, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (104, N'b8116c52-73dd-4004-8bba-961af04125eb', N'440', N'加工中心', N'VF2', N'美国哈斯自动化', N'1076496', N'2010.11', 14, 3.22, N'A类', 80.5000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'行程508*406*508刀20把主轴7500转台面承重1.36T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (105, N'd7ea0282-2112-44c8-8512-24c3f5bf18ad', N'441', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB0KC457', N'2010.12', 25, 5.1, N'A类', 57.0000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (106, N'8a2d7eb3-bb3c-4971-b294-ca98f006cbe0', N'442', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB0KC458', N'2010.12', 25, 5.1, N'A类', 57.0000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (107, N'd47c25a9-f9aa-46b0-8b1e-2b8bb0d42b70', N'443', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB0KC459', N'2010.12', 25, 5.1, N'A类', 57.0000, 1, N'N/A', N'KH一楼中南', N'KH创伤单元', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (108, N'7c9d6d12-a8aa-450b-bbc9-f8858c1eee87', N'444', N'加工中心', N'VF2', N'美国哈斯自动化', N'1079515', N'2010.11', 14, 3.22, N'A类', 54.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'行程508*406*508刀20把主轴7500转台面承重1.36T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (109, N'24a94a14-ba25-4916-a077-d33532d761d0', N'445', N'加工中心', N'DMU60monoblock', N'DMG', N'1158 001069 3', N'2010.11', 40, 6.8, N'A类', 122.0000, 1, N'N/A', N'KH一楼中北', N'KH创伤单元', N'行程630*560*56024把刀台面承重500kg主轴18000转', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (110, N'5e511c3b-6d8a-4a94-b7dc-5e2dcee4a745', N'447', N'油压机', N'Y41-10T', N'无锡市江益液压机械成套有限公司', N'20101223', N'2010.12.23', 4, 0.9, N'B类', 2.4000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'工作台420*450 最大压力10吨', 0, 0, 133, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (111, N'e6430a81-3fc6-4155-b9d5-e7d43120c4ed', N'461', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB0KC498', N'2011.1', 25, 5.1, N'A类', 57.0000, 1, N'N/A', N'KH一楼中南', N'KH创伤单元', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (112, N'c20ebd6b-9df2-4697-9537-4bd0e95f8479', N'462', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB0KC499', N'2011.1', 25, 5.1, N'A类', 57.0000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (113, N'3837799e-573c-4092-94c1-d2fafdd571a7', N'468', N'加工中心', N'MiNi Mill', N'美国哈斯自动化', N'1082692', N'2011.3', 5.6, 1.542, N'A类', 24.5000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'行程406*305*254,6000转,带第四轴', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (114, N'55db370c-50ab-4c5a-a102-63d2fd8a3ea1', N'469', N'加工中心', N'MiNi Mill', N'美国哈斯自动化', N'1082693', N'2011.3', 5.6, 1.542, N'A类', 24.5000, 1, N'N/A', N'KH一楼中南', N'KH脊柱单元', N'行程406*305*254,6000转,带第四轴', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (115, N'904487ba-8f22-4045-8747-42f479d32335', N'470', N'加工中心', N'MiNi Mill', N'美国哈斯自动化', N'1082694', N'2011.3', 5.6, 1.542, N'A类', 24.5000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'行程406*305*254,6000转,带第四轴', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (116, N'693b1e5c-80af-4420-ba16-e0cfad9c12d3', N'471', N'加工中心', N'MiNi Mill', N'美国哈斯自动化', N'1082695', N'2011.3', 5.6, 1.542, N'A类', 24.5000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'行程406*305*254,6000转,带第四轴', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (117, N'c2ffc798-c01e-4bdb-a26e-bb30f957fbb0', N'474', N'加工中心', N'MiNi Mill', N'美国哈斯自动化', N'1082799', N'2011.3', 5.6, 1.542, N'A类', 24.5000, 1, N'N/A', N'KH一楼中南', N'KH脊柱单元', N'行程406*305*254,6000转,带第四轴', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (118, N'54cf31bd-393c-4ddd-918b-ab8078912180', N'475', N'加工中心', N'MiNi Mill', N'美国哈斯自动化', N'1082878', N'2011.3', 5.6, 1.542, N'A类', 24.5000, 1, N'N/A', N'KH一楼中南', N'KH脊柱单元', N'行程406*305*254,6000转,带第四轴', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (119, N'aba1ed93-deb0-4400-85fa-be8f47417937', N'476', N'加工中心', N'MiNi Mill', N'美国哈斯自动化', N'1082906', N'2011.3', 5.6, 1.542, N'A类', 24.5000, 1, N'N/A', N'KH一楼中南', N'KH脊柱单元', N'行程406*305*254,6000转,带第四轴', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (120, N'9cb2b0cc-5328-4e98-9c94-09f257cc6cd7', N'477', N'纵切机床', N'XD20J', N'韩国韩华机械株式会社', N'XD-20-BG-1607', N'2011.8', 10.05, 3.3, N'A类', 9.0000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动250mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (121, N'49a6071e-4922-448d-812c-1bfbea3739c9', N'478', N'纵切机床', N'XD20J', N'韩国韩华机械株式会社', N'XD-20-BG-1608', N'2011.8', 10.05, 4.3, N'A类', 9.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动251mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (122, N'739e261e-ee3d-47fe-bc7c-fa2a8fdc8857', N'479', N'纵切机床', N'XD20J', N'韩国韩华机械株式会社', N'XD-20-BG-1580', N'2011.8', 10.05, 3.3, N'A类', 9.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动250mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (123, N'6ff069b3-9bc4-49c9-9395-8d190af0bd70', N'480', N'纵切机床', N'XD20J', N'韩国韩华机械株式会社', N'XD-20-BG-1581', N'2011.8', 10.05, 3.3, N'A类', 9.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动250mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (124, N'6a4c5c39-6fd1-40fa-b42e-c39173db0b9f', N'481', N'油压机', N'YQ32-1000T', N'南通锻压设备', N'201104137', N'2011.5', 60, 60, N'B类', 60.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'最大压力1000T工作台1.1*1.1米', 0, 0, 133, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (125, N'ad474fae-091f-486e-a747-99432f3b50b0', N'488', N'加工中心', N'VF3', N'美国哈斯自动化', N'1084767', N'2011.6', 24.3, 5.675, N'A类', 64.6430, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'行程1016*508*635刀20把主轴8100转台面承重1.37T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (126, N'589b6a13-a803-4fac-8a8e-e17d281a1be6', N'489', N'加工中心', N'VF3', N'美国哈斯自动化', N'1084785', N'2011.6', 24.3, 5.675, N'A类', 59.8000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'行程1016*508*635刀20把主轴8100转台面承重1.36T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (127, N'8c915b64-d314-4ec7-ac65-de45de1f333f', N'494', N'纵切机床', N'XD20J', N'韩国韩华机械株式会社', N'XD-20-BG-1660', N'2011.7', 10.05, 3.3, N'A类', 71.0000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动250mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (128, N'37e588f2-b346-4d38-9f48-7b324f73343d', N'495', N'纵切机床', N'XD20J', N'韩国韩华机械株式会社', N'XD-20-BG-1661', N'2011.7', 10.05, 3.3, N'A类', 78.8600, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动250mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (129, N'1e55a295-bea7-4534-bfd0-f415c6078f00', N'496', N'纵切机床', N'XD20J', N'韩国韩华机械株式会社', N'XD-20-BG-1644', N'2011.7', 10.05, 3.3, N'A类', 78.8600, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动250mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (130, N'b9ba28b7-a15d-4fbe-aafc-0d908b17a5e9', N'497', N'纵切机床', N'XD20J', N'韩国韩华机械株式会社', N'XD-20-BG-1668', N'2011.7', 10.05, 3.3, N'A类', 60.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动250mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (131, N'f3ee715b-4a21-4423-90e7-9a1b841e7233', N'498', N'纵切机床', N'XD20J', N'韩国韩华机械株式会社', N'XD-20-BG-1670', N'2011.7', 10.05, 3.3, N'A类', 60.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动250mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (132, N'ad2e8a18-d81c-4533-9216-b73f9cda0a68', N'499', N'纵切机床', N'XD20J', N'韩国韩华机械株式会社', N'XD-20-BG-1671', N'2011.7', 10.05, 3.3, N'A类', 60.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动250mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (133, N'7fe3baba-4259-4882-8d38-009a99d6b0fe', N'500', N'纵切机床', N'SB-20E', N'STAR精密株式会社', N'83', N'2011.8', 3, 1.7, N'A类', 71.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.旋风铣,NTK电动动力头', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (134, N'e94e8f2f-8559-440c-8e7a-5feedab627ff', N'501', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'918', N'2011.8', 6.05, 2.2, N'A类', 78.8600, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (135, N'9637f97f-74a5-47c5-9ea7-bb29b7aa091f', N'502', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'919', N'2011.8', 6.05, 2.2, N'A类', 78.8600, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (136, N'9a6c4cc0-ef5d-4fc7-a03d-207c5474d9dc', N'504', N'油压机', N'YQ32-100T', N'无锡江益', N'201108067', N'2011.8', 7.5, 4, N'B类', 6.1500, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'最大工作压力25Mpa', 0, 0, 133, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (137, N'd5c9e063-92b6-4da5-843e-e36d0b78868e', N'523', N'清洗线', N'KPDW-QC5126-28CB/UG/01', N'常州市科沛达', N'11062218', N'2011.1', 60, 3, N'B类', 31.8000, 1, N'N/A', N'KH一楼南', N'KH器械单元', N'一二槽28Khz,三四槽40Khz, 槽体有效尺寸510*550*530', 0, 0, 85, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (138, N'cb71c50b-6ed0-420f-ad84-f08aa96a0234', N'526', N'干燥箱', N'SX2-12-12', N'上海实研电炉有限公司', N'N/A', N'2011.9', 12, 0.5, N'B类', 0.7500, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'工作尺寸500*300*200, 最高温度1200,', 0, 0, 44, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (139, N'1409745e-c3d7-4a30-8223-fee9e11a9b59', N'542', N'抛光机', N'LP-45', N'无锡富岛精工有限公司', N'596', N'2011.12', 4, 0.62, N'B类', 1.2000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'2200r/m, 主轴长1200', 0, 0, 67, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (140, N'8257e72a-cd5c-4646-b10c-abb211c617cf', N'546', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'2163', N'2012.2', 5.2, 2.2, N'A类', 81.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (141, N'8ce0a653-7cc0-4e6b-917e-b2b5a8015514', N'547', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'2164', N'2012.2', 5.2, 2.2, N'A类', 81.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (142, N'4de2686c-b023-445f-854a-6224b8e1d391', N'548', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'2165', N'2012.2', 5.2, 2.2, N'A类', 81.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (143, N'63b1959f-a30f-4768-b585-371b0d46b82c', N'552', N'激光打标机', N'YLP-F20', N'大族激光有限公司', N'KYD581112042', N'2012.2.28', 1, 0.5, N'B类', 26.5000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'打标功率20W,打标范围100*500,平台驱动重复定位精度0.05,行程500,主梁前后行程200,升降行程280', 0, 0, 55, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (144, N'4d3cb1cd-8c87-47cb-b2bb-c00463cf4ec7', N'553', N'激光打标机', N'YLP-F20', N'大族激光有限公司', N'KYD581112050', N'2012.2.28', 1, 0.5, N'B类', 26.5000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'打标功率20W,打标范围100*500,平台驱动重复定位精度0.05,行程500,主梁前后行程200,升降行程280', 0, 0, 55, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (145, N'49efeadd-97e0-408e-ab9d-09dbbad0d618', N'558', N'加工中心', N'VF2', N'美国哈斯自动化', N'1085214', N'2012.3', 14, 3.22, N'A类', 31.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'行程762*406*508刀20把主轴8100转台面承重1.36T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (146, N'e9e95542-cca3-48d0-ab96-c5d8c5946aea', N'559', N'加工中心', N'VF2', N'美国哈斯自动化', N'1085215', N'2012.3', 14, 3.22, N'A类', 31.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'行程762*406*508刀20把主轴8100转台面承重1.36T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (147, N'6e67cc5c-d426-4187-83c6-a06b6018c1e6', N'560', N'着色线', N'KYF30A/150V', N'飞鸣电子', N'2.01203E+11', N'2012.4', 4.5, 0.1, N'B类', 4.1860, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'0-30A,0-150V', 0, 0, 146, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (148, N'7d3af5d5-3241-46fb-b934-1cbc4522e40f', N'564', N'数车', N'LYNX200LC', N'韩国大宇', N'N/A', N'2005.4', 25, 3.5, N'B类', 48.0000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'最大200mm', 0, 0, 101, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (149, N'18a0d285-401d-4f39-8458-1a62ee3c1f4d', N'580', N'干燥箱', N'KSJ-12-12', N'上海实研电炉', N'9588', N'2008.4', 12, 0.1, N'B类', 0.4349, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'工作尺寸500*300*200, 最高温度1200,', 0, 0, 44, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (150, N'0c970fbd-d1bb-47ee-ad04-88a5f0ec8ff0', N'584', N'弯形机', N'LP1014', N'常州龙腾', N'81029', N'2008.1', 1.5, 0.5, N'B类', 1.3047, 1, N'N/A', N'KH一楼北', N'KH创伤单元', NULL, 0, 0, 111, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (151, N'713bb5fe-f787-46be-a36d-2ef0788e84e7', N'585', N'弯形机', N'LP2001', N'常州龙腾', N'80809', N'2008.8', 1.5, 0.5, N'B类', 1.3047, 1, N'N/A', N'KH一楼北', N'KH创伤单元', NULL, 0, 0, 111, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (152, N'4ac4d78c-2c43-4e98-8846-e6acd8bd0e26', N'593', N'清洗线', N'xinxin-5040T', N'常州市新鑫环保', N'N/A', N'2012.7', 15, 1, N'B类', 6.8000, 1, N'N/A', N'KH一楼北', N'KH器械单元', N'超声功率2kw 加热功率14kw 超声频率28kz', 0, 0, 85, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (153, N'fad750ee-1cf8-4873-b493-30364604275c', N'593-1', N'钝化线', N'Xin-2000', N'常州市新鑫环保', N'N/A', N'2017.12', 3, 0.2, N'B类', 0.0000, 1, N'N/A', N'KH一楼北', N'KH器械单元', N'30℃', 0, 0, 38, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (154, N'2b9afbe5-1e04-4a5f-a764-cd3f5b56c208', N'595', N'铆接机', N'GM5T', N'武汉长江', N'13', N'2007.6', 1, 0.1, N'B类', 0.3262, 1, N'N/A', N'KH一楼北', N'KH创伤单元', NULL, 0, 0, 64, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (155, N'28513093-34fc-4c18-a70b-b742600a229a', N'596', N'清洗机', N'KPDW-QC5048-25C/01', N'常州市科沛达', N'12032308', N'2012.4', 35, 1.5, N'B类', 8.5000, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'加热22kw,40-100°,1.2KW*3,40-100° 尺寸:500*480*448', 0, 0, 83, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (156, N'c844d863-5448-48ae-a627-cf85d17babf6', N'597', N'清洗机', N'KPDW-QC3024-25C/01', N'常州市科沛达', N'12032309', N'2012.4', 20, 1, N'B类', 6.5000, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'加热14kw,40-100°,1KW*9,70-90 尺寸:500*480*448', 0, 0, 83, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (157, N'0ece4327-2b32-4cd5-b47d-f9ebfc05613e', N'599', N'清洗线', N'xin-5072T', N'常州市新鑫环保', N'xin-12-009', N'2012.7', 19, 2, N'B类', 22.5000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'一二槽28Khz,三四槽40Khz, 槽体有效尺寸510*550*530', 0, 0, 85, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (158, N'43d9cadc-fc49-449d-be94-4495f24477e0', N'600', N'清洗线', N'xin-5072T', N'常州市新鑫环保', N'xin-12-010', N'2013.5', 19, 2, N'B类', 22.5000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'一二槽28Khz,三四槽40Khz, 槽体有效尺寸510*550*530', 0, 0, 85, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (159, N'524ea4d7-97dd-4ce0-bea6-bc07e5f2695d', N'602', N'热合封装机', N'ZW360', N'常州艾普电子', N'201204212', N'2012.7', 3.2, 0.1, N'B类', 1.3000, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'550*650*150', 0, 0, 91, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (160, N'8be878e5-6d77-4ae4-b13f-bd482d38a796', N'604', N'热合封装机', N'ZW360', N'常州艾普电子', N'201204214', N'2012.7', 3.2, 0.1, N'B类', 1.3000, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'550*650*150', 0, 0, 91, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (161, N'2e078883-a8c6-4d5a-b6e3-cde9c61d521d', N'606', N'医用封口机', N'OPL-350MDNP', N'日本富士', N'11292011-0000005/049707D', N'2012.7', 1.5, 0.024, N'B类', 4.8000, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'封口宽度>6mm长度350mm加热温度60-200', 0, 0, 128, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (162, N'70a1f48c-ab65-4cb3-98f0-2efb665233db', N'615', N'抛光机', N'2M×4140', N'江苏如东县富伟机床厂', N'38926', N'2012.8', 4, 0.62, N'B类', 0.2620, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'主轴长度1200.抛光轮最大直径500mm, 主轴转速2200', 0, 0, 67, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (163, N'6319a055-d212-4845-bff1-847f5af9fa33', N'619', N'油压机', N'YQ32-100T', N'无锡江益', N'2012096', N'2012.9', 7.5, 4, N'B类', 6.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'最大工作压力25Mpa', 0, 0, 133, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (164, N'116a1ef1-de02-4ef6-bb9a-021885f6d5ce', N'620', N'加工中心', N'W508MT', N'威力铭', N'207', N'2012.1', 35, 2.5, N'A类', 515.0000, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'行程450*200*425;B轴-15~100°MAX250R;镗MAX30000R 7.5kw;W轴50-30000R10-15kw;2*24刀位;最大铣刀50-80mm;最大加工直径42mm ', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (165, N'3fd839a7-247d-4623-bdca-eb155cb6eb6a', N'626', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB2HJ217', N'2012.12', 25, 5.1, N'A类', 57.0000, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (166, N'4f7a3d1a-c4b0-48b1-a7c7-58452856f870', N'627', N'纵切机床', N'L20EⅧ', N'西铁城', N'QE5296', N'2013.1', 8, 2.3, N'A类', 75.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (167, N'17e5af20-2e19-47f4-8146-0d397e3ba334', N'628', N'纵切机床', N'L20EⅧ', N'西铁城', N'QE5297', N'2013.1', 8, 2.3, N'A类', 75.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (168, N'010768d3-244a-49ec-b813-ace0b3a90273', N'629', N'纵切机床', N'L20EⅧ', N'西铁城', N'QE5298', N'2013.1', 8, 2.3, N'A类', 75.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (169, N'7e274ec8-5a78-45f1-9b94-a2d6760dc58d', N'630', N'纵切机床', N'L20EⅧ', N'西铁城', N'QE5299', N'2013.1', 8, 2.3, N'A类', 75.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (170, N'166687a8-7cf1-4858-9404-9d11b601c296', N'631', N'纵切机床', N'L20EⅧ', N'西铁城', N'QE5300', N'2013.1', 8, 2.3, N'A类', 75.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (171, N'e7756977-6c22-4343-a3a5-57f1d8cb0f92', N'632', N'纵切机床', N'L20EⅨ', N'西铁城', N'QE5383', N'2013.1', 8, 2.3, N'A类', 82.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (172, N'49be0106-38ac-4a75-a679-28105d0ceb73', N'633', N'纵切机床', N'L20EⅨ', N'西铁城', N'QE5384', N'2013.1', 8, 2.3, N'A类', 82.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (173, N'bddfc3df-5de9-41b0-9341-52d518f9bf7c', N'638', N'钝化线', N'Xin-WJ06S', N'常州市新鑫环保', N'XIN-12-021', N'2013.1', 16.9, 1.5, N'B类', 14.8000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'超声波功率1.2KW 28Khz内缸尺寸600*400*500', 0, 0, 38, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (174, N'e13017db-d0f5-46da-8335-459b22d14cd7', N'640', N'加工中心', N'VF2', N'美国哈斯自动化', N'1100590', N'2013.4', 14, 3.31, N'A类', 40.5000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'行程762*406*508刀20把主轴8100转台面承重1.36T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (175, N'69caf8ce-457b-4337-b394-5c6fdcd1870a', N'641', N'加工中心', N'VF2', N'美国哈斯自动化', N'1100599', N'2013.4', 14, 3.31, N'A类', 40.5000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'行程762*406*508刀20把主轴8100转台面承重1.36T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (176, N'a56766fd-7ef7-4c77-af68-d5679b22a180', N'642', N'喷砂机', N'KQS-01', N'无锡富岛精工有限公司', N'275', N'2013.3', 0.215, 0.12, N'B类', 0.9000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'¢220*200,流量0.5-0.10m3/m', 0, 0, 69, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (177, N'd82b56ac-f748-4f55-9ecc-881847c1f8ad', N'643', N'喷砂机', N'KQS-01', N'无锡富岛精工有限公司', N'276', N'2013.3', 1.215, 1.12, N'B类', 1.9000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'¢220*200,流量0.5-0.10m3/m', 0, 0, 69, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (178, N'c033a7ab-5c9c-4ca2-a5ff-83fbd2d546b4', N'653', N'着色线', N'FM-ZS', N'常州飞鸣电子设备有限公司', N'130530', N'2013.6', 20, 1, N'B类', 5.5000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'50A/150V', 0, 0, 146, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (179, N'89c5ad44-b864-414e-85c8-91cb1aa3a6df', N'659', N'清洗线', N'Xin-WJ04S', N'常州市新鑫环保', N'XIN-20130522003', N'2013.6', 16, 1, N'B类', 7.1000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N' ', 0, 0, 85, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (180, N'90d3dbaf-f231-4eb5-b868-512aa9b9cff8', N'660', N'钝化线', N'Xin-WJ03S', N'常州市新鑫环保', N'20130603001', N'2013.6', 13, 1, N'B类', 8.0000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'外形2*0.79*2.3, 槽体0.5*0.45*0.28,', 0, 0, 38, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (181, N'8ba6126e-7fc3-47b2-bb4d-0d51c168d675', N'661', N'清洗线', N'xin-paste05D-01', N'常州市新鑫环保', N'XIN-20130522001', N'2013.6', 14, 1, N'B类', 7.1000, 1, N'N/A', N'荧光探伤车间二楼', N'KH创伤单元', N'外形3.58*0.65*0.81, 槽体0.5*0.42*0.28,超声1.2KW', 0, 0, 85, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (182, N'b07d5cdc-bafc-4262-9c2b-623da5bd17ac', N'662', N'清洗线', N'Xin-WJ04S', N'常州市新鑫环保', N'XIN-20130522002', N'2013.6', 16, 1, N'B类', 7.1000, 1, N'N/A', N'KH一楼中南', N'KH器械单元', N'外形3*0.79*0.8, 槽体0.5*0.5*0.3,超声1.2KW', 0, 0, 85, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (183, N'fea0d4bd-7d90-4708-a640-d2e7d9c9a4fb', N'663', N'电解线', N'KPDW-QC2000', N'常州市科沛达', N'13052427', N'2013.6', 9, 1, N'B类', 6.0000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'电解槽0.6*.05*0.56 漂洗槽0.6*0.5*0.4', 0, 0, 34, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (184, N'8687dde5-05be-48da-b44e-7a231fb1206c', N'664', N'电解线', N'KPDW-QC2000', N'常州市科沛达', N'130524231', N'2013.6', 9, 1, N'B类', 6.0000, 1, N'N/A', N'KH一楼中南', N'KH器械单元', N'电解槽0.6*.05*0.56 漂洗槽0.6*0.5*0.4', 0, 0, 34, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (185, N'ed11a46d-5239-44c3-884f-44c6e3ba8624', N'669', N'砂带机', N'BPYZS3200', N'无锡富岛精工有限公司', N'698', N'2013.6', 3, 0.5, N'B类', 1.7500, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'砂带宽50-60, 砂带周长3200,', 0, 0, 96, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (186, N'992486f5-5a4e-4ab7-b238-d0f86f765682', N'672', N'砂带机', N'BPYZS3200', N'无锡富岛精工有限公司', N'701', N'2013.6', 3, 0.5, N'B类', 1.7500, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'砂带宽50-60, 砂带周长3200,', 0, 0, 96, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (187, N'f8e2da18-c65f-4888-b95c-c2fa869e0854', N'680', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB3FJ382', N'2013.7', 26, 6.1, N'A类', 56.0000, 1, N'N/A', N'KH一楼中南', N'KH创伤单元', N'MAX8200转,工作台1120*540,主轴移动145-685刀库25把', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (188, N'badac373-679a-40aa-81a4-bbe318fa6011', N'687', N'车削中心', N'ELiTE51M', N'哈挺上海', N'EMBB3GJ035', N'2013.8', 11, 4, N'A类', 88.0000, 1, N'N/A', N'KH一楼中南', N'KH器械单元', N'主轴最大棒料直径51mm, 最大加工直径284mm,218*465mm行程,5000r/m', 0, 0, 23, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-07-12T09:24:36.883' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (189, N'dacd19dd-ad22-492b-b1f4-8bd85dc9375f', N'688', N'喷砂机', N'ZP-30', N'无锡富岛精工有限公司', N'274', N'2013.8', 2.5, 1, N'B类', 3.6000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'500*500*400', 0, 0, 69, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (190, N'bc2ff64e-be66-4d8c-a58b-2067933ba9e7', N'693', N'加工中心', N'VF2', N'美国哈斯自动化', N'1105920', N'2013.10.', 14, 3.31, N'A类', 48.0000, 1, N'N/A', N'KH一楼南', N'KH创伤单元', N'行程762*406*508刀20把主轴8100转台面承重1.36T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (191, N'c3aafb86-3541-42c2-bbd9-db271595dbab', N'694', N'加工中心', N'VF2', N'美国哈斯自动化', N'1105928', N'2013.10.', 14, 3.31, N'A类', 49.0000, 1, N'N/A', N'KH一楼南', N'KH创伤单元', N'行程762*406*508刀20把主轴8100转台面承重1.36T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (192, N'f3fd79cc-a3f0-44ee-b41e-ef967cbd1e57', N'695', N'加工中心', N'VF2', N'美国哈斯自动化', N'1105929', N'2013.10.', 14, 3.31, N'A类', 49.0000, 1, N'N/A', N'KH一楼南', N'KH创伤单元', N'行程762*406*508刀20把主轴8100转台面承重1.36T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (193, N'8ef84f79-75db-4f77-b8c7-b9975c0ae3e7', N'696', N'研磨机', N'XMW36', NULL, N'811', NULL, 0, 0, N'B类', 0.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', NULL, 0, 0, 126, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (194, N'9519a9a7-f8e6-47e0-a597-a05aa4eebe4b', N'709', N'无心磨床', N'MG1020', N'无锡机床股份', N'814', N'2013.12', 5.57, 2, N'B类', 13.7000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'磨削直径0.5-20mm.最大磨削长度80mm.', 0, 0, 113, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (195, N'204d4cc5-dd58-44eb-8a4f-96bd5e35f42e', N'710', N'线切割机床', N'FW-2U', N'北京阿奇夏米尔', N'394-900-153-0277', N'2014.1', 3, 2.2, N'B类', 18.6000, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 121, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (196, N'e1d17c8e-2b43-492f-aa03-24a8fce34faa', N'711', N'线切割机床', N'FW-2U', N'北京阿奇夏米尔', N'394-900-153-0272', N'2014.1', 3, 2.2, N'B类', 18.6000, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 121, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (197, N'0d580ac1-16cb-4f77-a760-15dd165e271a', N'712', N'线切割机床', N'FW-2U', N'北京阿奇夏米尔', N'394-900-153-0275', N'2014.1', 3, 2.2, N'B类', 18.6000, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 121, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (198, N'5afe2145-1420-4222-99bd-0bbb453546f3', N'713', N'线切割机床', N'FW-2U', N'北京阿奇夏米尔', N'394-900-153-0279', N'2014.1', 3, 2.2, N'B类', 18.6000, 1, N'N/A', N'KH一楼西北', N'KH脊柱单元', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 121, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (199, N'6d821a34-57ba-48cb-831e-7738a8bf8c84', N'728', N'线切割机床', N'FW-2U', N'北京阿奇夏米尔', N'394-900-153-0282', N'2014.4', 3, 2.2, N'B类', 18.6000, 1, N'N/A', N'KH一楼东南', N'KH脊柱单元', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 121, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (200, N'ec569bb7-79cc-4b16-a1b5-6fe30bd93c4f', N'729', N'线切割机床', N'FW-2U', N'北京阿奇夏米尔', N'394-900-153-0283', N'2014.4', 3, 2.2, N'B类', 18.6000, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 121, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (201, N'a6d2c673-aea4-44b3-9f6f-d791ed813f67', N'730', N'线切割机床', N'FW-2U', N'北京阿奇夏米尔', N'394-900-153-0285', N'2014.4', 3, 2.2, N'B类', 18.6000, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 121, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (202, N'52e847f6-5684-4f71-bf02-80e6fb8997bc', N'731', N'线切割机床', N'FW-2U', N'北京阿奇夏米尔', N'394-900-153-0286', N'2014.4', 3, 2.2, N'B类', 18.6000, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 121, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (203, N'7cc281ea-d04c-4e68-994a-384dcc681238', N'732', N'线切割机床(慢丝)', N'CA20', N'北京阿奇夏米尔', N'396.900.103.0109', N'2014.4', 9, 2.8, N'B类', 57.8000, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'0.1mm- 工作台700*480工件重量400Kg', 0, 0, 122, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (204, N'1ebb789c-00b1-4a1e-8706-2b14b661bfe1', N'734', N'车削中心', N'ELiTE51M', N'哈挺上海', N'EMBB4CJ041', N'2014.5', 11, 4, N'A类', 87.2000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'主轴最大棒料直径51mm, 最大加工直径284mm,218*465mm行程,5000r/m', 0, 0, 23, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-07-14T01:37:00.600' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (205, N'e78a5007-8a8e-4f09-84e5-72e5a9eaa125', N'735', N'车削中心', N'ELiTE51M', N'哈挺上海', N'EMBB4CJ042', N'2014.5', 11, 4, N'A类', 87.2000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'主轴最大棒料直径51mm, 最大加工直径284mm,218*465mm行程,5000r/m', 0, 0, 23, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-07-12T09:25:04.700' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (206, N'186222b2-6879-466c-b7ca-e7801cf71068', N'738', N'加工中心', N'VF3', N'美国哈斯自动化', N'1110210', N'2014.5', 24.3, 5.675, N'A类', 67.4355, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'行程1016*508*635刀20把主轴15000转台面承重1.588T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (207, N'640cbdcf-51c2-4eae-a6c0-568b108cbcb6', N'739', N'加工中心', N'VF3', N'美国哈斯自动化', N'1110405', N'2014.5', 24.3, 5.675, N'A类', 67.4355, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'行程1016*508*635刀20把主轴15000转台面承重1.588T', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (208, N'c6114d1d-9a86-48ec-a771-94113b9519cc', N'740', N'注塑机', N'V4-S-85T-CQ', N'百塑企业', N'N/A', N'2014.5', 10, 2, N'B类', 28.7859, 1, N'N/A', N'KH一楼中南', N'KH器械单元', NULL, 0, 0, 144, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (209, N'7468c820-7abc-41ab-86b3-e0f64c8d2b6a', N'746', N'切削液车', N'LiL Sucker80B', N'马思特天津', N'91-00-010-081-00-01-013-037', N'2014.5', 1, 1, N'B类', 4.8000, 1, N'N/A', N'KH一楼中北', N'KH创伤单元', N'容积320L,', 0, 0, 77, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (210, N'6e60bc7e-cc4d-4c39-a185-cfb95f98a415', N'747', N'三维扫描仪', N'EXAscan3D', N'加拿大Creaform', NULL, N'2014.5', 1, 0.2, N'B类', 43.2000, 1, N'N/A', N'研发楼二楼', N'KH研发中心', N'精度0.04mm分辨率0.05mm 扫描速度50000点/秒 扫描线宽300mm/束', 0, 0, 94, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (211, N'1f68a54c-76eb-40f6-95cc-ad83928c1b02', N'749', N'对刀仪', N'P1850-G3', N'美国帕莱克', N'P1302043-0214-02', N'2014.5', 1, 0.4, N'B类', 26.5000, 1, N'N/A', N'KH一楼中北', N'KH创伤单元', N'测量范围320*400,显示精度1um最大刀具151kg', 0, 0, 36, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (212, N'444d01b7-c0d6-4681-9a96-766d3fe32e7b', N'753', N'点胶机', NULL, N'诺信', NULL, NULL, 0.1, 0.01, N'B类', 0.0000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', NULL, 0, 0, 31, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (213, N'de89fe37-1d8f-4d85-ae30-63ef75a415cc', N'754', N'烘箱', N'CX881-3', N'吴江创新烘箱', N'140619', N'2014.7', 9.37, 1, N'B类', 0.6950, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'0-300°工作室500*600*750, 均匀性±2°,控温精度±1°', 0, 0, 53, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (214, N'5b6f2799-0e01-4247-ac68-63179859c0db', N'757', N'线切割机床', N'FW2UP', N'北京阿奇夏米尔', N'394.900.192.0046', N'2014.8', 3, 2.2, N'B类', 21.5000, 1, N'N/A', N'KH一楼东北', N'KH器械单元', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 121, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (215, N'9b323f0a-2040-4998-9739-92e8da1070d7', N'760', N'震动研磨机', N'LMP100PU-VF', N'无锡富岛精工有限公司', N'585', N'2104.9', 2.2, 0.43, N'B类', 1.4500, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'100L,', 0, 0, 141, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (216, N'9359043e-82b2-4d99-8dea-0f59d9d671aa', N'768', N'线切割机床', N'FW2UP', N'北京阿奇夏米尔', N'394.900.192.0064', N'2014.11', 3, 2.2, N'B类', 21.5000, 1, N'N/A', N'KH一楼中南', N'KH脊柱单元', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 121, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (217, N'84be888f-fa13-4716-ab6a-2efe34f18d6b', N'770', N'线切割机床', N'FW2UP', N'北京阿奇夏米尔', N'394.900.192.0066', N'2014.11', 3, 2.2, N'B类', 21.5000, 1, N'N/A', N'KH一楼东北', N'KH器械单元', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 121, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (218, N'74687e1f-77ea-498d-9bdf-b10dab6e51ef', N'771', N'线切割机床', N'FW2UP', N'北京阿奇夏米尔', N'394.900.192.0067', N'2014.11', 3, 2.2, N'B类', 21.5000, 1, N'N/A', N'KH一楼东北', N'KH器械单元', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 121, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (219, N'f69eb25f-d044-492e-aa04-212fc3fdabb2', N'775', N'车削中心', N'NLX1500Y/500', N'DMG森精机', N'NL152141105', N'2015.1', 29, 5, N'A类', 135.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'主轴6000r/m,动力刀10000, 最大车削386,移动260*590*100主轴通孔61,12把刀', 0, 0, 23, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-07-12T10:03:49.750' AS DateTime), 2028, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (220, N'56afa255-0341-4698-a0d3-558756035104', N'776', N'车削中心', N'NLX1500Y/500', N'DMG森精机', N'NL152141106', N'2015.1', 29, 5, N'A类', 141.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'主轴6000r/m,动力刀10000, 最大车削386,移动260*590*100主轴通孔61,16把刀', 0, 0, 23, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-07-12T09:46:13.927' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (221, N'e4ceacc8-93a5-40ed-a919-b4efbc2b9249', N'782', N'纵切机床', N'L20X-1M10', N'西铁城', N'QE1655', N'2015.3', 10, 2.45, N'A类', 135.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (222, N'bb042a30-eceb-453f-96c4-1727ba814276', N'783', N'纵切机床', N'L20X-1M10', N'西铁城', N'QE1656', N'2015.3', 10, 2.45, N'A类', 135.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (223, N'd4efabef-e534-447b-bea4-cd083fff9ec9', N'784', N'纵切机床', N'L20X-1M10', N'西铁城', N'QE1657', N'2015.3', 10, 2.45, N'A类', 135.0000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (224, N'5080228c-ac9e-482a-a49b-f54a7a464f58', N'787', N'纵切机床', N'L20X-1M10', N'西铁城', N'QE1660', N'2015.5', 10, 2.45, N'A类', 123.3100, 1, N'N/A', N'KH一楼西北', N'KH SUP单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'2018.12.7理贝尔移康辉') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (225, N'85117f8d-b0ed-49dc-9348-621e63557eab', N'791', N'加工中心', N'DMU50', N'DMG森精机', N'11415596234', N'2015.5', 31, 4.48, N'A类', 187.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (226, N'11826140-aa01-49ec-9086-15b66666debd', N'792', N'加工中心', N'DMU50', N'DMG森精机', N'11415596254', N'2015.5', 31, 4.48, N'A类', 187.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (227, N'20d4619d-a162-4ee0-bac6-2fb3ba31ae9d', N'794', N'打标机', N'ROFIN', N'德国ROFIN', N'403460201', N'2015.5', 8, 0.7, N'A类', 85.0000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'打标范围180*180,行程300*300激光25w', 0, 0, 28, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (228, N'd6f0d4b8-a7d9-4ff3-898c-9d0f88c2b2c1', N'810', N'喷砂机', N'9060E', N'苏州工业园区百通', N'9846', N'2015.12', 1.1, 0.27, N'B类', 1.3500, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'0.9*0.7*0.58,流量0.8-1.2m3/m', 0, 0, 69, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (229, N'c4744284-f6c7-4bb1-a586-bb86f9d1dc5a', N'820', N'UV固化系统', N'OmniCure/LX405S', N'江森智能', N'N/A', N'2016.4', 0.1, 0.1, N'B类', 4.4554, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'1个系统配4个365*55LED照射头 4个10mm聚焦镜', 0, 0, 13, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (230, N'5d4d92df-17af-4830-a16a-f51db8c493e2', N'822', N'打标机', N'UV-3C', N'大族激光', N'KDD4116030148', N'2016.4', 1.5, 0.3, N'B类', 26.0000, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'3w/20kHz,波长355nm,100*100mm,线宽≤0.01,深度≤0.01,最小字符0.06,线速7000mm/s,重复精度±0.003', 0, 0, 28, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (231, N'4585cf95-8024-4ae7-98a6-1898c4fd27d3', N'825', N'点胶机', N'Ultimus', N'诺信', N'849242', N'2016.4', 0.1, 0.01, N'B类', 1.4590, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'100PSI,7BAR', 0, 0, 31, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (232, N'651ebb50-2270-4946-bdcf-a94d2eb67e7b', N'827', N'封装机', N'CARTOLUX500XP', N'卡尔托利苏州', N'CSN-HSN-FP-0031', N'2016.8', 3.2, 0.25, N'B类', 21.0000, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'820*650*700,有效500*400 最大高度140', 0, 0, 41, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (233, N'1a17653c-8b1a-4d05-8c4d-67b013111bca', N'834', N'打标机', N'ROFN', N'德国', N'50033310', N'2016.8', 8, 0.7, N'A类', 38.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'打标范围180*180,行程300*300激光25w', 0, 0, 28, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (234, N'a5cd449d-c5cc-4763-8d67-dfbffb6b4f5c', N'841', N'加工中心', N'A51nx', N'牧野', N'1654', N'2016.1', 25, 8, N'A类', 180.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速14000刀库数量60把,主轴中心出水3Mpa', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (235, N'e9217f0f-640b-429b-befd-ed2b2e04a99e', N'842', N'加工中心', N'A51nx', N'牧野', N'1655', N'2016.1', 25, 8, N'A类', 180.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'工作台尺寸行程 主轴最高转速14000刀库数量60把,主轴中心出水3Mpa', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (236, N'3760c0a8-2eb0-4367-8a90-b84fbced223e', N'843', N'加工中心', N'A51nx', N'牧野', N'1656', N'2016.1', 25, 8, N'A类', 180.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'工作台尺寸行程 主轴最高转速14000刀库数量60把,主轴中心出水3Mpa', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (237, N'3342a793-e566-4f61-b4c0-5e4f42e64ca9', N'844', N'加工中心', N'A51nx', N'牧野', N'1657', N'2016.1', 25, 8, N'A类', 180.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'工作台尺寸行程 主轴最高转速14000刀库数量60把,主轴中心出水3Mpa', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (238, N'f2c89991-92b5-4429-bda4-d38c5dce3b4d', N'845', N'加工中心', N'A51nx', N'牧野', N'1662', N'2016.1', 25, 8, N'A类', 180.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'工作台尺寸行程 主轴最高转速14000刀库数量60把,主轴中心出水3Mpa', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (239, N'89e35d1a-d2c7-4e36-94c8-e41984ecc1be', N'858', N'喷砂机', N'9060E', N'苏州百通', N'9896', N'2016.1', 0.45, 0.2, N'B类', 1.3000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'0.9*0.7*0.58,流量0.8-1.2m3/m', 0, 0, 69, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (240, N'14880c6b-f6ac-49aa-9c51-aa7db3e7f77f', N'862', N'激光打标机', N'K20-CS', N'大族激光', N'KYD581612032', N'2017.1', 0.5, 0.2, N'B类', 16.0000, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'160*160,深度0.4mm,速度7000mm/s,min字宽0.05,min字符0.3,20-200KHz', 0, 0, 55, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (241, N'd96142e5-0bb2-4f52-aea4-7ab038fe19a5', N'865', N'热处理炉', N'N/A', N'苏州工业园区热处理设备厂', N'N/A', N'2017.3', 20, 1, N'B类', 8.0000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'550°,500*300*300,±5°', 0, 0, 89, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (242, N'e2fcec75-e5af-48c5-afcc-f1b57304d903', N'872', N'喷砂机', N'GP-9070', N'无锡富岛精工有限公司', N'328', N'2017.4', 1, 0.2, N'B类', 1.3000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'0.9*0.7*0.58,流量0.8-1.2m3/m', 0, 0, 69, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (243, N'b9b94b0d-1dec-40e0-b421-7d0dd8c3b473', N'874', N'中丝线切割', N'HQ500F1', N'苏州汉奇', N'Z17256', N'2017.4', 3, 2, N'B类', 20.0000, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'400*300*300', 0, 0, 142, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (244, N'c8cf1817-e2a4-4fd8-9e51-0f3d80c17676', N'876', N'加工中心', N'DMU50', N'DMG森精机', N'11415752044', N'2017.5', 31, 4.48, N'A类', 140.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (245, N'83cd3527-b9e6-4e14-afa8-85599f5df92d', N'877', N'加工中心', N'DMU50', N'DMG森精机', N'11415752064', N'2017.5', 31, 4.48, N'A类', 140.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (246, N'6e6b5f2b-9be1-456e-883d-10f2eb6c55fe', N'878', N'加工中心', N'DMU50', N'DMG森精机', N'11415752104', N'2017.5', 31, 4.48, N'A类', 140.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (247, N'892bf39c-ff53-4d45-998d-d19fec4d3f25', N'879', N'打标机', N'YLP-S20', N'大族激光', N'YKD711704260', N'2017.6', 0.5, 1, N'B类', 28.0000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'打标范围120*120,行程300*200激光20w', 0, 0, 28, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (248, N'f11b1ed8-0dee-421e-b46e-98686024fbd4', N'881', N'打标机', N'ROFIN EasyMarkⅣF20', N'德国', N'50036054', N'2017.8', 0.4, 0.7, N'A类', 28.9525, 1, N'N/A', N'KH一楼西北', N'KH SUP单元', N'打标范围120*120,行程300*200激光20w', 0, 0, 28, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (249, N'f0118b2d-1926-49b9-b625-865f11e45622', N'892', N'加工中心', N'DMU50', N'DMG森精机', N'11415752154', N'2017.6', 31, 4.48, N'A类', 174.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (250, N'72b9c514-0152-432d-9716-64227521a1c2', N'893', N'加工中心', N'DMU50', N'DMG森精机', N'11415752234', N'2017.6', 31, 4.48, N'A类', 174.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (251, N'966e2dae-03a8-4680-b610-337a5923aaa7', N'898', N'线切割', N'DK7740D', N'常州北辰', N'625', N'2017.11', 1.5, 2, N'B类', 4.0000, 1, N'N/A', N'KH一楼中北', N'KH器械单元', N'800*495;行程400*500;400kg;Ra≤2.5', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (252, N'b30d9a29-9bd8-4079-9702-ca76f299582d', N'899', N'线切割', N'DK7740D', N'常州北辰', N'626', N'2017.11', 1.5, 2, N'B类', 4.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'800*495;行程400*500;400kg;Ra≤2.5', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (253, N'07deb1d0-fece-4753-ad9b-83f5db1047f1', N'901', N'线切割', N'DK7740D', N'常州北辰', N'628', N'2017.11', 1.5, 2, N'B类', 4.0000, 1, N'N/A', N'KH一楼东北', N'KH器械单元', N'800*495;行程400*500;400kg;Ra≤2.5', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (254, N'992c9ce9-1854-4f21-a53e-bb284bfae817', N'902', N'线切割', N'DK7740D', N'常州北辰', N'629', N'2017.11', 1.5, 2, N'B类', 4.0000, 1, N'N/A', N'KH一楼中北', N'KH器械单元', N'800*495;行程400*500;400kg;Ra≤2.5', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (255, N'f0ad7e5e-167e-4ddf-adf0-c21d301c5ab3', N'903', N'线切割', N'DK7740D', N'常州北辰', N'630', N'2017.11', 1.5, 2, N'B类', 4.0000, 1, N'N/A', N'KH一楼东北', N'KH器械单元', N'800*495;行程400*500;400kg;Ra≤2.5', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (256, N'179a7739-7a42-4e8d-9bc7-bd7897068db1', N'904', N'高频焊机', N'ZAG-35C', N'常州振奥', N'1720047', N'2017.11', 35, 0.1, N'B类', 1.4000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'输出35kw,30-100khz加热 电流200-1200', 0, 0, 46, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (257, N'72dcba35-cc32-49d8-bf1a-f5406b58ae8d', N'906', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'2551', N'2017.12', 5.2, 2.2, N'A类', 36.6602, 1, N'N/A', N'KH一楼西北', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (258, N'a4ead6b8-552b-4ba2-b7f8-61eed907ea03', N'907', N'加工中心', N'DMU505AXIS', N'DMG森精机', N'11415592434', N'2017.12', 31, 4.5, N'A类', 90.0328, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (259, N'3b3297a9-7c50-44af-b0ee-9839bd897485', N'909', N'数控车床', N'QSM100L', N'LGMAZAK', N'251435', N'2017.12', 25, 3.5, N'B类', 31.1950, 1, N'N/A', N'研发楼一楼', N'KH研发中心', NULL, 0, 0, 103, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (260, N'31894192-b358-4716-af2d-106f20993ab5', N'910', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'2473', N'2018.4', 5.2, 2.2, N'A类', 36.2700, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (261, N'ec87f7ce-a6b2-47db-9ac3-52c9e872cfb7', N'911', N'加工中心', N'MXR-460V', N'北京大隈机床有限公司', N'1725120512', N'2018.4', 22, 5.5, N'A类', 39.9443, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'工作台尺寸460x1000行程762x460x450 主轴最高转速7000刀库数量20把', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (262, N'ff76bdef-9973-4165-aa7f-526fd8bbe138', N'912', N'喷砂机', N'GD-9070', N'无锡富岛精工有限公司', N'351', N'2020.12', 1.1, 0.27, N'B类', 1.3500, 1, N'N/A', N'KH一楼东北', N'KH器械单元', N'0.9*0.7*0.58,流量0.8-1.2m3/m', 0, 0, 69, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (263, N'8ba4163b-2b67-4222-87b2-95883d49755a', N'923', N'装配机', N'25/200', N'常州蓝丁格尔', N'1', N'2018.7', 0.2, 0.1, N'B类', 8.4630, 1, N'N/A', N'KH一楼正西', N'KH SUP单元', NULL, 0, 0, 145, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (264, N'7da9adc3-8f85-46f0-ab54-366d6508a3a5', N'924', N'研磨机', N'ZHM-120', N'湖州双林荣昌', N'180022', N'2018.9', 7.5, 1, N'B类', 3.6000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'120L,', 0, 0, 126, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (265, N'c51308ec-7b0e-4e8f-9134-d746e5dd54ff', N'928', N'喷砂机', N'9060E', N'苏州百通', N'10118', N'2018.9', 0.43, 0.2, N'B类', 1.3500, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'0.9*0.7*0.58,流量0.8-1.2m3/m', 0, 0, 69, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (266, N'bc760dbf-2b32-4d70-b886-9c42a0ee00fd', N'930', N'对刀仪', N'E46L', N'ELBO意大利', N'200049', N'2018.9', 2, 0.255, N'B类', 25.5980, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'400*600;BT40;BT30;DYMO标签打印机,26X', 0, 0, 36, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (267, N'0cd15ccc-f01b-4970-9b8c-e0e5267342e9', N'949', N'清洗机', N'XR-3009', N'鑫仁', N'18081001', N'2018.1', 8.5, 1, N'B类', 3.5000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'450w40khz,260*320*200', 0, 0, 83, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (268, N'04555f57-f950-4c08-8514-fe2d6e216854', N'950', N'研磨机', N'TP18', N'佐技上海', N'ZJ/180005', N'2018.1', 2, 0.2, N'B类', 7.0500, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'18L,130-300r', 0, 0, 126, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (269, N'27ebf5be-7e78-4762-b1e1-a538675b8e9c', N'954', N'油压机', N'Y41-10T', N'无锡捷率', N'16152', N'2019.3', 4, 2, N'B类', 2.0500, 1, N'N/A', N'KH一楼中南', N'KH器械单元', N'10T', 0, 0, 133, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (270, N'821b5e42-7d2a-4568-bad6-6351326b1520', N'955', N'着色线', N'XR-Z70', N'鑫仁', N'N/A', N'2019.7', 16, 1, N'B类', 4.8000, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'330*250*400', 0, 0, 146, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (271, N'831e3a21-b1bd-4819-962f-3578fd6c4fef', N'956', N'纵切机床', N'L20-2M10', N'西铁城', N'QF5196', N'2019.3', 7.5, 2.4, N'A类', 82.6583, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (272, N'99ff262b-3d0f-4754-b119-a131d90f8b6b', N'957', N'纵切机床', N'L20-2M10', N'西铁城', N'QF5197', N'2019.3', 7.5, 2.4, N'A类', 82.6583, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (273, N'd829ae08-68d7-4a97-b0d3-261b8441610b', N'958', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'4002', N'2019.3', 6.7, 2.2, N'A类', 59.7100, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (274, N'bfa579ba-0655-4b36-8628-db66e04423a6', N'959', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'4003', N'2019.3', 6.7, 2.2, N'A类', 58.6526, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (275, N'8c0cc296-178e-4fad-af0c-ab43cf4dfd19', N'960', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'4004', N'2019.3', 6.7, 2.2, N'A类', 55.5714, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (276, N'fece064a-27c5-41ba-8057-ad578fe41b56', N'961', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'4006', N'2019.3', 6.7, 2.2, N'A类', 59.0970, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (277, N'a934e209-a80e-4242-a39d-35f77fd1af51', N'962', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'4007', N'2019.3', 6.7, 2.2, N'A类', 59.0970, 1, N'N/A', N'KH一楼正西', N'KH脊柱单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (278, N'0d8b3c5a-89cc-4cd6-ab2a-993f9b5048c0', N'989', N'装配机', N'25/200', N'常州蓝丁格尔', N'3', N'2019.7', 0.1, 0.1, N'B类', 5.8000, 1, N'N/A', N'KH一楼正西', N'KH SUP单元', N'定制', 0, 0, 145, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (279, N'48ef9027-9677-4a09-b3b0-a7dd3977e1d8', N'992', N'纵切机床', N'M32-4M8', N'西铁城', N'P31125', N'2019.8', 14.5, 3.5, N'A类', 296.5448, 1, N'N/A', N'KH一楼西', N'KH SUP单元', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (280, N'3266d35c-5bd8-400c-a5ba-313998f6309c', N'994', N'激光焊机', N'PB80', N'大族激光', N'HYF291806311', N'2019.8', 5, 1, N'B类', 24.0000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'80w', 0, 0, 57, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (281, N'a2169a29-038c-4e0d-95bc-e1ca87a68553', N'995', N'清洗机', N'XR-4020-40C', N'常州鑫仁超声', N'N/A', NULL, 16, 1, N'B类', 4.3836, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'超声功率500w*2,40khz', 0, 0, 83, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (282, N'5a2ec959-14d2-4e57-9fdd-dbd07dfcb8ea', N'1006', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7337', N'2019.6', 10, 2.5, N'A类', 185.4798, 1, N'N/A', N'KH一楼西', N'KH SUP单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (283, N'0ce18f79-37fe-41a8-9808-30ec4fe99e0b', N'1007', N'研磨机', N'LXGP120', N'湖州双林荣昌', N'190838', N'2019.11', 5, 1.3, N'B类', 3.6000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'120L,', 0, 0, 126, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (284, N'd30a75af-756f-4dbd-b7e6-c8ba4140bad2', N'1014', N'清洗机', N'XR4020-40C', N'鑫仁', N'1903010102', N'2019.9', 17, 1, N'B类', 4.3836, 1, N'N/A', N'KH一楼西', N'KH ECO单元', N'超声波0.5kw*2槽40khz', 0, 0, 83, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (285, N'6d6a93c7-738e-4e55-8151-b1317733894d', N'1015', N'研磨机', N'FMSL8/1', N'美国BELAIR', N'591', N'2019.9', 1, 0.3, N'B类', 36.0000, 1, N'N/A', N'KH一楼西', N'KH ECO单元', N'8L,', 0, 0, 126, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (286, N'2b41bae1-5450-4d5e-9e08-659fb22855ff', N'1016', N'研磨机', N'FMSL8/1', N'美国BELAIR', N'592', N'2019.9', 1, 0.3, N'B类', 36.0000, 1, N'N/A', N'KH一楼西', N'KH ECO单元', N'8L,', 0, 0, 126, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (287, N'83e533c7-cfb4-4947-873f-c432b657c9fd', N'1034', N'清洗机', N'Xin-7072T', N'常州新鑫环保', N'xin-20190925D', N'2019.11', 21, 1, N'B类', 7.2000, 1, N'N/A', N'KH一楼西', N'KH ECO单元', N'500*420*250,40khz1200w', 0, 0, 83, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (288, N'3a112297-ee06-40dd-a885-f41685e5cc52', N'1035', N'五轴加工中心', N'DMU50', N'DMG森精机', N'11415763754', N'2019.12', 31, 4.48, N'A类', 156.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 115, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (289, N'e7093c75-4018-4cd3-a712-8e87eaeff4d9', N'1036', N'五轴加工中心', N'DMU50', N'DMG森精机', N'11415764064', N'2019.12', 31, 4.48, N'A类', 156.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 115, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (290, N'527fb4aa-9ee4-4c4f-bea9-ebae82e182b1', N'1037', N'五轴加工中心', N'DMU50', N'DMG森精机', N'11415764364', N'2019.12', 31, 4.48, N'A类', 156.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 115, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (291, N'52061a81-b4d4-496a-b98f-e96ad620f43d', N'1040', N'打标机', N'ROFIN EasyMarkⅣF20', N'德国', N'40463031', N'2019.12.6', 0.4, 0.7, N'B类', 30.0000, 1, N'N/A', N'KH一楼西', N'KH ECO单元', N'打标范围120*120,行程300*200激光20w', 0, 0, 28, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (292, N'04030553-6160-4163-8984-61b7a84e31f9', N'1056', N'车削中心', N'ELiTE51M ULTRAII', N'哈挺上海', N'EMECODJ043', N'2020.5', 11, 4, N'A类', 87.2000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'主轴最大棒料直径51mm, 最大加工直径284mm,218*465mm行程,5000r/m', 0, 0, 23, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-07-12T09:46:13.927' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (293, N'9615a009-db08-48b9-ac6d-c954e49d136a', N'1057', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'5622', N'2020.5', 6.7, 2.2, N'A类', 59.0970, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (294, N'8a088626-2d9e-4cf5-83b0-1699bfa54f4c', N'1076', N'纵切机床', N'M32', N'西铁城', N'P40072', N'2020.1', 14.5, 3.5, N'A类', 287.3000, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (295, N'42c39f89-e829-4301-ac3d-506ff84cc921', N'1077', N'研磨机', N'HD-735', N'台湾豪煜', N'N/A', N'2020.10.21', 1, 0.2, N'B类', 6.5350, 1, N'N/A', N'KH一楼西中', N'KH 脊柱单元', N'不锈钢针', 0, 0, 126, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (296, N'077aff42-ddef-46bb-bd6a-3af7a5331b30', N'1078', N'五轴加工中心', N'DMU50', N'DMG森精机', N'11415781894', N'2020.1', 31, 4.48, N'A类', 160.0000, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 115, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (297, N'e2e07532-c37c-4dbb-bd4e-f08c36b81186', N'1079', N'中丝线切割', N'HQ500F3', N'苏州汉奇', N'W50F320025', N'2020.11.2', 2, 2.5, N'B类', 22.2000, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'400*300*300', 0, 0, 142, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (298, N'43e353e0-a8c3-46ea-9c6f-8c6968d12997', N'1085', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7874', N'2020', 20, 2.6, N'A类', 168.3300, 1, N'N/A', N'KH一楼西中', N'KH NPI单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (299, N'7126cafa-ac32-4738-bd32-74770abb14af', N'1092', N'自动包装机', N'PS125', N'Autobag', N'AP00090115', N'2023.4', 0, 0, N'B类', 0.0000, 1, N'N/A', N'KH一楼西', N'KH SUP单元', N' 220±10% V', 0, 0, 147, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (300, N'2aea755c-0999-42a7-8942-d6fd8979e6d4', N'1093', N'压力机', N'JP-1004', N'JANOME SEWING', N'20-10N0791', NULL, 0.85, 0.16, N'B类', 0.0000, 1, N'N/A', N'KH一楼西北', N'KH SUP单元', NULL, 0, 0, 123, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (301, N'6f1e91f6-6b6a-46e3-ac7f-2e53cda431ca', N'1098', N'清洗机', N'Xin-3120T', N'常州新鑫环保', N'N/A', N'2021.4', 30, 2, N'B类', 23.3900, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'500*450*400,底板1500w28khz,侧板750w*2,80khz,', 0, 0, 83, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (302, N'51df4848-b7e6-4346-9cb0-675ba93fa871', N'1099', N'清洗机', N'Xin-3060T', N'常州新鑫环保', N'N/A', N'2021.4', 30, 2, N'B类', 20.0000, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'500*450*400,底板1500w28khz,侧板750w*2,80khz,', 0, 0, 83, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (303, N'db667d3d-5ba9-4744-b89b-b97462e7d5b6', N'1105', N'纵切机床', N'M32-4M8P', N'西铁城', N'P30629', N'2021.', 14.5, 3.5, N'A类', 64.8605, 1, N'N/A', N'KH一楼西中', N'KH SUP单元', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (304, N'37c94ed0-5ca1-4989-880e-4c9fff3d30f3', N'1106', N'纵切机床', N'M32-4M8', N'西铁城', N'P30965', N'2021.3', 14.5, 3.5, N'A类', 0.0000, 1, N'N/A', N'KH一楼西中', N'KH NPI单元', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (305, N'74f88edc-1763-44ad-86e8-5f60952e0e5c', N'1110', N'点胶机', N'EFD LLC', N'诺信', N'A08020', NULL, 0.0265, 0.0023, N'B类', 0.0000, 1, N'N/A', N'KH 无菌单元', N'KH 无菌单元', NULL, 0, 0, 31, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (306, N'eb65151f-bdc5-4542-aa5f-6bbd0281fde3', N'1112', N'电火花成型机', N'HQ-U40', N'苏州汉奇', N'EU4020005', N'2021.3.8', 9, 3.4, N'B类', 42.8000, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'400*300*300', 0, 0, 32, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (307, N'f5a0677c-6a1f-4bb1-afdd-5478d346b4bf', N'1114', N'车削中心', N'ELiTE51B', N'哈挺上海', N'EBPC1CJ023', N'2021.4', 38, 4, N'A类', 134.6000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'主轴6000r/m,动力刀10000, 最大车削386,移动260*590*100主轴通孔61,16把刀', 0, 0, 23, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (308, N'ddf1ca32-a75f-441d-b35d-22ceda506221', N'1115', N'研磨机', N'YL-480', N'厦门锦帛', N'2021030501', N'2021.4', 5, 2, N'B类', 11.5000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'120L,', 0, 0, 126, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (309, N'b7bb9698-a46d-4456-8b2f-b50f83c3102b', N'1117', N'加工中心', N'GENOS M560V', N'大隈日本', N'234292', N'2021.5', 37, 7.7, N'A类', 189.0000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (310, N'60809a48-869b-4b96-9e23-b8c5e14b4088', N'1118', N'加工中心', N'MILL E500U', N'米克郎', N'3048866', N'2021.5', 20, 6.53, N'A类', 218.0000, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'500*450*400,20000r,DT30', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (311, N'3cff3eb4-1f73-43b7-86d6-68d1684a2c2f', N'1121', N'喷砂机', N'GP9070', N'无锡富岛精工有限公司', N'374', N'2021.5', 1, 1, N'B类', 0.0000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'工作仓尺寸900x700x580,空气压力5-7', 0, 0, 69, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (312, N'c0e98fb4-74a0-4934-81db-09a7d7294368', N'1122', N'喷砂机', N'GP9070', N'无锡富岛精工有限公司', N'375', N'2021.5', 1, 1, N'B类', 0.0000, 1, N'N/A', N'KH二楼器械单元', N'KH器械单元', N'工作仓尺寸900x700x580,空气压力5-7', 0, 0, 69, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (313, N'9864e6ca-74e8-401f-83ad-09b287fb499c', N'1123', N'车削中心', N'NLX1500/500', N'DMG森精机', N'NL154210303', N'2021', 35, 5, N'A类', 169.0000, 1, N'N/A', N'KH一楼北', N'KH创伤单元', N'主轴6000r/m,动力刀10000, 最大车削386,移动260*590*100主轴通孔61,12把刀', 0, 0, 23, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (314, N'c3f3338e-a471-4264-b6a9-069ee7a4f15c', N'1125', N'纵切机床', N'M32-4M8', N'西铁城', N'P31126', N'2021', 14.5, 3.5, N'A类', 270.0000, 1, N'N/A', N'KH一楼西', N'KH SUP单元', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (315, N'b0065664-5390-4fe3-b50f-8ada041facb7', N'1126', N'折弯机', N'N/A', N'常州兆禾', N'N/A', N'2021', 3, 1, N'B类', 44.3735, 1, N'N/A', N'研发楼一楼', N'KH创伤单元', NULL, 0, 0, 135, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (316, N'3c3a80ce-0e26-468d-ad44-9d06905dfc34', N'1127', N'烘干箱', N'101A-3E', N'上海实验仪器', N'1111', N'2021.8', 4.2, 0.5, N'B类', 0.6984, 1, N'N/A', N'KH一楼东北', N'KH器械单元', N'max300°,', 0, 0, 51, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (317, N'36f1d2ac-c2ae-418d-8eea-7736309c4ff9', N'1128', N'真空烘干箱', N'ZK100B', N'上海实验仪器', N'X0001', N'2021.8', 18, 1, N'B类', 6.6255, 1, N'N/A', N'KH一楼东北', N'KH器械单元', N'max200°真空度267', 0, 0, 136, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (318, N'e2a88b7b-b796-4e73-adad-18ae3a576e46', N'1129', N'加工中心', N'NVCN430BL', N'马扎克', N'317181', N'2021.6', 25.6, 5.37, N'A类', 88.0000, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'12000r,30把刀,42m/m', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (319, N'6279be80-9e63-4ae3-a040-21f9c6cac8c4', N'1130', N'纵切机床', N'SR-20RIV', N'STAR精密株式会社', N'0648 050', N'2021.6', 4.7, 2.8, N'A类', 117.5100, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (320, N'31f1ddce-cacc-4e30-8ccc-145ab173f3e4', N'1131', N'纵切机床', N'L20X', N'西铁城', N'QE1381', N'2021.7', 15, 2.5, N'A类', 0.0000, 1, N'N/A', N'KH一楼西', N'KH 脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (321, N'83d48576-8289-44bb-ac8e-b2e4dc0b69a3', N'1132', N'纵切机床', N'L20X', N'西铁城', N'QE1384', N'2021.7', 15, 2.5, N'A类', 0.0000, 1, N'N/A', N'KH一楼西', N'KH 脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (322, N'adc17d45-6c44-4ac9-90d5-cb8c31f96375', N'1137', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF1798', N'2021.8', 7.3, 2.35, N'A类', 178.0000, 1, N'N/A', N'KH一楼西', N'KH SUP单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (323, N'13bf7e12-67e2-4fb3-878c-78139d0f3474', N'1138', N'纵切机床', N'L20E-2M12', N'西铁城', N'QF3064', N'2021.8', 7.3, 2.35, N'A类', 178.0000, 1, N'N/A', N'KH一楼西', N'KH 脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (324, N'28eeefd3-0a67-471b-96e1-64a9e4c0817f', N'1145', N'医用冷藏箱', N'HCY-198S', N'青岛Haier医疗生物', N'BE0FZ50AQ00QEM8DP1NR', N'2023.1', 0.195, 0.054, N'B类', 0.5800, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'2°C-8°C 198L', 0, 0, 130, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (325, N'b214d4c7-dc26-492e-9597-dc98a0ab657d', N'1146', N'无心磨床', N'HFC-1206T', N'昆山鼎欣隆机械', N'G120T0657', N'2022.3', 11, 1.8, N'A类', 15.5000, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'工作台直径?1-?35,特殊工作台直径?40-?60', 0, 0, 113, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (326, N'42d806c9-cf7d-42ce-a8db-f815d9a740b9', N'1147', N'全自动封切机', N'LB-802', N'Sealed Air', N'210302', N'2021.11', 4, 0.1, N'B类', 14.2000, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'封口刀尺寸:800mm*515mm,输送带速度:18m/min', 0, 0, 87, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (327, N'6a27c6aa-0e8d-458d-8c97-a9cce81150cb', N'1148', N'热收缩机', N'XT-62', N'Shrink Packaging', N'21293', N'2021.11', 14, 0.1, N'B类', 4.0000, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'最大包装尺寸:300*230,输送带速度0-30m/min', 0, 0, 92, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (328, N'af2f8147-2939-4fe2-a085-243259875670', N'1155', N'喷砂机', N'CT200-2', N'COMCOINC', N'PC1723', N'2021.12', 1.15, 0.065, N'B类', 15.5000, 1, N'N/A', N'KH一楼西', N'KH NPI单元', N'工作腔内尺寸600*350*250mm', 0, 0, 69, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (329, N'43d2cd96-248d-4626-970f-3206c39f30af', N'1156', N'研磨机', N'TP50B', N'ZOTEC', N'ZT2021368', N'2022.3', 3.1, 0.2, N'B类', 12.0500, 1, N'N/A', N'KH一楼西', N'KH NPI单元', N'工作容器中的最大填充量 30 升', 0, 0, 126, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (330, N'8a44f47a-99a8-4333-8508-5efbf27deba3', N'1161', N'打标机', N'M300-P Y.0200', N'FOBA', N'MY2108/120', N'2021.11', 2, 0.7, N'A类', 99.0000, 1, N'N/A', N'创伤单元打标间', N'KH创伤单元', N'打标范围180*180,行程300*300激光25w', 0, 0, 28, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (331, N'ec766bd4-5b74-4f47-b420-8d359b67a588', N'1162', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF3392', N'2021.11', 7.3, 2.35, N'A类', 153.5000, 1, N'N/A', N'KH一楼西', N'KH 脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (332, N'043f36e1-1965-4292-8505-d599a55a08a0', N'1163', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF3393', N'2021.11', 7.3, 2.35, N'A类', 153.5000, 1, N'N/A', N'KH一楼西', N'KH 脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (333, N'c8d85b29-8ff0-473e-ab3d-013f68efc345', N'1164', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF3394', N'2021.11', 7.3, 2.35, N'A类', 153.5000, 1, N'N/A', N'KH一楼西', N'KH 脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (334, N'b48835d6-8a93-4afe-961b-03fcb9d6b0b3', N'1165', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF3395', N'2021.11', 7.3, 2.35, N'A类', 153.5000, 1, N'N/A', N'KH一楼西', N'KH 脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (335, N'778ffb99-2b38-4eec-abab-f39e896b83ed', N'1166', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF3396', N'2021.11', 7.3, 2.35, N'A类', 153.5000, 1, N'N/A', N'KH一楼西', N'KH 脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (336, N'828bd13a-1004-495e-86da-08a0523c517f', N'1167', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF3397', N'2021.11', 7.3, 2.35, N'A类', 153.5000, 1, N'N/A', N'KH一楼西', N'KH 脊柱单元', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (337, N'19cf29cb-765c-4441-ad8d-23d3750b8951', N'1173', N'标签打印机', N'CL4NX', N'SATO', N'CF102950', N'2018/6', 0.6, 0.1, N'B类', 0.1000, 1, N'N/A', N'KH一楼西', N'KH SUP单元', N'打印分辨203dpi,最大打印速度355mm/s,最大打印范围2500mm*104mm', 0, 0, 18, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (338, N'608e659a-63e4-4113-b4b2-e23fad8a9f79', N'1174', N'包装封口机', N'FRB-770', N'祺鼎', N'100020', N'2019/10', 0.65, 0.1, N'B类', 0.1000, 1, N'N/A', N'KH一楼西', N'KH SUP单元', N'封口宽度12mm,温度范围0-300℃', 0, 0, 16, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (339, N'2c914a75-3199-49de-bef2-947e20bb6bf2', N'1175', N'包装封口机', N'FRB-770', N'祺鼎', N'70972', N'2019/7', 0.65, 0.1, N'B类', 0.1000, 1, N'N/A', N'KH一楼西', N'KH SUP单元', N'封口宽度12mm,温度范围0-300℃', 0, 0, 16, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (340, N'374f26d7-2ad6-487b-b1ae-c6606b782c25', N'1176', N'车铣复合加工中心', N'U3000', N'大隈日本', N'238210', N'2022.1', 66, 15.5, N'A类', 278.2000, 1, N'N/A', N'KH一楼西', N'KH NPI单元', N'主轴6000r/m,动力刀10000, 最大车削386,移动260*590*100主轴通孔61,16把刀', 0, 0, 21, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (341, N'40174810-4efe-4910-a4cc-3a498fad23b5', N'1177', N'纵切机床', N'SR-20JⅡ', N'STAR精密株式会社', N'713', N'2022.1', 6.7, 2.75, N'A类', 106.0000, 1, N'N/A', N'KH一楼西', N'KH NPI单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (342, N'bb50d8f6-fc8c-4253-8842-27ad50e9b43c', N'1178', N'包装封口机', N'FS-300', N'龙鼎包装机械', N'A218503', N'2022.1', 0, 0, N'B类', 0.0000, 1, N'N/A', N'KH一楼打标间', N'KH脊柱单元', NULL, 0, 0, 16, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (343, N'16d63b81-c4d6-49d8-8cd9-bdd2d391ad1f', N'1179', N'中丝线切割', N'HQ500F3', N'苏州汉奇', N'W50F321008', N'2021.5', 2, 2.5, N'B类', 22.2000, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'400*300*300', 0, 0, 142, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (344, N'f415c6b7-7c24-4782-baba-7fd5aba1c57f', N'1180', N'纵切', N'SR-32JII', N'Star', N'849098', N'2021.12', 8.8, 4.1, N'A类', 0.0000, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'最大加工直径32mm.主轴转速200-10000主轴最大移动207mm', 0, 0, 148, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (345, N'e02c8efe-017c-4752-b0a0-c1fba68318ac', N'1181', N'加工中心', N'MILL E500U', N'米克郎', N'3048195', N'2021.5', 20, 6.53, N'A类', 218.0000, 1, N'N/A', N'研发楼一楼', N'KH研发中心', N'500*450*400,20000r,DT30', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (346, N'9ef940db-1474-45ac-9539-9b2ccadd7090', N'1183', N'纵切机床', N'M32-5M8', N'西铁城', N'P40177', N'2022.3', 25, 4.3, N'A类', 229.0000, 1, N'N/A', N'KH一楼西', N'KH NPI单元', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (347, N'99965d13-757e-4a7b-8760-d7063abe64d9', N'1184', N'纵切机床', N'SR-20JⅡ', N'STAR精密株式会社', N'0353020', N'2022/3/20', 4.8, 2.75, N'A类', 106.0000, 1, N'N/A', N'KH一楼中南', N'KH NPI单元', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 150, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'NPI') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (348, N'010bc9ee-9375-4ffd-b938-4df94e5e1061', N'1188', N'线切割', N'DK7745', N'江苏方正数控', N'2107242', N'2022.5', 0, 0, N'B类', 3.4200, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'工作台尺寸:550*450 最大切割厚度550', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (349, N'59a6759a-c6a7-4d51-8636-d556a4002de7', N'1189', N'线切割', N'DK7745', N'江苏方正数控', N'2107463', N'2022.5', 0, 0, N'B类', 3.4200, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'工作台尺寸:550*450 最大切割厚度550', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (350, N'555aaab0-de3e-4360-a250-7d738cce7ef1', N'1190', N'线切割', N'DK7745', N'江苏方正数控', N'2106447', N'2022.5', 0, 0, N'B类', 3.4200, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'工作台尺寸:550*450 最大切割厚度550', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (351, N'34384a11-4f43-48a0-98e3-0933cd8aba82', N'1191', N'线切割', N'DK7745', N'江苏方正数控', N'2106450', N'2022.5', 0, 0, N'B类', 3.4200, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'工作台尺寸:550*450 最大切割厚度550', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (352, N'3ae72e24-6bb9-4ae7-b696-7c384d8be1bf', N'1192', N'线切割', N'DK7745', N'江苏方正数控', N'2107459', N'2022.5', 0, 0, N'B类', 3.4200, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'工作台尺寸:550*450 最大切割厚度550', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (353, N'0bb61b8b-7c93-4372-86be-2f57a42f2d3b', N'1193', N'线切割', N'DK7745', N'江苏方正数控', N'2107233', N'2022.5', 0, 0, N'B类', 3.4200, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'工作台尺寸:550*450 最大切割厚度550', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (354, N'fd8043fa-2594-4440-b001-9fba84fb2df1', N'1194', N'线切割', N'DK7745', N'江苏方正数控', N'2107458', N'2022.5', 0, 0, N'B类', 3.4200, 1, N'N/A', N'KH一楼东南', N'KH器械单元', N'工作台尺寸:550*450 最大切割厚度550', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (355, N'27029e70-5311-4fcc-900e-8e07ad5e6d10', N'1196', N'封口机', N'HM 850 DC-V', N'德国合福hawo', N'536404', N'2023.1', 0, 0, N'B类', 3.5000, 1, N'N/A', N'KH二楼净化车间', N'KH净化车间', N'封口速度:10米/分钟 封口边距5-30mm 封口温度:80-220度 封纹宽度:12mm', 0, 0, 40, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (356, N'da76cce4-1569-4746-a52f-daaf2466ea3a', N'1197', N'加工中心', N'DMU50', N'DMG MORI', N'14505790844', N'2022.5', 29, 7.73, N'A类', 175.4000, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (357, N'34f26345-ceb5-4c87-bb1d-a0f3d6cda8c4', N'1198', N'加工中心', N'DMU50', N'DMG MORI', N'14505790604', N'2022.5', 29, 7.73, N'A类', 175.4000, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (358, N'e0ef2e59-84c5-471d-b4d0-f2c35a19003e', N'1199', N'加工中心', N'DMU50', N'DMG MORI', N'14505790904', N'2022.5', 29, 7.73, N'A类', 175.4000, 1, N'N/A', N'KH一楼东北', N'KH创伤单元', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (359, N'155b8593-b7c5-4d4c-ab1d-d58464ebec4e', N'1200', N'加工中心', N'DMU50', N'DMG MORI', N'14505790824', N'2022.4', 29, 7.73, N'A类', 161.6000, 1, N'2022/4/11-2024/1/11', N'KH一楼西', N'KH NPI单元', N'主轴18000r,刀位30, 最快进给24m B轴-5至110,3DquickSET 定位精度8u,重复定位5u', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (360, N'd03a0f8e-ad34-42e2-9869-22509d128230', N'1201', N'包装封口机', N'FRB-770', N'祺鼎', N'020997', N'2022.8', 0.65, 0.1, N'B类', 0.1700, 1, N'N/A', N'KH一楼打标间', N'KH创伤单元', N'封口宽度12mm,温度范围0-300℃', 0, 0, 16, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (361, N'c44251a6-f07e-4d19-84f7-cec4a2223d2d', N'1202', N'车削中心', N'NLX1500/500', N'DMG森精机', N'NL154210802', N'2022.7', 36, 5, N'A类', 118.0000, 1, N'N/A', N'KH一楼中南', N'KH创伤单元', N'主轴6000r/m,动力刀10000, 最大车削386,移动260*590*100主轴通孔61,12把刀', 0, 0, 23, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-07-12T09:58:40.753' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (362, N'27fd480d-702e-4384-9476-320c6150b16f', N'1203', N'包装封口机', N'FRB-770', N'祺鼎', N'040770', N'2022.8', 0.65, 0.1, N'B类', 0.1700, 1, N'N/A', N'KH一楼包装间', N'KH脊柱单元', N'封口宽度12mm,温度范围0-300℃', 0, 0, 16, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-08-05T11:25:00.210' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (363, N'cc54a677-dd15-4553-9984-252fd1b2b03b', N'1209', N'包装封口机', N'FRB-770', N'祺鼎', N'042802', N'2022.8', 0.65, 0.1, N'B类', 0.1700, 1, N'N/A', N'KH一楼包装间', N'KH脊柱单元', N'封口宽度12mm,温度范围0-300℃', 0, 0, 16, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (364, N'10b0172a-00c3-437b-bb09-9fa872cc0241', N'1210', N'包装封口机', N'FRB-770', N'祺鼎', N'040901', N'2022.8', 0.65, 0.1, N'B类', 0.1700, 1, N'N/A', N'KH一楼包装间', N'KH脊柱单元', N'封口宽度12mm,温度范围0-300℃', 0, 0, 16, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (365, N'a6e60458-5328-46c4-83d8-083eecc44f51', N'1214', N'热合封装机', N'JL-600MC', N'上海久罗机电设备有限公司', N'2K220316009', N'2022.8', 2, 0.05, N'B类', 1.3000, 1, N'2022/6/14-2023/6/14', N'KH二楼包装间', N'KH器械单元', N'220V', 0, 0, 91, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (366, N'55b08b56-376d-411b-be65-19bf5e879bd0', N'1215', N'线切割', N'DK7745', N'江苏方正数控', N'2204236', N'2022.7', 0, 0, N'B类', 3.4200, 1, N'2022/6/13-2023/6/12', N'KH一楼器械单元东', N'KH器械单元', N'工作台尺寸:550*450 最大切割厚度550', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (367, N'cc27fe67-ca62-454d-86b6-09a9ddaa6f18', N'1216', N'线切割', N'DK7745', N'江苏方正数控', N'2204237', N'2022.7', 0, 0, N'B类', 3.4200, 1, N'2022/6/13-2023/6/12', N'KH一楼器械单元东', N'KH器械单元', N'工作台尺寸:550*450 最大切割厚度551', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (368, N'd955f79f-bbde-4d1e-8fd0-50abf33199a0', N'1217', N'线切割', N'DK7745', N'江苏方正数控', N'2204238', N'2022.7', 0, 0, N'B类', 3.4200, 1, N'2022/6/13-2023/6/12', N'KH一楼器械单元东', N'KH器械单元', N'工作台尺寸:550*450 最大切割厚度552', 0, 0, 119, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (369, N'024559dd-c19d-48a0-94ff-fea1f62fb3d6', N'1221', N'台式电动封口机 ', N'OPL-350-MD- NP', N'青岛富士音派封口机有限公司', N'P5220008/049705H', N'2022.7', 1.45, 0.023, N'B类', 5.1100, 1, N'2022/7/22-2023/7/23', N'无菌车间', N'无菌车间', N'设备本身 温度:90~200℃ 时间:0~5s Falcon温度 :低参 120 中参130 高参 140 Falcon时间 :低参 0.4 中参1.2 高参 2', 0, 0, 106, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (370, N'0712e128-ef9e-4474-8486-bc9582d0f331', N'1222', N'包装封口机', N'FRB-770', N'祺鼎', N'052596', N'2022.8', 0.65, 0.1, N'B类', 0.1700, 1, N'N/A', N'KH一楼打标间', N'KH创伤单元', N'封口宽度12mm,温度范围0-300℃', 0, 0, 16, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (371, N'54e7671b-8e0c-47e1-93ab-3cc1e066f5ab', N'1230', N'标签打印机', N'SATO CL4NX PLUS 305dpi USB 接口+网口+切刀', N'SATO', N'GE300083', N'2022.10', 0, 0.0151, N'B类', 0.9500, 1, N'2022/5/22-2023/5/21', N'KH螺钉单元包装间', N'KH脊柱单元', N'100-240V 3.0A 50-60Hz', 0, 0, 18, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (372, N'fd59ec7c-b207-409b-9fb1-43d6bb64b90a', N'1231', N'标签打印机', N'SATO CL4NX PLUS 305dpi USB 接口+网口+切刀', N'SATO', N'GE300284', N'2022.10', 0, 0.0151, N'B类', 0.9500, 1, N'2022/6/20-2023/6/19', N'KH螺钉单元包装间', N'KH脊柱单元', N'100-240V 3.0A 50-60Hz', 0, 0, 18, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (373, N'ef3c55d5-d9a1-46f2-8427-69bfa1dd3159', N'1236', N'超声波清洗机', N'RM120-4S-40/802', N'玉环震浪超声股份有限公司', N'RM120/0928 36151 2208', N'2023.1', 7.8, 0.1, N'B类', 2.5700, 1, N' 2022/9/6-2023 /9/6', N'钢板单元 着色区域', N'钢板单元', N'超声功率: 40KHZ 750 W ????????80KHZ 750W ????超声时间 :600秒', 0, 0, 19, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (374, N'57b4b3fb-cd63-4574-bf0e-0d9039051595', N'1243', N'喷砂机', N'9060E', N'苏州百通', N'2208220101', N'2022.11', 0.43, 0.2, N'B类', 1.3500, 1, N' 2022/9/21-2023 /9/21', N'KH一楼北', N'KH创伤单元', N'0.9*0.7*0.58,流量0.8-1.2m3/m', 0, 0, 69, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (375, N'72afa801-7aa8-4037-865d-00c66ce633c9', N'1244', N'标签打印机', N'220xi4', N'斑马', N'17J213800087', N'2022.10', 0, 0, N'B类', 0.0000, 1, N'N/A', N'有源项目车间', N'有源项目车间', N'100-240VAC?????', 0, 0, 18, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'SMF转移') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (376, N'e96c2612-99c8-40d8-a1c4-a475d4e73585', N'1245', N'标签打印机', N'ZT620', N'斑马', N'76J215200424', N'2022.10', 0, 0, N'B类', 0.0000, 1, N'N/A', N'有源项目车间', N'有源项目车间', N'100-240VAC?????', 0, 0, 18, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'SMF转移') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (377, N'8e079f23-eb68-45ec-b598-213e07415f83', N'1248', N'热风循环电阻炉', N'CX1000-50', N'吴江创新烘箱', N'CX1000-50', N'N/A', 12, 0.2, N'B类', 7.2000, 1, N'2022/10-2023/10', N'KH一楼中北', N'KH创伤单元', N'1000° 220V 3P 50HZ ', 0, 0, 90, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'号牌已贴') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (378, N'2b129e9f-8999-4d23-a542-b3eb80198952', N'1249', N'加工中心', N'GENOS M560V', N'大隈日本', N'247188', N'2022.11', 37, 7.7, N'A类', 0.0000, 1, N'2022/11-2023/11', N'KH一楼东南', N'KH NPI单元', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 61, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (379, N'a3c47291-7bca-415a-bf73-a9149bbf6c6e', N'1250', N'车削中心自动上下料系统', N'KR 20 R1810-2/SEL', N'KUKA', N'8119440', N'2023.9', 0, 0.227, N'B类', 124.0000, 1, N'2022/6/14-2023/6/14', N'KH一楼中北', N'KH创伤单元', N'1813 MM', 0, 0, 24, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'号牌已贴') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (380, N'300f4d2c-f74e-47bf-a5da-92d52ebf1596', N'1252', N'研磨机', N'LX-120B', N'厦门欣优亮', N'2022112501', N'2022.12', 5.5, 0.9, N'B类', 0.0000, 1, N'2022/11-2023/11', N'KH一楼中北', N'KH创伤单元', N'380V', 0, 0, 126, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (381, N'fd70aa98-99ba-4228-988a-408a2178786e', N'1253', N'研磨机', N'LX-120B', N'厦门欣优亮', N'2022112502', N'2022.12', 5.5, 0.9, N'B类', 0.0000, 1, N'2022/11-2023/11', N'KH一楼中北', N'KH创伤单元', N'381V', 0, 0, 126, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (382, N'd34a7923-ed55-4c1b-9d4a-dc9ff2816fb4', N'1254', N'抛光机', N'GTSP-II', N'工统环保', N'GTV1002223', N'2023.1', 7, 1, N'B类', 5.2000, 1, N'2023/1-2024/1', N'KH一楼中北', N'KH创伤单元', N'3500m3/h', 0, 0, 67, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (383, N'c17209bd-5909-40ef-b217-8c069b7895a2', N'1255', N'抛光机', N'GTSP-II', N'工统环保', N'GTV1002224', N'2023.1', 7, 1, N'B类', 5.2000, 1, N'2023/1-2024/1', N'KH一楼中北', N'KH创伤单元', N'3500m3/h', 0, 0, 67, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (384, N'be55dc4d-77f0-4877-9058-b766c6515aa0', N'1257', N'超声波清洗机', N'XR-3024', N'常州鑫仁超声', N'22102101', N'N/A', 14, 1, N'B类', 4.5000, 1, N' 2022/12-2023 /12', N'NPI', N'NPI', N'加热 12KW', 0, 0, 19, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (385, N'c67338d9-65a0-4304-8e94-f36908f01533', N'1263', N'医用冷藏箱', N'HCY-198S', N'青岛Haier医疗生物', N'BE0FZ30AQ00QENAHCBQ6', N'2023.1', 0.195, 0.054, N'B类', 0.0000, 1, N'2023/1-2024/1', N'KH二楼辅料库', N'KH二楼辅料库', N'2°C-8°C 198L', 0, 0, 130, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (386, N'f44fbcd6-bbfb-401a-b90c-0754c367c20c', N'1264', N'线切割机床(慢丝)', N'cut C 600 ', N'阿奇夏米尔', N'396.900.221.0156', N'2023.4', 0, 4.05, N'B类', 0.0000, 1, N'2023/4-2024/4', N'KH一楼', N'NPI', N'13A 400V 9KVA', 0, 0, 122, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (387, N'865a8baf-12e0-4f28-b491-0c97f101333d', N'1283', N'数控车床', N'CAK3665', N'沈阳机床', N'A32200221GQD', N'2023.3', 0, 1.86, N'B类', 0.0000, 1, N'2023/3-2024/3', N'KH一楼', N'KH器械单元', N'380V 50HZ 35A ?360', 0, 0, 103, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (388, N'd1110851-54ea-4852-8138-e76524a8a71b', N'1284', N'数控车床', N'CAK3665', N'沈阳机床', N'A32200218GQD', N'2023.3', 0, 1.86, N'B类', 0.0000, 1, N'2023/3-2024/3', N'KH一楼', N'KH器械单元', N'380V 50HZ 35A ?360', 0, 0, 103, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (389, N'b11062a0-97a9-46b5-becb-e69e8a6d9b6f', N'1285', N'封口机', N'FRBM-810', N'祺鼎', N'023106', N'2023.3', 0.76, 0.1, N'B类', 0.0000, 1, N'2023/3-2024/3', N'KH一楼包装间', N'KH脊柱单元', N'220V 50 HZ ', 0, 0, 40, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (390, N'c0ce9f20-c4ab-4344-9367-f790c211e9f2', N'1286', N'封口机', N'FRBM-810', N'祺鼎', N'021334', N'2023.3', 0.76, 0.1, N'B类', 0.0000, 1, N'2023/3-2024/3', N'KH一楼包装间', N'KH脊柱单元', N'220V 50 HZ ', 0, 0, 40, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (391, N'24d29883-aaf9-4e9a-adea-0ab1af5d917c', N'1287', N'深孔钻', N'K12-2-500', N'上海宁远精密机械', N'SH2302991', N'2023.3', 30, 3, N'A类', 0.0000, 1, N'2023/3-2024/3', N'KH一楼', N'KH NPI单元', N'钻孔∮2-12', 0, 0, 99, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (392, N'44a3a4a2-b84a-4b6b-8f5f-16c2caaa913e', N'1307', N'封口机', N'FRBM-810', N'祺鼎', N'051906', N'2023.5', 0.76, 0.1, N'B类', 0.0000, 1, N'2023/5-2024/5', N'KH一楼包装间', N'KH SUP单元', N'220V 50 HZ ', 0, 0, 40, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (393, N'09b859c2-78ff-48f5-827a-451c5906d918', N'1308', N'热合封装机', N'WP-360', N'伟普', N'WP2023042501', NULL, 2.5, 0.05, N'B类', 0.0000, 1, NULL, N'KH二楼净化车间', N'KH净化车间', N'220V 2.5KW', 0, 0, 91, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'号牌已贴') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (394, N'b96a57b3-73b0-4538-ae76-f64fcf3fbcf6', N'1309', N'热合封装机', N'WP-360', N'伟普', N'WP2023042502', NULL, 2.5, 0.05, N'B类', 0.0000, 1, NULL, N'KH二楼净化车间', N'KH净化车间', N'220V 2.5KW', 0, 0, 91, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'号牌已贴') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (395, N'cf2b00c2-d5c1-432b-b984-42188990dea0', N'1311', N'激光切割机', N'MPS-3015C', N'大族超能激光科技有限公司', N'MPS3015CA2303003', N'2023.9', 25, 0, N'B类', 0.0000, 1, NULL, N'KH一楼', N'NPI', N'AC 3P 380V N PE 50 HZ', 0, 0, 59, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (396, N'e9f4e1f5-09fd-4e94-8d6b-54170fbbec93', N'1322', N'标签打印机', N'ZT620', N'斑马', N'76J215200426', NULL, 1.2, 0.026, N'B类', 2.9663, 1, N'2023/7-2024/7', N'有源项目车间', N'有源项目车间', N'100-240VAC?????', 0, 0, 18, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (397, N'3ffe6e7d-17ee-45f4-b68d-23320e7b6fbe', N'1323', N'洗衣机', N'XQG60-QHZB1281', N'HAIER', N'CEOHF300D00CQC5A0207', NULL, 1.83, 0.01, N'B类', 0.0000, 1, NULL, N'KH二楼净化车间', NULL, N'220V 6.0KG', 0, 0, 118, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'旧设备新增编号') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (398, N'990cabd2-37b6-498f-a72d-b35c7fa6fee5', N'1324', N'洗衣机', N'XQG60-QHZB1281', N'HAIER', N'CEOHF300D00CQC5A0307', NULL, 1.83, 0.01, N'B类', 0.0000, 1, NULL, N'KH二楼净化车间', NULL, N'220V 6.0KG', 0, 0, 118, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'旧设备新增编号') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (399, N'5129b53b-808d-46d3-b61a-78f3a6bb46b8', N'1325', N'干洗机', N'EDV600', N'伊莱克斯', N'916002025', NULL, 1.95, 0.01, N'B类', 0.0000, 1, NULL, N'KH二楼净化车间', NULL, N'IPX4', 0, 0, 42, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'旧设备新增编号') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (400, N'8a82b72d-32a7-442c-9ffc-9fa34957ba98', N'1326', N'保洁柜', N'ZTP350Y', N'康宝', N'1.30181E+11', NULL, 0.3, 0.02, N'B类', 0.0000, 1, NULL, N'KH二楼净化车间', NULL, N'220V', 0, 0, 17, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'旧设备新增编号') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (401, N'857edfda-d542-4d96-a2bb-567fa5084172', N'1328', N'抛光机', N'GTSP-I ', N'工统环保', N'GTV1002309', N'2023.11', 7, 1, N'B类', 0.0000, 1, N'2023.11-2024.11', N'KH一楼', N'KH创伤单元', N'3500m3/h', 0, 0, 67, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (402, N'ee790f10-d898-45e3-821d-74a037ea4aa0', N'1329', N'抛光机', N'GTSP-II ', N'工统环保', N'GTV1002310', N'2023.11', 7, 1, N'B类', 0.0000, 1, N'2023.11-2024.11', N'KH一楼', N'KH脊柱单元', NULL, 0, 0, 67, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (403, N'aa51d2b8-fcab-4d86-8380-d1a107a58e8d', N'1333', N'点胶机', N'X-100', N'诺信', N'A16360', N'2023.11', 0.015, 0.002, N'点胶机', 0.5000, 1, N'1年', N'有源车间', NULL, N'24V 0.75A', 0, 0, 31, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'N/A') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (404, N'9a0fcdbd-2455-41b4-8867-dfbbb3d546ce', N'1334', N'标签打印机', N'ZT421CN', N'ZEBRA', N'99J231704031', NULL, 0, 0.05, N'B类', 0.0000, 1, N' ', N'无菌车间', NULL, N'100-240VAC?????', 0, 0, 18, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N' ') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (405, N'7e826f5d-5197-42bd-a926-d236d23bb443', N'1335', N'LED UV固化箱', N'LDEL-D01', N'汉能达', N'PG23112302', NULL, 1, 0.2, N'B类', 1.6000, 1, N' ', N'有源车间', NULL, N'待定', 0, 0, 12, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'N/A') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (406, N'3b98f2e2-1653-448c-b819-45df1b5bc03d', N'1337', N'台式电动封口机', N'OPL-350-MD NP', N'青岛富士音派封口机有限公司', N'P7230006/04970H', NULL, 1.45, 0.2, N'B类', 0.0000, 1, NULL, N'无菌车间', NULL, NULL, 0, 0, 106, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (407, N'a55c7fca-d177-4160-9166-121be5dc9378', N'1341', N'诺信手动点胶机', N'X-100', N'诺信', N'A16358', NULL, 0.015, 0.002, N'点胶机', 0.5000, 1, N'1年', N'有源车间', NULL, N'待定', 0, 0, 65, CAST(N'2024-04-24T10:51:45.920' AS DateTime), 1, CAST(N'2024-06-11T16:57:45.407' AS DateTime), 1, N'N/A') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (408, N'6818e1c8-045a-4d97-a165-56d38bba5709', N'231', N'加工中心', N'MXR-460V', N'北京大隈机床有限公司', N'1725050708', N'2005.11', 22, 5.5, N'A类', 82.3800, 1, N'N/A', N'OEM一楼东北', N'OEM器械 ', N'工作台尺寸460x1000 行程762x460x450 主轴最高转速7000 刀库数量20把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (409, N'cad0ad22-4eff-470d-bcd7-e23c23cd59a6', N'253', N'加工中心', N'MXR-460V', N'北京大隈机床有限公司', N'1725050802', N'2005.12', 22, 5.5, N'A类', 84.5800, 1, N'N/A', N'OEM一楼东北', N'OEM器械 ', N'工作台尺寸460x1000行程762x460x450 主轴最高转速7000刀库数量20把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (410, N'418d7a4e-f896-4260-8c24-44e3f0e0f6f6', N'279', N'纵切机床', N'SR-20RII', N'STAR精密株式会社', N'1277', N'2006.03', 7, 2.2, N'A类', 87.4599, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (411, N'201bdbaa-f4dc-43c0-8486-9e65a1b654ed', N'319', N'车削中心', N'SL-20', N'美国哈斯自动化', N'3076937', N'2007.9', 15, 4, N'A类', 56.2100, 1, N'N/A', N'OEM一楼西南', N'OEM器械 ', N'主轴转速4000,快移速度30.5,定位精度0.01,刀库12把行程215*508 ', 0, 0, 22, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (412, N'1f714ce6-373d-4afd-815b-43fbfa6aa56e', N'332', N'数控车床', N'CAK3665nj', N'沈阳第一机床厂', N'A30801279', N'2008.4', 6, 1.8, N'B类', 7.4500, 1, N'N/A', N'OEM一楼西南', N'OEM器械 ', N'最大工件回转直径¢360mm 最大工件长度650mm', 0, 0, 102, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (413, N'6d8a0e5d-9d45-4062-a04d-f530c221b3ca', N'336', N'普通车床', N'CA6136/750', N'沈阳第一机床厂', N'A40801408', N'2008.4', 4, 1.4, N'B类', 2.6500, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'最大工件回转直径¢360mm 最大工件长度750mm', 0, 0, 73, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (414, N'92307159-6661-4391-a59c-b8ac1d80e4e3', N'341', N'加工中心', N'α-T14iFe', N'日本发那克', N'P07XWD205', N'2008.4.28', 10, 2, N'A类', 40.0000, 1, N'N/A', N'OEM一楼东北', N'OEM器械 ', N'工作台尺寸650*400 行程500x400x330 主轴最高转速7000 刀库数量14把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (415, N'2951fde8-6f93-486e-96f4-256f08521d91', N'342', N'加工中心', N'α-T14iFe', N'日本发那克', N'P07XWD206', N'2008.4.28', 10, 2, N'A类', 40.0000, 1, N'N/A', N'OEM一楼东北', N'OEM器械 ', N'工作台尺寸650*400 行程500x400x330 主轴最高转速7000 刀库数量14把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-14T03:03:08.083' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (416, N'4bdd8fb0-541a-49b2-9366-8f8d493da491', N'348', N'加工中心', N'α-T14iFe', N'日本发那克', N'P07XWD193', N'2008.5.25', 10, 2, N'A类', 40.0000, 1, N'N/A', N'OEM一楼东北', N'OEM器械 ', N'工作台尺寸650*400 行程500x400x330 主轴最高转速7000 刀库数量14把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (417, N'88503ca4-310a-49d4-9038-5081b1c749a6', N'350', N'加工中心', N'α-T14iFe', N'日本发那克', N'P07XWD195', N'2008.5.25', 10, 2, N'A类', 40.0000, 1, N'N/A', N'OEM一楼东北', N'OEM器械 ', N'工作台尺寸650*400 行程500x400x330 主轴最高转速7000 刀库数量14把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (418, N'd279a2a0-805c-4543-8eda-40155e8bf1bb', N'351', N'加工中心', N'α-T14iFe', N'日本发那克', N'P07XWD642', N'2008.6.3', 10, 2, N'A类', 35.4000, 1, N'N/A', N'OEM一楼东北', N'OEM器械 ', N'工作台尺寸650*400 行程500x400x330 主轴最高转速7000 刀库数量14把4轴', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (419, N'ee265352-13b3-470c-9814-0ebe69aa9dab', N'361', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'70', N'2008.9', 8.75, 2.2, N'A类', 73.1250, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (420, N'3720b92c-fadf-4e73-9305-ea066b29226f', N'362', N'纵切机床', N'SR-20RII', N'STAR精密株式会社', N'2381', N'2008.9', 7, 2.2, N'A类', 73.1250, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (421, N'5ff17cb9-d6e4-41d1-9b5d-c25eee628b31', N'368', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'154', N'2008.11', 6.05, 2.2, N'A类', 73.5000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (422, N'a477bb6c-d973-48c1-9d1e-d4b001eacaef', N'370', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'155', N'2008.11', 6.05, 2.2, N'A类', 73.5000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (423, N'8c07a392-097f-4ca5-b84e-58fe1889239a', N'371', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'181', N'2008.11', 6.05, 2.2, N'A类', 73.5000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (424, N'bb347dd5-17ab-4fb8-9eba-e81a3f440d5f', N'372', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'182', N'2008.11', 6.05, 2.2, N'A类', 73.5000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (425, N'95606e19-cf6a-4d10-8b12-1addaf40f98f', N'393', N'喷砂机', N'9070D', N'无锡富岛精工有限公司', N'231', N'2009.08', 1.6, 0.3, N'B类', 1.4500, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'工作仓尺寸900x700x580,空气压力5-7', 0, 0, 68, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (426, N'4db4b0a1-6cc8-4985-a3fe-91399c7ec869', N'412', N'数控车床', N'CAK3665ni', N'沈阳第一机床厂', N'A31001563', N'2010.5.11', 6, 1.8, N'B类', 7.3500, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'最大工件回转直径¢360mm 最大工件长度650mm', 0, 0, 102, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (427, N'2f06b48e-eaae-4027-9459-230dbf0edbf8', N'413', N'数控车床', N'CAK3665ni', N'沈阳第一机床厂', N'A31001564', N'2010.5.11', 6, 1.8, N'B类', 7.3500, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'最大工件回转直径¢360mm 最大工件长度650mm', 0, 0, 102, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (428, N'308851be-1767-4d02-94ba-97ca79d6603c', N'416', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB0DC310', N'2010.5', 20, 5.5, N'A类', 57.0000, 1, N'N/A', N'OEM一楼东北', N'OEM器械 ', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (429, N'015908ea-bdea-48f1-baf8-a211bbd9726c', N'423', N'清洗线', N'定制', N'苏州奥兰迪尔自动化', NULL, N'2010.7', 30, 1, N'B类', 9.0000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'三槽', 0, 0, 84, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (430, N'd89aa210-4c11-43b6-9195-19cd5187b2f6', N'426', N'喷砂机', N'9070D', N'无锡富岛精工有限公司', N'243', N'2010.8', 1.6, 0.3, N'B类', 1.4500, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'工作仓尺寸900x700x580,空气压力5-7', 0, 0, 68, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (431, N'5396d394-6721-4881-b0c1-552d3f547d9d', N'438', N'数控车床', N'CAK3665nj', N'沈阳第一机床厂', N'A31005045', N'2010.11', 6, 1.8, N'B类', 7.1000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'最大工件回转直径¢360mm 最大工件长度650mm', 0, 0, 102, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (432, N'2e3375ec-6253-4e58-bf7b-a2cfd426d983', N'448', N'喷砂机', N'9070', N'无锡富岛精工有限公司', N'244', N'2010.12', 1.6, 0.3, N'B类', 1.4500, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'工作仓尺寸900x700x580,空气压力5-7', 0, 0, 68, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (433, N'bd6ab6d0-bf2a-4339-9081-afba2199927b', N'490', N'激光焊机', N'PB50ACE', N'大族激光有限公司', N'HYF241104086', N'2011.6', 3.5, 0.25, N'B类 ', 29.0000, 1, N'N/A', N'OEM三楼', N'OEM后处理', N'激光功率30W,波长1064nm, 光纤芯径200um', 0, 0, 56, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (434, N'5da8c473-7f91-4bcc-9a7a-a85c908ac3c2', N'503', N'车削中心', N'ELiTE51M', N'哈挺上海', N'EUMBB1G013', N'2011.8', 11, 4, N'A类', 88.0000, 1, N'N/A', N'OEM一楼正西', N'OEM器械 ', N'主轴最大棒料直径51mm, 最大加工直径284mm,218*465mm行程,5000r/m', 0, 0, 22, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (435, N'c0a43cb7-a917-42d1-9626-faff63727c5c', N'514', N'抛光机', N'2M4140', N'无锡富岛精工有限公司', N'590', N'2011.8', 4, 0.62, N'B类', 1.2000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'2200r/m,主轴长1200', 0, 0, 66, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (436, N'8560eee9-598d-476b-8180-3f1dc99bd1e6', N'518', N'除尘设备', N'LC3566-12-B', N'无锡富岛精工有限公司', N'LC20110705', N'2012.2', 15, 2, N'B类', 7.9333, 1, N'N/A', N'OEM一楼中北', N'OEM后处理', N'15500m3/h,全压≥2000Pa 吸尘风速7-13.5ms 过滤面积180m2', 0, 0, 25, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (437, N'eedc3701-c9f9-45c0-9134-d11d23aac88e', N'521', N'砂带机', N'BPYZS3200', N'无锡富岛精工有限公司', N'599', N'2011.9', 3, 0.5, N'B类', 1.7500, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'砂带宽50-60, 砂带周长3200,', 0, 0, 95, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (438, N'31db4493-8fe1-489c-9fd9-3d7d8468f033', N'522', N'砂带机', N'BPYZS3200', N'无锡富岛精工有限公司', N'600', N'2011.9', 3, 0.5, N'B类', 1.7500, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'砂带宽50-60, 砂带周长3200,', 0, 0, 95, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (439, N'9b5bcbc1-a495-4418-9e03-b88ff592bec9', N'528', N'车削中心', N'EU 51M', N'哈挺上海', NULL, NULL, 20, NULL, N'A类', NULL, 1, N'N/A', N'OEM一楼西南', N'OEM器械 ', N'主轴最大棒料直径51mm, 最大加工直径284mm,218*465mm行程,5000r/m', 0, 0, 22, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (440, N'5693978e-24e1-4cea-bfcf-1e03276c8175', N'530', N'震动研磨机', N'LMP80(PU)-VF', N'无锡富岛精工有限公司', N'65', N'2011.11', 0.8, 0.2, N'B类', 1.0800, 1, N'N/A', N'OEM一楼', N'OEM后处理', N'容积80L,变频', 0, 0, 140, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (441, N'9aebf7db-3150-450a-9793-9890886f694f', N'535', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'2108', N'2011.12', 5.2, 2.2, N'A类', 81.0000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (442, N'e432e791-d42e-4fb7-b25e-4129772c11dc', N'537', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'2118', N'2011.12', 5.2, 2.2, N'A类', 81.0000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (443, N'd945316c-77cc-4a3d-978d-f4f2787a68ad', N'538', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'2119', N'2011.12', 5.2, 2.2, N'A类', 81.0000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (444, N'fa1d3d38-2863-4e59-864c-b76e0d014a04', N'539', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'2122', N'2011.12', 5.2, 2.2, N'A类', 81.0000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (445, N'7b6968fc-bc61-4336-b954-550a982d7845', N'541', N'砂带机', N'YZS3200', N'无锡富岛精工有限公司', N'598', N'2011.12', 3, 0.5, N'B类', 1.5000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'砂带宽50-60, 砂带周长3200,', 0, 0, 95, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (446, N'f78ee609-feb0-4433-be40-b6b01e405be7', N'543', N'穿孔机', N'ZGD703A', N'苏州中谷机电科技', N'111007', NULL, NULL, NULL, N'B类', NULL, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', NULL, 0, 0, 26, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 0, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (447, N'953b0177-a2c6-4b7a-aafb-6ff5b25337d3', N'544', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'2161', N'2012.2', 5.2, 2.2, N'A类', 81.0000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (448, N'49bfd7c4-1bcb-482c-a5ed-ff8c50118179', N'545', N'纵切机床', N'SR-20JC', N'STAR精密株式会社', N'2162', N'2012.2', 5.2, 2.2, N'A类', 81.0000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速500-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (449, N'af688587-cd3d-413e-8877-fd48f0fc27d7', N'551', N'车削中心', N'ELiTE51M', N'哈挺上海', N'EMBB2CJ014', N'2012.4', 11, 4, N'A类', 88.0000, 1, N'N/A', N'OEM一楼西南', N'OEM器械 ', N'主轴最大棒料直径51mm, 最大加工直径284mm,218*465mm行程,5000r/m', 0, 0, 22, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (450, N'78d0055e-05ce-4300-97fa-2933bae56623', N'555', N'油压机', N'YM-6(C)', N'常州联通液压', N'120305', N'2012.3', 3, 0.8, N'B类', 1.8500, 1, N'N/A', N'OEM二楼', N'OEM后处理', N'最大开启间距500, 最大滑块行程200,工作台尺寸460*300', 0, 0, 132, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (451, N'72c08c62-614b-46f5-86fd-5a11ab8e28c4', N'562', N'五轴磨床', N'MULTGRING CA', N'德国哈斯马格', N'3183', N'2013.8', 25, 8.5, N'A类', 490.0000, 1, N'N/A', N'OEM一楼正西', N'OEM器械 ', N'630*345*430,砂轮250, 主轴10000r', 0, 0, 116, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (452, N'c0b5c620-a891-4b9e-a4b7-e82e597660be', N'622', N'钝化线', N'Xin-WJ02S', N'常州市新鑫环保', N'Xin-12-017', N'2012.1', 12, 1, N'B类', 4.0000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'外形1.5*1.4*2.3, 槽体0.6*0.4*0.5,温度±2°', 0, 0, 37, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (453, N'ea518a7e-6f32-4f10-8535-3bf4c67db76e', N'623', N'钝化线', N'Xin-WJ02S', N'常州市新鑫环保', N'Xin-12-018', N'2012.1', 12, 1, N'B类', 4.0000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'外形1.5*1.4*2.3, 槽体0.6*0.4*0.5,温度±2°', 0, 0, 37, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (454, N'fc4a9ffb-3576-41eb-a397-49decead6d0c', N'625', N'清洗线', N'Xin-WJ05S', N'常州市新鑫环保', N'Xin-12-013', N'2012.1', 15, 0.7, N'B类', 7.2000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'外形4*0.66*1.07, 槽体0.6*0.4*0.45,温度±2°', 0, 0, 84, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (455, N'6f0addb7-b2d4-4c8d-8c86-f321fae3aff5', N'639', N'研磨机', N'FAW60-12', N'无锡富岛精工有限公司', N'116', N'2013.4', 3.2, 0.85, N'B类', 3.8000, 1, N'N/A', N'OEM一楼', N'OEM后处理', N'滚筒容积5L*3槽*4只,速度 30-185r', 0, 0, 125, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (456, N'1508f64a-c7d6-451b-aa20-6e8f3c1c9626', N'648', N'平面磨床', N'M7140H', N'杭州机床厂', N'3497', N'2013.6', 9, 3.5, N'B类', 11.2000, 1, N'N/A', N'OEM一楼', N'OEM器械 ', N'工作台400*1000,砂轮转速1440 磨头最大行程400', 0, 0, 70, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (457, N'234b8791-044c-4e99-9e7c-0b4e9574d3d5', N'651', N'干燥箱', N'CX881-3', N'吴江创新烘箱', N'130512A', N'2013.6', 9.37, 1, N'B类', 0.7000, 1, N'N/A', N'OEM一楼东北', N'OEM后处理', N'0-300°工作室500*600*750, 均匀性±2°,控温精度±1°', 0, 0, 43, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (458, N'9bf83d7d-8a6e-4fe5-a37d-85d06cb7e4ad', N'652', N'干燥箱', N'CX881-3', N'吴江创新烘箱', N'130513A', N'2013.6', 9.37, 0.2, N'B类', 0.7000, 1, N'N/A', N'OEM三楼', N'OEM后处理', N'0-300°工作室500*600*750, 均匀性±2°,控温精度±1°', 0, 0, 43, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (459, N'48764b94-2c68-4062-b482-04da37f9a659', N'654', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB3EJ349', N'2013.6', 25, 5.1, N'A类', 56.0000, 1, N'N/A', N'OEM一楼东南', N'OEM器械 ', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (460, N'ed6e15d1-ecd0-42c4-80a0-4147d3daf8ea', N'655', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB3EJ354', N'2013.6', 25, 5.1, N'A类', 56.0000, 1, N'N/A', N'OEM一楼东南', N'OEM器械 ', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (461, N'3cb10c6e-b6b4-4495-83c4-31b8598d603d', N'657', N'加工中心', N'GX1000plus', N'哈挺上海', N'NVCB3EJ356', N'2013.6', 25, 5.1, N'A类', 56.0000, 1, N'N/A', N'OEM一楼东南', N'OEM器械 ', N'MAX8200转,工作台1120*540,主轴移动145-685刀库24把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (462, N'e9d56d6f-6bf8-4a6c-91f8-43f76e091b8a', N'671', N'砂带机', N'BPYZS3200', N'无锡富岛精工有限公司', N'700', N'2013.6', 3, 0.5, N'B类', 1.7500, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'砂带宽50-60, 砂带周长3200,', 0, 0, 95, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (463, N'767919bb-01d5-4c71-82b3-b79709dbffc8', N'674', N'热处理炉', N'RX5-55', N'苏州工业园区热处理设备厂', N'1326', N'2013.7', 40, 3, N'B类', 18.8000, 1, N'N/A', N'OEM一楼东北', N'OEM后处理', N'0.8*0.55*0.64 ≤550°均匀度±5°', 0, 0, 88, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (464, N'1b0e67e3-b79a-4548-9ff7-fbe8ab0c2bf4', N'676', N'喷砂机', N'GP-9060', N'无锡富岛精工有限公司', N'280', N'2013.8', 0.8, 0.2, N'B类', 1.4500, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'0.9*0.6*0.58,流量0.8-1.2m3/m', 0, 0, 68, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (465, N'013d4f92-850d-4fb5-a505-db55e0448174', N'681', N'车削中心', N'ELiTE51M', N'哈挺上海', N'EMBB3FJ034', N'2013.7', 11, 4, N'A类', 88.0000, 1, N'N/A', N'OEM一楼西南', N'OEM器械 ', N'主轴最大棒料直径51mm, 最大加工直径284mm,218*465mm行程,5000r/m', 0, 0, 22, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (466, N'b9bda6cd-9889-4b27-b44a-01f0ee1e810b', N'685', N'激光打标机', N'TH-FLMS20', N'苏州天弘激光股份有限公司', N'13-0709', N'2013.7', 1, 0.1, N'A类', 21.4800, 1, N'N/A', N'OEM二楼中北', N'OEM后处理', N'打标功率20W,打标范围¢200,刻字速度7000,深度0.01-0.2,线宽≥0.05,光束3mm', 0, 0, 54, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (467, N'cf904a13-a6da-4355-9a78-bdf1a83120a5', N'689', N'线切割机床', N'DK7740B', N'苏州宝玛数控设备有限公司', N'H130826', N'2013.8', 3, 2, N'B类', 10.3000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.015', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (468, N'eef619dd-f231-4f7c-a8a6-1ea48fe121c5', N'690', N'线切割机床', N'DK7740B', N'苏州宝玛数控设备有限公司', N'H130827', N'2013.8', 3, 2, N'B类', 10.3000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.015', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (469, N'8ff7d32e-4487-435f-ae7b-6f30a74ae5df', N'691', N'线切割机床', N'DK7740B', N'苏州宝玛数控设备有限公司', N'H130828', N'2013.8', 3, 2, N'B类', 10.3000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.015', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (470, N'e6f59fdf-47eb-4dd0-a02c-f55b67e7dd6b', N'692', N'线切割机床', N'DK7740B', N'苏州宝玛数控设备有限公司', N'H130829', N'2013.8', 3, 2, N'B类', 10.3000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.015', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (471, N'd4e08684-5988-4561-b031-c128f5adf5f5', N'698', N'深孔钻', N'K6-1-500', N'上海宁远精密机械', N'1309309', N'2013.11', 23, 4, N'A类', 48.0000, 1, N'N/A', N'OEM一楼东南', N'OEM器械 ', N'钻孔∮1.2-7,最大钻孔深度50-500,最高主轴转速14000,', 0, 0, 98, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (472, N'8ce1c4d8-6b9e-49d6-9fdc-090ee902a61f', N'700', N'清洗机', N'Xin-1018T', N'常州市新鑫环保', N'2013-09119', N'2013.1', 2.9, 0.1, N'B类', 0.9000, 1, N'N/A', N'OEM一楼东北', N'OEM后处理', N'内槽500*280*300,超声0.9KW', 0, 0, 82, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (473, N'969dc299-77fa-407b-978f-807032942b5b', N'701', N'点胶机', N'PerformusⅢ', N'Nordson', N'829084', N'2013.1', 0.1, 0.01, N'B类', 0.8500, 1, N'N/A', N'OEM二楼中北', N'OEM后处理', N'100PSI,7BAR', 0, 0, 30, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, N'钳工室查看') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (474, N'1b817664-c3b7-4f31-b9db-3e8c7d620086', N'702', N'注塑机', N'TY-550.LSR', N'杭州大禹机械', N'275', N'2013.11', 7.5, 1.9, N'B类', 54.8000, 1, N'N/A', N'OEM一楼东北', N'OEM后处理', N'射出压力1661,模竹间415*250 最大开模距450顶出力1.3T顶出行程40最大液压140', 0, 0, 143, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-14T02:24:20.923' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (475, N'1705b309-ee85-4df5-b330-f74a1d0361ca', N'714', N'真空炉', N'DOQ2-446', N'北京精诚利德', N'20130801', N'2014', 150, 8, N'B类 ', 80.0000, 1, N'N/A', N'研发楼中北', N'OEM后处理', N'有效尺寸600*400*400,装载量150KG,最高温度1320, 最高工作温度1050,炉温均匀性±5,控温精度≤±1,工作真空度≤6.7*10-2Pa,', 0, 0, 137, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, N'实际安装在研发部') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (476, N'0ac5bac0-954e-44bb-9eb8-5780a6cf1f85', N'715', N'喷砂机', N'GP-9060', N'无锡富岛精工有限公司', N'288', N'2014.2', 0.8, 0.2, N'B类', 1.4500, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'0.9*0.6*0.58,流量0.8-1.2m3/m', 0, 0, 68, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (477, N'957b1204-211b-49d4-bd48-3ca17fbe769e', N'716', N'喷砂机', N'GP-9060', N'无锡富岛精工有限公司', N'289', N'2014.2', 0.8, 0.2, N'B类', 1.4500, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'0.9*0.6*0.58,流量0.8-1.2m3/m', 0, 0, 68, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (478, N'9d37ab62-a59f-40f9-8d29-be582c33be8f', N'718', N'抛光机', N'LPZT-500', N'无锡富岛精工有限公司', N'708', N'2014.2', 4, 0.62, N'B类', 1.5000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'变频0-2120r/m,抛光轮最大 直径500mm主轴长1200', 0, 0, 66, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (479, N'9ef066f2-8dfd-4ae3-9252-7ac69d33abab', N'720', N'抛光机', N'LPZT-500', N'无锡富岛精工有限公司', N'710', N'2014.2', 4, 0.62, N'B类', 1.5000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'变频0-2120r/m,抛光轮最大 直径500mm主轴长1200', 0, 0, 66, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (480, N'65d1d033-d2e1-4201-81dc-3124cfcd2f13', N'721', N'抛光机', N'LPZT-500', N'无锡富岛精工有限公司', N'732', N'2014.2', 4, 0.62, N'B类', 1.5000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'变频0-2120r/m,抛光轮最大 直径500mm主轴长1200', 0, 0, 66, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (481, N'3a516a25-2125-4a6e-89c6-a7ad1e216e15', N'724', N'激光打标机', N'TH-FLMS20', N'苏州天弘激光股份有限公司', N'14-02024', N'2014.3', 1, 0.1, N'A类', 31.5000, 1, N'N/A', N'OEM二楼东南', N'OEM后处理', N'打标功率20W,打标范围¢200,刻字速度7000,深度0.01-0.2,线宽≥0.05,光束3mm', 0, 0, 54, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (482, N'd5911509-e972-48fa-9b43-02bc6f636be6', N'726', N'加工中心', N'MXR-460V', N'北京大隈机床有限公司', N'1725130704', N'2014.3', 22, 5.5, N'A类', 69.8000, 1, N'N/A', N'OEM一楼东南', N'OEM器械 ', N'工作台尺寸460x1000行程762x460x450 主轴最高转速8000刀库数量20把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (483, N'6385c932-f9e2-4558-b617-7fe337366bdc', N'737', N'车削中心', N'ST30', N'美国哈斯自动化', N'3098349', N'2014.5', 35, 6, N'A类', 86.7500, 1, N'N/A', N'OEM一楼西南', N'OEM器械 ', N'主轴最大棒料直径30mm, 最大加工直径284mm,218*465mm行程,5000r/m', 0, 0, 22, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (484, N'1e844263-ab49-4693-8af1-ad06671bf2fa', N'741', N'线切割机床', N'FW-2UP', N'北京阿奇夏米尔', N'394-900-192-0013', N'2014.5', 3, 2.2, N'B类', 21.5000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (485, N'010f9051-7206-4152-add6-4a508a0ac62a', N'742', N'线切割机床', N'FW-2UP', N'北京阿奇夏米尔', N'394-900-192-0014', N'2014.5', 3, 2.2, N'B类', 21.5000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (486, N'50bfebfc-a1d8-4b47-9170-a406e1293030', N'743', N'线切割机床', N'DK7740B', N'苏州宝玛数控设备有限公司', N'H140426', N'2014.5', 3, 2, N'B类', 10.6000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.015', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (487, N'47abdbe8-7fed-4357-bdad-102beded29e9', N'744', N'线切割机床', N'DK7740B', N'苏州宝玛数控设备有限公司', N'H140427', N'2014.5', 3, 2, N'B类', 10.6000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.015', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (488, N'3edad9db-fec0-4f9c-b6b5-f10c644ec1a7', N'748', N'对刀仪', N'P1850-G3', N'美国帕莱克', N'P1302043-0214-01', N'2014.5', 1, 0.4, N'B类', 26.5000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'测量范围320*400,显示精度1um最大刀具150kg', 0, 0, 35, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (489, N'383ca76e-0741-4e95-96f6-295d07060aaf', N'758', N'线切割机床', N'FW2UP', N'北京阿奇夏米尔', N'394.900.192.0047', N'2014.8', 3, 2.2, N'B类', 21.5000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (490, N'52e1be6a-b11f-46b8-9d71-d2622b1b7eeb', N'762', N'移动式除尘器', N'单臂', N'宁波天秦环保科技', N'12926620', N'2014.9', 1.5, 0.1, N'B类', 1.4000, 1, N'N/A', N'OEM二楼中北', N'OEM后处理', N'1200m3/h', 0, 0, 131, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (491, N'2f0ab899-06c2-49b1-9add-ca882497a9ab', N'765', N'医用冷藏箱', N'后处理钳工', NULL, NULL, NULL, NULL, NULL, N'B类', NULL, 1, N'N/A', N'OEM二楼钳工间', N'OEM后处理', NULL, 0, 0, 129, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (492, N'a4bca34f-06ff-4a09-972e-4760ca9873cf', N'766', N'高频焊机', N'ZAG-35', N'武进振奥', N'1320100', N'2014.1', 3, 0.1, N'B类', 1.4000, 1, N'N/A', N'OEM二楼中北', N'OEM后处理', N'输出35kw,30-100khz加热 电流200-1200', 0, 0, 45, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (493, N'e255aa1c-b81a-41f8-9a78-8b6f7fc42455', N'769', N'线切割机床', N'FW2UP', N'北京阿奇夏米尔', N'394.900.192.0065', N'2014.11', 3, 2.2, N'B类', 21.5000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'工作台尺寸:800x500 坐标行程 X:500 Y:400 Z:250 最大工件尺寸800x500x300伺服控制', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (494, N'1a0203a3-7d6a-4913-a9b5-0265cb09ce7b', N'778', N'锯床', N'C-260NC', N'台湾高盛', N'26C1010193', N'2015.2', 4, 1.5, N'B类', 10.0000, 1, N'N/A', N'KH一楼东南', N'OEM器械 ', N'最大锯切圆形260方形260长方形300*260,工作台高720', 0, 0, 62, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (495, N'75120dc7-2cf2-492d-b048-490a51b91601', N'781', N'纵切机床', N'L20X-1M10', N'西铁城', N'QE1654', N'2015.3', 10, 2.45, N'A类', 135.0000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (496, N'aa11606a-68d5-48cb-ba3e-e56817a80220', N'785', N'纵切机床', N'L20X-1M10', N'西铁城', N'QE1658', N'2015.5', 10, 2.45, N'A类', 135.0000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (497, N'9943b6fd-d864-47c3-b39a-44a299be507f', N'786', N'纵切机床', N'L20X-1M10', N'西铁城', N'QE1659', N'2015.5', 10, 2.45, N'A类', 135.0000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (498, N'5b89ec51-0bc7-4daf-bc6f-6c56406ac185', N'788', N'纵切机床', N'L20X-1M10', N'西铁城', N'QE1661', N'2015.5', 10, 2.45, N'A类', 135.0000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (499, N'abffc74c-23a9-4cb4-a38b-020d84072d27', N'789', N'纵切机床', N'L20X-1M10', N'西铁城', N'QE1662', N'2015.5', 10, 2.45, N'A类', 135.0000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (500, N'3977da06-34db-40bd-982a-2493dc63acbe', N'790', N'纵切机床', N'L20X-1M10', N'西铁城', N'QE1663', N'2015.5', 10, 2.45, N'A类', 135.0000, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (501, N'103004d9-f236-4a26-9f1a-a76201678dd2', N'793', N'打标机', N'FOBA M3000', N'德国ALLTEC', N'MDY1501/002', N'2015.6', 10, 0.67, N'A类', 123.0000, 1, N'N/A', N'OEM二楼中北', N'OEM后处理', N'打标范围185*185,行程520*225*350激光20w', 0, 0, 27, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (502, N'938b2a43-7bdf-4509-837b-0edd1938af7d', N'795', N'线切割机床', N'DK7740D', N'苏州宝玛数控设备有限公司', N'H150612', N'2015.6', 3, 2, N'B类', 10.4600, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.015', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (503, N'c65b00cb-1cc3-4a3d-b270-fbd4d1ddc64b', N'796', N'线切割机床', N'DK7740D', N'苏州宝玛数控设备有限公司', N'H150613', N'2015.6', 3, 2, N'B类', 10.4600, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.015', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (504, N'a5f649e5-d62c-4c82-ac40-fb593ad4be85', N'797', N'线切割机床', N'DK7740D', N'苏州宝玛数控设备有限公司', N'H150614', N'2015.6', 3, 2, N'B类', 10.4600, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.016', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (505, N'b0202904-6ac9-4dc5-a125-aa7053a8b13c', N'798', N'线切割机床', N'DK7740D', N'苏州宝玛数控设备有限公司', N'H150615', N'2015.6', 3, 2, N'B类', 10.4600, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.017', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (506, N'6a41eae5-eb49-46d6-b8bb-06a1f9c412c0', N'799', N'线切割机床', N'DK7740D', N'苏州宝玛数控设备有限公司', N'H150616', N'2015.6', 3, 2, N'B类', 10.4600, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.018', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (507, N'30d14714-f6ee-4592-bbcc-a12168c845c8', N'800', N'线切割机床', N'DK7740D', N'苏州宝玛数控设备有限公司', N'H150617', N'2015.6', 3, 2, N'B类', 10.4600, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.019', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (508, N'd7f814fa-6e96-4761-bf6b-42eb8087b211', N'806', N'加工中心', N'MXR-460V', N'北京大隈机床有限公司', N'1725150403', N'2015.12', 22, 5.5, N'A类', 69.8000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸460x1000行程762x460x450 主轴最高转速8000刀库数量20把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (509, N'1bd76f37-7fe0-4b3c-b401-53f285aac80e', N'807', N'加工中心', N'MXR-460V', N'北京大隈机床有限公司', N'1725141104', N'2015.12', 22, 5.5, N'A类', 69.8000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸460x1000行程762x460x450 主轴最高转速8000刀库数量20把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (510, N'4461c668-6437-41e9-b344-8485175c874e', N'808', N'加工中心', N'MXR-460V', N'北京大隈机床有限公司', N'1725141105', N'2015.12', 22, 5.5, N'A类', 69.8000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸460x1000行程762x460x450 主轴最高转速8000刀库数量20把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (511, N'a25b2548-0674-46d4-833b-547340544a2a', N'816', N'加工中心', N'MXR-560V', N'北京大隈机床有限公司', N'1726160101', N'2016.4', 25, 7.1, N'A类', 88.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (512, N'f92e7c29-1d69-4bd9-95c5-6ee27a6ae4bb', N'817', N'加工中心', N'MXR-560V', N'北京大隈机床有限公司', N'1726160102', N'2016.4', 25, 7.1, N'A类', 88.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (513, N'941cc12b-10e9-4467-b36a-4d94407adfa0', N'818', N'加工中心', N'MXR-560V', N'北京大隈机床有限公司', N'1726160103', N'2016.4', 25, 7.1, N'A类', 88.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (514, N'92e257f6-6c8a-4c19-8b2f-b5020673f436', N'823', N'研磨机', N'TP50B', N'佐技', N'ZJ1160202', N'2016.4', 1, 0.3, N'B类', 9.4400, 1, N'N/A', N'OEM一楼', N'OEM后处理', N'50L,130-300r', 0, 0, 125, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (515, N'6c531696-8242-4ea8-a30a-81e435a70076', N'828', N'加工中心', N'MXR-560V', N'北京大隈机床有限公司', N'1726160406', N'2016.7', 25, 7.1, N'A类', 95.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把,主轴中心出水7Mpa', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (516, N'da710b31-022a-4327-a28d-69de7870d7c5', N'829', N'加工中心', N'MXR-560V', N'北京大隈机床有限公司', N'1726160407', N'2016.7', 25, 7.1, N'A类', 95.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把,主轴中心出水7Mpa', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (517, N'c3f9a01c-178c-44c5-b44e-4682a955d16f', N'830', N'加工中心', N'MXR-560V', N'北京大隈机床有限公司', N'1726160408', N'2016.7', 25, 7.1, N'A类', 95.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把,主轴中心出水7Mpa', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (518, N'29d42ac7-285e-45ef-a8c8-725cf75dacc2', N'835', N'加工中心', N'MXR-560V 3axis', N'北京大隈机床有限公司', N'1726160703', N'2016.1', 25, 7.1, N'A类', 80.2000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把,主轴中心出水7Mpa', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (519, N'20e19d48-b1ac-4094-a044-da64e2069fd2', N'836', N'加工中心', N'MXR-560V 3axis', N'北京大隈机床有限公司', N'1726160704', N'2016.1', 25, 7.1, N'A类', 80.2000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把,主轴中心出水7Mpa', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (520, N'46afa3ec-f51a-4fc6-8fa6-970b55cf73bb', N'837', N'加工中心', N'MXR-560V 3axis', N'北京大隈机床有限公司', N'1726160705', N'2016.1', 25, 7.1, N'A类', 80.2000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把,主轴中心出水7Mpa', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (521, N'9dd250a3-a451-47af-a6c3-41814f27dd72', N'838', N'加工中心', N'MXR-560V 3axis', N'北京大隈机床有限公司', N'1726160706', N'2016.1', 25, 7.1, N'A类', 80.2000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把,主轴中心出水7Mpa', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (522, N'7466bbea-f717-4773-b7e2-9c45ae528234', N'839', N'加工中心', N'MXR-560V 3axis', N'北京大隈机床有限公司', N'1726160707', N'2016.1', 25, 7.1, N'A类', 80.2000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把,主轴中心出水7Mpa', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (523, N'26c0f1da-2257-4398-aed7-1023872132a8', N'847', N'加工中心', N'MXR-560V 3axis', N'北京大隈机床有限公司', N'1726160708', N'2016.1', 25, 7.1, N'A类', 80.2000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把,主轴中心出水7Mpa', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (524, N'52b0b8d2-59aa-4345-b651-82db53f3aece', N'848', N'加工中心', N'MXR-560V 3+1axis', N'北京大隈机床有限公司', N'1726160709', N'2016.1', 25, 7.1, N'A类', 93.5000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把,主轴中心出水7Mpa', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (525, N'a179e94e-3b79-461b-9756-4767d71ed2ed', N'849', N'加工中心', N'MXR-560V 3+1axis', N'北京大隈机床有限公司', N'1726160710', N'2016.1', 25, 7.1, N'A类', 93.5000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把,主轴中心出水7Mpa', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (526, N'12bc81c1-0594-44dd-98ba-6c6893914d5f', N'850', N'加工中心', N'MXR-560V 3+1axis', N'北京大隈机床有限公司', N'1726160711', N'2016.7', 25, 7.1, N'A类', 93.5000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把,主轴中心出水7Mpa', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (527, N'25ef3d42-8cbd-4053-b998-72987f0c1d43', N'851', N'加工中心', N'MXR-560V 3+1axis', N'北京大隈机床有限公司', N'1726160801', N'2016.1', 25, 7.1, N'A类', 93.5000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把,主轴中心出水7Mpa', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (528, N'20fcf9ba-cae3-4403-9527-2497ef771119', N'852', N'加工中心', N'MXR-560V 3+1axis', N'北京大隈机床有限公司', N'1726160802', N'2016.1', 25, 7.1, N'A类', 93.5000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸560x1300行程1050x560x450 主轴最高转速15000刀库数量20把,主轴中心出水7Mpa', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (529, N'd043e085-319c-41c9-9d24-993ca59e447d', N'855', N'去氢烘箱', NULL, N'吴江市创新', N'160719', N'2016.1', 11, 1, N'B类', 0.9000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'500*600*750', 0, 0, 86, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (530, N'289f4511-a036-438b-b183-fdd2a7785045', N'863', N'注塑机', N'TY-550.3RLSR.V4/¢32', N'杭州大禹机械', NULL, N'2017.4', 11.6, 4.5, N'B类', 59.8000, 1, N'N/A', N'OEM一楼东北', N'OEM后处理', N'射出压力1662,模间450*400 最大开模距350顶出力1.3T顶出行程40最大液压140', 0, 0, 143, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (531, N'f3f0d9e1-998c-448c-bad1-61984e075343', N'864', N'热处理炉', N'RX5-55', N'苏州工业园区热处理设备厂', N'16-11', N'2017.3', 40, 3, N'B类', 20.0000, 1, N'N/A', N'研发楼北', N'OEM后处理', N'0.8*0.55*0.64 ≤550°均匀度±5°', 0, 0, 88, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, N'实际安装在研发部') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (532, N'34900501-360e-4dae-ad62-b9fba090d0df', N'866', N'加工中心', N'GENOS M560V', N'大隈日本', N'201176', N'2017.4', NULL, 7.5, N'A类', 150.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (533, N'b44f0b51-cb14-4ec6-8f33-e85d24c7455e', N'867', N'激光打标机', N'FOBA M3000', N'德国ALLTEC', N'MDT1610/095', N'2018.1', 10, 0.2, N'A类', 100.8000, 1, N'N/A', N'OEM二楼中北', N'OEM后处理', N'打标范围180*180,行程300*300激光25w', 0, 0, 54, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (534, N'a0e01d8f-ed5f-4859-bb25-e54d6a7bc175', N'880', N'车削中心', N'GENOS L300-MYW-e', N'大隈日本', N'MYW135', N'2017.7', 20, 6.2, N'A类', 145.6000, 1, N'N/A', N'OEM一楼西南', N'OEM器械 ', N'max300*150;行程235*100*460*520(W) ;主轴3000r副轴6000r;12刀位', 0, 0, 22, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (535, N'cd8bdb0c-98cd-438f-bd4c-ab2c7ff95aa4', N'882', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF6139', N'2017.8', 7.3, 2.45, N'A类', 172.6600, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (536, N'587929ed-c2b0-44d0-bb93-316f74af13f9', N'883', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF6140', N'2017.8', 7.3, 2.45, N'A类', 172.6600, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (537, N'cb781398-a032-4745-8fc6-167b5689e030', N'884', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF6141', N'2017.8', 7.3, 2.45, N'A类', 172.6600, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (538, N'65888468-6b54-4c49-9668-7b0d505fffea', N'885', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF6142', N'2017.8', 7.3, 2.45, N'A类', 172.6600, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (539, N'8777023e-d037-496c-85ad-c2880f6b31db', N'886', N'清洗机', N'XR4020-40c', N'鑫仁', N'170803', N'2017.8', 17, 0.3, N'B类', 4.7800, 1, N'N/A', N'OEM三楼', N'OEM后处理', N'超声波0.5kw*2槽40khz', 0, 0, 82, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (540, N'8518ddfc-efe5-4de1-be72-dffef3587ccb', N'887', N'线切割机床', N'DK7740D', N'苏州宝玛数控设备有限公司', N'H170837', N'2017.8', 3, 2, N'B类', 10.6000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.015', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (541, N'72afc00b-6db7-4ad9-acb2-6dca13a4b71b', N'888', N'线切割机床', N'DK7740D', N'苏州宝玛数控设备有限公司', N'H170838', N'2017.8', 3, 2, N'B类', 10.6000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.015', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (542, N'e4c929b1-8d36-429d-a494-73635bbf3612', N'889', N'线切割机床', N'DK7740D', N'苏州宝玛数控设备有限公司', N'H170839', N'2017.8', 3, 2, N'B类', 10.6000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.015', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (543, N'42bd565f-14f9-4ebf-8b94-be675a2601b1', N'890', N'线切割机床', N'DK7740D', N'苏州宝玛数控设备有限公司', N'H170840', N'2017.8', 3, 2, N'B类', 10.6000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'行程500*400,台面785*500 最大切厚500,锥度0,最大加工效率100mm2/m,粗糙度1.5-2.5,圆度≤0.015', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (544, N'ce4a3924-99d8-49d1-9fd5-e3ebe0efb231', N'891', N'研磨机', N'FMSL8/1', N'美国BELAIR', N'538', N'2017.9.7', 1, 0.083, N'B类', 31.6095, 1, N'N/A', N'OEM三楼', N'OEM后处理', N'8L,', 0, 0, 125, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (545, N'ce41ae94-626c-44c9-9a52-ef15addb0689', N'894', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF0888', N'2017', 7.3, 2.5, N'A类', 182.9000, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (546, N'dc6125e3-efe1-4e0f-9294-efe7c615d803', N'895', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF0889', N'2017', 7.3, 2.5, N'A类', 182.9000, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (547, N'c414cf98-1e01-4912-bc6d-74f1b6333735', N'896', N'深孔钻', N'K12-2-500', N'上海宁远精密机械', N'1707515', N'2017.11', 28, 3, N'A类', 72.0000, 1, N'N/A', N'OEM一楼东南', N'OEM器械 ', N'钻孔∮2-12,最大钻孔深度50-500,最高主轴转速8000,', 0, 0, 98, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (548, N'77eb75b2-f422-49b7-96cc-c1f1e0ade523', N'897', N'钝化线', N'OC12-1828-HE', N'克斯特上海', N'1016M5296', N'2018.12', 20, 3, N'B类', 232.0000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'0.9*0.7*0.58,流量0.8-1.2m3/m', 0, 0, 37, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (549, N'8770f1da-04f6-4b63-aa57-4bf2db5b3571', N'905', N'加工中心', N'GENOS M560V', N'大隈日本', N'206663', N'2017.12', 35, 7.5, N'A类', 150.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (550, N'2629239d-101c-4a0a-9199-bd2bdaba66e4', N'913', N'5轴加工中心', N'GENOS M560V', N'大隈日本', N'208170', N'2018.2', 35, 7.5, N'A类', 175.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 11, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (551, N'2e8e7b12-aea2-4d3e-af7f-a946a2fbc176', N'914', N'5轴加工中心', N'GENOS M560V', N'大隈日本', N'208171', N'2018.2', 35, 7.5, N'A类', 175.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 11, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (552, N'63633583-7dd4-444a-b666-7e3457d5de0d', N'917', N'5轴加工中心', N'GENOS M560V', N'大隈日本', N'208911', N'2018.3', 35, 7.5, N'A类', 175.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 11, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (553, N'8ad44aac-720e-4bd8-a325-543710f6156d', N'918', N'纵切机床', N'M32-4M5', N'西铁城', N'P30722', N'2018.5', 14.5, 3.5, N'A类', 157.7472, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (554, N'be6b976d-214e-4e0a-aed9-d96502185e58', N'919', N'焊机', N'YC-315TX3HVW', N'唐山松下(常州柯马意)', N'21318A0082', N'2018.4', 11.37, 0.1, N'B类', 1.3800, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'4-315A,10.2-32.6V, 10-500Hz', 0, 0, 49, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (555, N'14af5ce9-aa5a-42fc-91fd-f1e6f503deae', N'920', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'212260', N'2018.6', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (556, N'9c3943cc-4ce7-4915-b344-ce0890b33574', N'921', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'212261', N'2018.6', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (557, N'05d12bbd-a7e7-4da0-83c4-976f92dfdea2', N'922', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'212262', N'2018.6', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (558, N'91f24fa2-aaf6-4988-ad3d-8464fbf1f78a', N'925', N'喷砂机', N'KINGS SBC-220', N'美国kings', N'1007115', N'2018.7', 0.17, 0.22, N'B类', 10.7000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'33*22*14吋', 0, 0, 68, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (559, N'9823f5b0-0990-4421-8558-57f71f108a4e', N'944', N'研磨机', N'TP18', N'佐技上海', N'180004', N'2018.9', 2, 0.08, N'B类', 7.1000, 1, N'N/A', N'OEM三楼', N'OEM后处理', N'18L,130-300r', 0, 0, 125, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (560, N'3d3f66c7-1c12-42c8-b786-982975d4a39d', N'946', N'烘箱', N'CX881-3', N'创新烘箱', N'180901', N'2018.1', 9.37, 0.2, N'B类', 0.7500, 1, N'N/A', N'OEM三楼', N'OEM后处理', N'0--300°,±2°', 0, 0, 52, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (561, N'c7e9d639-57d6-4c3d-9a22-d8739e20d3bd', N'947', N'烘箱', N'CX881-3', N'创新烘箱', N'180902', N'2018.1', 9.37, 0.2, N'B类', 0.7500, 1, N'N/A', N'OEM一楼东北', N'OEM后处理', N'0--300°,±2°', 0, 0, 52, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (562, N'3e68ed17-da64-4511-9c13-929238894583', N'948', N'清洗机', N'XR-5094-28C', N'鑫仁', N'18051201-01', N'2019.1', 32, 1.5, N'B类', 7.1725, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'超声功率4.4kw,28khz', 0, 0, 82, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (563, N'c2c18414-8b20-4fea-a33c-eb2631ab7de4', N'951', N'清洗机', N'XR4020', N'鑫仁', N'18081002', N'2019.1', 17, 0.3, N'B类', 4.5000, 1, N'N/A', N'OEM三楼', N'OEM后处理', N'超声波0.5kw*2槽40khz', 0, 0, 82, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (564, N'643c681c-64fd-42d1-a30b-88caa0364868', N'952', N'清洗机', N'XR4020', N'鑫仁', N'18081501', N'2018.11', 17, 0.3, N'B类', 4.7390, 1, N'N/A', N'OEM三楼', N'OEM后处理', N'超声波0.5kw*2槽40khz', 0, 0, 82, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (565, N'028e6ba4-18fb-47f6-b2b1-47b781c8ee41', N'963', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7018', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (566, N'356950a4-f9bd-43dd-b943-0966c018381f', N'964', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7019', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (567, N'e6e7b99d-4084-479d-b9e5-1c4c1dabcbe7', N'965', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7020', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (568, N'27d3422f-cb83-4b1f-8159-36548a9812e3', N'966', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7021', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (569, N'9d643407-9353-44b2-bc22-eb805f1d099a', N'967', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7022', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (570, N'4a8e65ad-b852-455b-9123-d6b776b1839c', N'968', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7023', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (571, N'ab2c1d35-8393-49cf-b937-18eb4d7f7e01', N'969', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7024', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (572, N'01f5a9b6-59c4-403d-95c6-e98b9dd2409f', N'970', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7025', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (573, N'20be2ffc-42ba-4f8b-9947-3ece51597ee0', N'971', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7026', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (574, N'a00bdb50-5ab2-492a-a2a1-c6bd3bac9e44', N'972', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7027', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (575, N'cdd46353-87a7-4606-99e9-d90a963959e2', N'973', N'纵切机床', N'M32-4M8', N'西铁城', N'P31095', N'2019.4', 14.5, 3.5, N'A类', 291.7890, 1, N'N/A', N'OEM一楼', N'OEM植入物', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (576, N'34e90572-6160-4441-8a88-22fec1239131', N'974', N'纵切机床', N'M32-4M8', N'西铁城', N'P31096', N'2019.4', 14.5, 3.5, N'A类', 291.7890, 1, N'N/A', N'OEM一楼', N'OEM植入物', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (577, N'baa28018-22a4-4422-b771-ce4a6426611f', N'975', N'纵切机床', N'M32-4M8', N'西铁城', N'P31097', N'2019.4', 14.5, 3.5, N'A类', 291.7890, 1, N'N/A', N'OEM一楼', N'OEM植入物', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (578, N'08febca7-b3af-4bc9-aabd-2a55633242a4', N'976', N'纵切机床', N'M32-4M8', N'西铁城', N'P31100', N'2019.4', 14.5, 3.5, N'A类', 291.7890, 1, N'N/A', N'OEM一楼', N'OEM植入物', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (579, N'bb991702-6248-4848-ac17-0cc1c7ea8359', N'977', N'清洗机', N'XR4020-40C', N'鑫仁', N'1903010101', N'2019.8', 17, 0.3, N'B类', 4.5000, 1, N'N/A', N'OEM三楼', N'OEM后处理', N'超声波0.5kw*2槽40khz', 0, 0, 82, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (580, N'5a9fb3cc-1952-4644-8c5c-d399b3bfd02c', N'978', N'清洗机', N'XR4020-40C', N'鑫仁', N'1903010102', N'2019.8', 17, 0.3, N'B类', 4.5000, 1, N'N/A', N'OEM三楼', N'OEM后处理', N'超声波0.5kw*2槽40khz', 0, 0, 82, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (581, N'df41b82a-b895-4c88-9fb0-a4df8a368e51', N'979', N'研磨机', N'FMSL8/1', N'美国BELAIR', N'582', N'2019.8', 1, 0.083, N'B类', 34.4740, 1, N'N/A', N'OEM三楼', N'OEM后处理', N'8L,', 0, 0, 125, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (582, N'4a2ec5c4-0d70-4c53-b08d-b29dc8dfb3c3', N'980', N'研磨机', N'FMSL8/1', N'美国BELAIR', N'583', N'2019.8', 1, 0.083, N'B类', 34.4740, 1, N'N/A', N'OEM二楼中南', N'OEM后处理', N'8L,', 0, 0, 125, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (583, N'35623781-130e-4eb2-a524-c7c6964e0f0e', N'981', N'研磨机', N'FMSL8/1', N'美国BELAIR', N'584', N'2019.8', 1, 0.083, N'B类', 34.4740, 1, N'N/A', N'OEM二楼中南', N'OEM后处理', N'8L,', 0, 0, 125, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (584, N'28011902-2915-40fe-a366-4f2b2658d5c8', N'982', N'加工中心', N'MXR-460V', N'北京大隈机床有限公司', N'1725130709', N'2019.4', 22, 5.5, N'A类', 43.3415, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸460x1000行程762x460x450 主轴最高转速8000刀库数量20把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (585, N'3299d343-5c56-4cf0-8c73-5e7850427776', N'983', N'加工中心', N'MXR-460V', N'北京大隈机床有限公司', N'1725160605', N'2019.4', 22, 5.5, N'A类', 43.3415, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'工作台尺寸460x1000行程762x460x450 主轴最高转速8000刀库数量20把', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (586, N'7c403a9a-e1b0-455d-a7b1-ada3610ff4e7', N'984', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7190', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (587, N'c8461503-8e5c-459e-8c59-8a99fa0eb744', N'985', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7191', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (588, N'5299c983-2121-496f-9fea-a7b83a06c124', N'986', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7192', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (589, N'41f3c1d9-7454-4df7-a1a6-85c2dbb9333e', N'987', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7193', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (590, N'd9b86a6e-fe35-4d35-996a-8271d3a7def5', N'988', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7194', N'2019.4', 7.3, 2.5, N'A类', 190.4040, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (591, N'37b7e8dd-0dcf-41b4-a6f5-0a5b0e5b03c4', N'991', N'电解线', N'XXS-6036', N'常州新鑫环保', N'N/A', N'2019.7', 58.55, 2, N'B类', 15.0000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'850*500*650', 0, 0, 33, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (592, N'c77d1704-ba88-42b6-bcfe-aa8b0aeff7d5', N'993', N'切削油车', N'ECOVAC-300', N'英国FREDDY', N'170724/7664', N'2019.7', 3, 0.155, N'B类', 6.7189, 1, N'N/A', N'OEM二楼西南', N'OEM植入物', N'油箱300L,吸速280L,排速160L', 0, 0, 80, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (593, N'80c5939b-a503-491a-804e-b581c55057b7', N'996', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225233', N'2019.8', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (594, N'56eb0f08-b846-4c7c-b303-6c5d8f18eeae', N'997', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225234', N'2019.8', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (595, N'b1d6c9fe-d8ce-45ae-8b8f-ea1ee73da893', N'998', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225235', N'2019.8', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (596, N'9386163e-e696-4446-873d-d7f522ed5551', N'999', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225464', N'2019.8', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (597, N'cb57bd58-4598-419f-bf24-65907e7694d8', N'1000', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225465', N'2019.8', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (598, N'f400503c-23e4-4749-bddd-d84293f7ca5e', N'1001', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7323', N'2019.6', 7.3, 2.5, N'A类', 185.4798, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (599, N'c4280f6e-aa2b-465d-af7c-007bddf54620', N'1002', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7324', N'2019.6', 7.3, 2.5, N'A类', 185.4798, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (600, N'52b82c77-d437-464a-9913-5731d11aba2d', N'1003', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7325', N'2019.6', 7.3, 2.5, N'A类', 185.4798, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (601, N'23518dc8-1bda-46a8-ab47-082fcea6f9b9', N'1004', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7326', N'2019.6', 7.3, 2.5, N'A类', 185.4798, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (602, N'0d72eba1-1568-43a8-8532-548b0640a947', N'1005', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7327', N'2019.6', 7.3, 2.5, N'A类', 185.4798, 1, N'N/A', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (603, N'eb298e4a-ca6e-4cee-9b0b-2b9c1b4eb05a', N'1008', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225466', N'2019.9', 35, 7.5, N'A类', 185.4798, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (604, N'5c1ed23f-98fc-404b-a1d0-4b31e8f03e77', N'1009', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225467', N'2019.9', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (605, N'a5d0e6f8-e521-41e0-9950-66b0efbdf5bd', N'1010', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225468', N'2019.9', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (606, N'd1d200a1-3ede-4194-803f-aa8656d0956d', N'1011', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225469', N'2019.9', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (607, N'37a833ee-126c-4f42-9e1b-8b9cf1db9674', N'1012', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225470', N'2019.9', 35, 7.5, N'A类', 204.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (608, N'51b55111-31d0-4325-9b8c-e4809686bfc9', N'1017', N'氩弧焊机', N'WSME-400', N'巨电', N'N/A', N'2019.11', 4, 0.1, N'B类', 1.2000, 1, N'N/A', N'OEM二楼中北', N'OEM后处理', N'350A', 0, 0, 124, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (609, N'd545c74c-581f-4be9-bd62-8e0df1474b2c', N'1018', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7328', N'2019.1', 7.3, 2.5, N'A类', 185.4798, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (610, N'b0ef33d1-3b8a-46b2-945f-ed05f8b6fa10', N'1019', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7329', N'2019.1', 7.3, 2.5, N'A类', 185.4798, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (611, N'9073c318-b5df-4860-b2ae-99e93907e5a2', N'1020', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7330', N'2019.1', 7.3, 2.5, N'A类', 185.4798, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (612, N'7913f69b-48a7-4eb3-beaa-f8ce8a986b8b', N'1021', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7331', N'2019.1', 7.3, 2.5, N'A类', 185.4798, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (613, N'e84c3f2d-bea3-42ef-b600-401b5f95dc71', N'1022', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7332', N'2019.1', 7.3, 2.5, N'A类', 185.4798, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (614, N'bc82d77d-4552-4c31-b943-c82829ecb9b4', N'1023', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225471', N'2019.1', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (615, N'd3b6922d-1166-4fc4-9b09-e3226af3a584', N'1024', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225472', N'2019.1', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (616, N'0f6f11a8-9251-41d9-afb5-95969400f048', N'1025', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225473', N'2019.1', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (617, N'18e43d17-9b0e-4619-9939-728a82849e5c', N'1026', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225474', N'2019.1', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (618, N'0a2f2e61-5537-4667-b0e9-0637ec1d9981', N'1027', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'225475', N'2019.1', 35, 7.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (619, N'72733a0e-0c2e-4284-98ca-536099cf0aea', N'1028', N'纵切机床', N'M32-4M8', N'西铁城', N'P31144', N'2019.1', 14.5, 3.5, N'A类', 142.0000, 1, N'N/A', N'OEM一楼', N'OEM植入物', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (620, N'fe31e8cb-9aae-420f-82ee-9e40517b5a16', N'1029', N'4轴加工中心', N'GENOS M560V', N'大隈日本', N'226643', N'2019.11', 35, 7.5, N'A类', 132.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 10, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (621, N'78591dd6-96fa-45b2-914b-f1c9b52665a9', N'1030', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7333', N'2019.12', 7.3, 2.5, N'A类', 185.4798, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (622, N'd85f66b1-d675-4c64-913a-6846bba941f8', N'1031', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7334', N'2019.12', 7.3, 2.5, N'A类', 185.4798, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (623, N'e8cd92bf-a6e3-4550-898b-a9edfc8904de', N'1032', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7335', N'2019.12', 7.3, 2.5, N'A类', 185.4798, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (624, N'e0afde17-b06e-41de-87e2-f1b921e2e1d9', N'1033', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7336', N'2019.12', 7.3, 2.5, N'A类', 185.4798, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (625, N'3466e48a-690b-4577-9475-7e55c709dc73', N'1038', N'喷砂机', N'6050E', N'苏州百通', N'10307', N'2019.12', 1, 0.2, N'B类', 1.0500, 1, N'N/A', N'OEM一楼中南', N'OEM后处理', N'工作仓尺寸900x700x580,空气压力5-7', 0, 0, 68, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (626, N'c1a26b98-516e-4e6c-b620-5d402554b1ee', N'1039', N'喷砂机', N'COMCO CRT200-2', N'上海友赛', N'PC1511', N'2019.12', 2, 0.1, N'B类', 15.5000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', N'650*350*250', 0, 0, 68, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (627, N'e61f1570-8c1b-43c2-bad2-08f9db0870f4', N'1041', N'5轴加工中心', N'GENOS M560V', N'大隈日本', N'226047', N'2019.12', 37, 7.7, N'A类', 189.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 11, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (628, N'32001a7b-8faf-4a7e-98e1-18236bf9b17f', N'1042', N'5轴加工中心', N'GENOS M560V', N'大隈日本', N'226048', N'2019.12', 37, 7.7, N'A类', 189.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 11, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (629, N'eed1d45c-0671-4073-a9ee-22d3456ff0ec', N'1043', N'5轴加工中心', N'GENOS M560V', N'大隈日本', N'226049', N'2019.12', 37, 7.7, N'A类', 189.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 11, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (630, N'8dbb3dec-c2ec-4c46-99cb-28335b5a59dd', N'1044', N'真空炉', N'VTH100StCC', N'爱协林', N'1925', N'2020.4', 85, 3, N'A类', 120.0000, 1, N'N/A', N'OEM一楼西北', N'OEM后处理', N'600*400*400,最大重量200kg,最高炉温750,均匀±5,', 0, 0, 137, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (631, N'75406c70-4fdb-4d1f-8643-b8987f4d8121', N'1045', N'对刀仪', N'ZOLLER smile420', N'杭州澜盛科技', NULL, N'2020.5', 3, 0.2, N'B类', 44.9968, 1, N'N/A', N'OEM一楼中南', N'OEM器械 ', N'BT40', 0, 0, 35, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (632, N'3528db80-f60c-459f-86e3-4baa78779190', N'1046', N'纵切机床', N'L20E-2M10', N'西铁城(泰国)', N'QF6009', N'2020.4', 7.3, 2.5, N'A类', 186.0000, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (633, N'cd47e83c-f1ef-4adb-8e62-5518cc85e0c7', N'1047', N'纵切机床', N'L20E-2M10', N'西铁城(泰国)', N'QF6010', N'2020.4', 7.3, 2.5, N'A类', 184.0000, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (634, N'e57591a8-7494-457b-b143-c0f13a70e873', N'1048', N'纵切机床', N'L20E-2M10', N'西铁城(泰国)', N'QF6219', N'2020.4', 7.3, 2.5, N'A类', 166.0000, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (635, N'8fdc5b1c-be9a-4361-bdf5-511ac2ef1424', N'1049', N'纵切机床', N'L20E-2M10', N'西铁城(泰国)', N'QF6337', N'2020.4', 7.3, 2.5, N'A类', 166.0000, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (636, N'2e438443-0795-432c-aa6f-fbd6f030f3a3', N'1051', N'纵切机床', N'SV20', N'STAR精密株式会社', N'403', N'2020.12', 7, 3.5, N'A类', 5.8330, 1, N'N/A', N'OEM一楼中北', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (637, N'73dededd-3dc5-4b04-9467-6651e4c060f8', N'1052', N'纵切机床', N'SV20', N'STAR精密株式会社', N'408', N'2020.12', 7, 3.5, N'A类', 5.8330, 1, N'N/A', N'OEM一楼中北', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (638, N'201996d8-cfa9-49ef-8760-7be172825346', N'1053', N'纵切机床', N'SV32', N'STAR精密株式会社', N'381', N'2020.12', 8, 3.8, N'A类', 10.2100, 1, N'N/A', N'OEM一楼中北', N'OEM植入物', N'最大加工直径32mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (639, N'24eec23c-6333-46ba-8352-695c693c3e65', N'1054', N'纵切机床', N'SV32', N'STAR精密株式会社', N'396', N'2020.12', 8, 3.8, N'A类', 10.2100, 1, N'N/A', N'OEM一楼中北', N'OEM植入物', N'最大加工直径32mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (640, N'a472c626-f028-48e0-a9ec-80913d77300f', N'1055', N'纵切机床', N'L20E-2M10', N'西铁城(泰国)', N'QF7711', N'2020.12', 7.3, 2.5, N'A类', 178.0000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (641, N'6fe3e68f-78b3-4e1e-962e-57d0da551dc4', N'1058', N'激光焊机', N'PB300CE', N'大族激光', N'HYF351908079', N'2020.5', 16.5, 1, N'B类', 23.0000, 1, N'N/A', N'OEM三楼', N'OEM后处理', NULL, 0, 0, 56, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (642, N'3578926c-0501-4aaa-ae22-53f21c78a322', N'1059', N'纵切机床', N'L20E-2M10', N'西铁城(泰国)', N'QF0161', N'2020.8', 7.3, 2.5, N'A类', 85.8800, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (643, N'a392f69a-7c55-4f77-94fc-be8ccb1c111f', N'1060', N'纵切机床', N'L20E-2M10', N'西铁城(泰国)', N'QF5741', N'2020.8', 7.3, 2.5, N'A类', 127.0000, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (644, N'34f7cd50-7bee-40a4-972c-e3778148ca18', N'1061', N'纵切机床', N'L20E-2M10', N'西铁城(泰国)', N'QF5777', N'2020.8', 7.3, 2.5, N'A类', 127.0000, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (645, N'b9f18248-2377-4836-8c50-3740327a263e', N'1062', N'纵切机床', N'L20E-2M10', N'西铁城(泰国)', N'QF5797', N'2020.8', 7.3, 2.5, N'A类', 127.0000, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (646, N'd9ecc615-9ecf-45ba-a5a0-5070bf32865e', N'1063', N'纵切机床', N'L20E-2M10', N'西铁城(泰国)', N'QF5818', N'2020.8', 7.3, 2.5, N'A类', 127.0000, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (647, N'349ca432-cd95-4783-9514-93209979012b', N'1064', N'纵切机床', N'L20E-2M10', N'西铁城(泰国)', N'QF6038', N'2020.8', 7.3, 2.5, N'A类', 164.2500, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (648, N'3543a59e-b417-48ca-9809-df9fb1716b8a', N'1065', N'研磨机', N'bright', N'美国BELAIR', N'20040018', N'2020.6', 3.55, 1, N'B类', 10.8562, 1, N'N/A', N'OEM一楼', N'OEM后处理', N'4*15L,', 0, 0, 125, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (649, N'a21ad0cc-4b1b-4558-a371-abc1ee06eed7', N'1066', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF0162', N'2020.8', 7.3, 2.5, N'A类', 77.4700, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (650, N'dfbb2497-b4d6-4254-b207-8621d9671edc', N'1067', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF5795', N'2020.8', 7.3, 2.5, N'A类', 98.2100, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (651, N'f3007840-267c-474d-b791-d7bb4ddf61ba', N'1068', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF5796', N'2020.8', 7.3, 2.5, N'A类', 117.5200, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (652, N'bfcb8e3a-6d81-4eec-950b-8c5a8d7f611a', N'1069', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF5798', N'2020.8', 7.3, 2.5, N'A类', 117.5200, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (653, N'0fe01e15-ca27-4843-bfd1-b6e552079085', N'1070', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF5819', N'2020.8', 7.3, 2.5, N'A类', 117.5200, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (654, N'c2c73827-fa7c-40bd-a3c3-64242cbb918e', N'1071', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF6008', N'2020.8', 7.3, 2.5, N'A类', 117.5200, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (655, N'60de05d4-6e8f-4915-aca6-bb15a422f2a7', N'1072', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF6268', N'2020.8', 7.3, 2.5, N'A类', 135.6500, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (656, N'c5a98720-93c4-45ce-b379-4e89e291693c', N'1073', N'纵切机床', N'L20X', N'西铁城', N'QE1264', N'2020.8', 20, 2.5, N'A类', 135.6500, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (657, N'7a8f0b80-d664-416a-a479-7fa53e850215', N'1074', N'纵切机床', N'L20X', N'西铁城', N'QE1265', N'2020.8', 20, 2.5, N'A类', 140.0000, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (658, N'4986e5d7-0702-48d5-b0e6-22772fb9a4a3', N'1075', N'纵切机床', N'L20X', N'西铁城', N'QE1536', N'2020.8', 20, 2.5, N'A类', 153.8100, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (659, N'65925621-a57d-4715-94ad-23af41f6d4aa', N'1080', N'切削油车', N'micro plus', N'英国FREDDY', N'200921/8479', N'2020.10', 2, 0.068, N'B类', NULL, 1, N'N/A', N'OEM一楼东北', N'OEM器械 ', N'100L', 0, 0, 81, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (660, N'e6b97694-0f8a-4cc8-9ef7-a5efa0915307', N'1081', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7859', N'2021.2', 7.3, 2.5, N'A类', 22.2000, 1, N'N/A', N'OEM二楼正西', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (661, N'029fc0bc-fe3c-4928-9f30-a8dbbabf2218', N'1082', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7860', N'2021.2', 7.3, 2.5, N'A类', 178.3000, 1, N'N/A', N'OEM二楼正西', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (662, N'e834e7f1-b238-40cf-953a-63aeb8ea4fa1', N'1083', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7861', N'2021.2', 7.3, 2.5, N'A类', 178.3000, 1, N'N/A', N'OEM二楼正西', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (663, N'73670660-c577-4a62-aaab-12dbe1089d5e', N'1084', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7862', N'2021.2', 7.3, 2.5, N'A类', 178.3000, 1, N'N/A', N'OEM二楼正西', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (664, N'fc4a3833-ccfd-41b6-af5e-8856ebe4ec38', N'1086', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF0192', N'2021.2', 7.3, 2.6, N'A类', 178.3000, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (665, N'f178328e-3fb3-4246-b5a3-4079ccdb355d', N'1087', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7048', N'2021.2', 7.3, 2.6, N'A类', 178.3000, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (666, N'5c4837bd-2ca2-47f4-84e9-a408aef2f834', N'1088', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF7055', N'2021.2', 7.3, 2.6, N'A类', 178.3000, 1, N'N/A', N'OEM二楼南', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (667, N'7abf20f4-92c7-45a5-ab18-1083a509f612', N'1089', N'喷砂机', N'BBO', N'EMPIRE', N'33019', N'2020.12', 1, 0.1, N'B类', 10.8000, 1, N'N/A', N'OEM二楼北', N'OEM后处理', NULL, 0, 0, 68, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (668, N'ddc8c9bb-7160-4466-838a-2eaf45029c4b', N'1090', N'切削液过滤机', NULL, N'欧米亚(无锡白山)', NULL, N'2020.11.24', NULL, 3, N'B类', 50.0000, 1, N'N/A', N'OEM一楼东北', N'OEM器械 ', NULL, 0, 0, 78, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, N'无法确认的设备') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (669, N'f469b114-b374-4b05-9f71-e40e021bd5e4', N'1091', N'切削液过滤器', N'CLD-100', N'信成精密', NULL, N'2020.12.1', NULL, NULL, N'B类', 1.0900, 1, N'N/A', N'OEM一楼东北', N'OEM器械 ', NULL, 0, 0, 79, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, N'无法确认的设备') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (670, N'9205f7e5-1b4b-4a0d-aa3b-d31a3a955a72', N'1096', N'折弯机', N'LINK-FORM', N'C&A', N'241-02', N'2021.2', NULL, NULL, N'B类', NULL, 1, N'N/A', N'OEM二楼中南', N'OEM植入物', N'4100N', 0, 0, 134, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (671, N'd50856de-8bbc-49ea-813e-ee8ca38fef29', N'1097', N'喷砂机', N'CTR100-1', N'COMCO', N'PC333', N'2021.3', 0.1, 0.1, N'B类', NULL, 1, N'N/A', N'OEM二楼中北', N'OEM后处理', NULL, 0, 0, 68, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (672, N'3d516b91-16f6-45ea-ad9d-120c13c01720', N'1100', N'慢走丝', N'C600iB', N'发那科', N'P20Y6B698', N'2021.1', 13, 3, N'A类', 95.0000, 1, N'N/A', N'OEM二楼东南', N'OEM器械 ', N'电极0.1-0.3;15m/m;最大效率330㎡/m;Ra0.19', 0, 0, 63, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (673, N'c10a3db8-a251-4971-a3e6-18ee66bb4135', N'1101', N'五轴加工中心', N'GENOS M560V', N'大隈日本', N'233185', N'2021.1', 37, 7.7, N'A类', 189.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 114, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (674, N'1dfbd9a1-a3b1-4ea9-9346-7a4216748563', N'1102', N'纵切机床', N'M32-5M8', N'西铁城', N'P40108', N'2021.2', 14.5, 3.5, N'A类', 260.0000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (675, N'2783443b-f4ce-40c7-9e3c-75791a41d5b5', N'1103', N'纵切机床', N'SV32', N'STAR精密株式会社', N'246', N'2021.3', 8, 3.8, N'A类', NULL, 1, N'N/A', N'OEM一楼中北', N'OEM植入物', N'最大加工直径32mm.主轴转速200-10000主轴最大移动207mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (676, N'cc4c66c2-c13c-41dd-9b50-040d6747db29', N'1104', N'折弯机', N'LINK-FORM', N'C&A', N'241-03', N'2021.2', NULL, NULL, N'B类', NULL, 1, N'N/A', N'OEM二楼中南', N'OEM植入物', NULL, 0, 0, 134, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (677, N'7c114056-d424-4a0d-a92e-c25a794b28be', N'1107', N'深孔钻', N'K25-1-500', N'上海宁远精密机械', N'2012758', N'2021.3', 40, 5, N'A类', 65.8000, 1, N'N/A', N'OEM一楼东南', N'OEM器械 ', N'6-25,500mm,4000r,', 0, 0, 98, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (678, N'ad03c4cf-06c2-4ac8-95a1-62ab1ed6ddb8', N'1113', N'纵切机床', N'SV32', N'STAR精密株式会社', N'248', N'2021.4', 8, 3.8, N'A类', NULL, 1, N'N/A', N'OEM一楼中北', N'OEM植入物', N'最大加工直径32mm.主轴转速200-10000主轴最大移动207mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (679, N'5df4ca71-afba-47bd-973c-cbd0cea9d79c', N'1116', N'车铣复合加工中心', N'U3000', N'大隈日本', N'234378', N'2021.5', 66, 17, N'A类', 441.0000, 1, N'N/A', N'OEM一楼正西', N'OEM器械 ', N'主轴6000r/m,动力刀10000, 最大车削386,移动260*590*100主轴通孔61,16把刀', 0, 0, 20, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (680, N'529dec56-470f-48ad-8928-4795ce1bfd16', N'1119', N'加工中心', N'GENOS M560V', N'大隈日本', N'234583', N'2021.5', 38.4, 7.7, N'A类', 203.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (681, N'd90cbb98-3d4c-4789-a4ee-81004e574512', N'1120', N'加工中心', N'GENOS M560V', N'大隈日本', N'234768', N'2021.5', 38.4, 7.7, N'A类', 203.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (682, N'eaec0976-f528-403b-a2dd-2c25c1b730b5', N'1124', N'深孔钻', N'K12-2-500', N'上海宁远精密机械', N'SH2105800', N'2021.4', 35, 3, N'A类', NULL, 1, N'N/A', N'OEM一楼东南', N'OEM器械 ', N'钻孔∮2-12,最大钻孔深度50-500,最高主轴转速8000,', 0, 0, 98, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (683, N'bb3d82e4-4415-4a04-a596-622791f49711', N'1134', N'加工中心', N'GENOS M560V', N'大隈日本', N'235387', N'2021.6', 38.4, 7.7, N'A类', 201.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (684, N'26d1e0ae-059e-4474-b5c4-f67aab70ef58', N'1135', N'加工中心', N'GENOS M560V', N'大隈日本', N'235388', N'2021.6', 38.4, 7.7, N'A类', 201.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (685, N'edbe137f-63a0-4f2b-8308-8f392c4a0895', N'1136', N'加工中心', N'GENOS M560V', N'大隈日本', N'235760', N'2021.6', 38.4, 7.7, N'A类', 201.0000, 1, N'N/A', N'OEM一楼西北', N'OEM器械 ', N'1050*560*460;15000r;32m/s 32把刀', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (686, N'732bec1f-0c13-4cb9-b335-e2aaeb3ae335', N'1139', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF3265', N'2021.8', 7.3, 2.5, N'A类', 178.0000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, N'ok2021.8.16') +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (687, N'178095a1-a479-446f-b168-f90fe16f6303', N'1140', N'纵切机床', N'M32-5M8', N'西铁城', N'P40156', N'2021.8', 14.5, 3.5, N'A类', 260.0000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (688, N'9974cd78-6e18-4d22-9fcc-d86a67959070', N'1141', N'纵切机床', N'M32-5M8', N'西铁城', N'P40157', N'2021.8', 14.5, 3.5, N'A类', 260.0000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (689, N'689e08a6-6b7d-4add-b6ff-6cd28cf61646', N'1142', N'纵切机床', N'M32-5M8', N'西铁城', N'P40158', N'2021.8', 14.5, 3.5, N'A类', 260.0000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (690, N'f8eec244-725f-4e20-9058-62329cd3270a', N'1143', N'纵切机床', N'M32-5M8', N'西铁城', N'P40159', N'2021.8', 14.5, 3.5, N'A类', 260.0000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (691, N'8e5cc534-94d2-4c18-ab85-ce8081ae1375', N'1144', N'纵切机床', N'M32-5M8', N'西铁城', N'P40160', N'2021.8', 14.5, 3.5, N'A类', 260.0000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (692, N'45ac4bd7-bfe2-4ad0-9784-0c4f96788b2c', N'1149', N'纵切机床', N'L20E-2M12', N'西铁城', N'QF3384', N'2021.11', 7.3, 2.5, N'A类', 126.5000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (693, N'b18d218e-c75c-4571-bc85-30110127e035', N'1150', N'纵切机床', N'L20E-2M12', N'西铁城', N'QF3385', N'2021.11', 7.3, 2.5, N'A类', 126.5000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (694, N'3aae49a5-5a07-46e5-8ca2-3a841179d27d', N'1151', N'纵切机床', N'L20E-2M12', N'西铁城', N'QF3386', N'2021.11', 7.3, 2.5, N'A类', 126.5000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (695, N'1b4a917d-bad6-4fd1-a979-d0e4227acdca', N'1152', N'纵切机床', N'L20E-2M12', N'西铁城', N'QF3387', N'2021.11', 7.3, 2.5, N'A类', 126.5000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (696, N'688dcce9-725a-46f7-b2c1-d45ce1212d4c', N'1153', N'纵切机床', N'L20E-2M12', N'西铁城', N'QF3388', N'2021.11', 7.3, 2.5, N'A类', 126.5000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (697, N'f85d5917-22f7-491e-877d-6285129febd6', N'1157', N'纵切机床', N'L20E-2M12', N'西铁城', N'QF3405', N'2021.11', 7.3, 2.5, N'A类', 126.5000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (698, N'af5b04a5-0086-44f1-9dfe-c1397e6d278f', N'1158', N'纵切机床', N'L20E-2M12', N'西铁城', N'QF3406', N'2021.11', 7.3, 2.5, N'A类', 126.5000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (699, N'c5043775-e7c2-456e-9b89-ca44c2d07e5d', N'1159', N'纵切机床', N'L20E-2M12', N'西铁城', N'QF3407', N'2021.11', 7.3, 2.5, N'A类', 126.5000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (700, N'd8b67665-37e0-4315-a559-47d278e8d184', N'1160', N'纵切机床', N'L20E-2M12', N'西铁城', N'QF3408', N'2021.11', 7.3, 2.5, N'A类', 126.5000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (701, N'c752609b-8e98-44c5-9d02-4b6f4cc89e8b', N'1168', N'纵切机床', N'M32-5M8', N'西铁城', N'P40178', N'2021.12', 14.5, 3.5, N'A类', 250.8000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (702, N'196739d5-0951-444b-8119-cf9b2a3e2776', N'1169', N'纵切机床', N'M32-5M8', N'西铁城', N'P40179', N'2021.12', 14.5, 3.5, N'A类', 250.8000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (703, N'dfc6f430-7825-497a-b19b-d35ce07ae264', N'1170', N'纵切机床', N'M32-5M8', N'西铁城', N'P40180', N'2021.12', 14.5, 3.5, N'A类', 250.8000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (704, N'dad4d424-9125-4a68-a8c3-fe457905dd45', N'1171', N'纵切机床', N'M32-5M8', N'西铁城', N'P40181', N'2021.12', 14.5, 3.5, N'A类', 250.8000, 1, N'N/A', N'OEM一楼中北', N'OEM器械 ', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (705, N'59efdc18-dd12-4219-a817-d3de01abd7b3', N'1182', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF3680', N'2022.1', 7.3, 2.5, N'A类', 147.0000, 1, N'N/A', N'OEM二楼正西', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动205mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (706, N'ee3aea6b-107d-4bfa-8ecd-3757cac21cd2', N'1185', N'无心磨床', N'RC-12S', N'荣光机械', N'21805', N'2022.2', NULL, NULL, N'B类', 41.9800, 1, N'N/A', N'OEM一楼东', N'OEM器械 ', NULL, 0, 0, 112, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (707, N'5c46f2c7-7ea4-4d41-9565-7fd3823cf00b', N'1195', N'安川机械手', N'ERAR-1000-06VXH25-A10-C', N'苏州摩尔法', N'2561019-2302-1', N'2022.4', 2.5, 2.48, N'B类', 118.8300, 1, N'N/A', N'OEM二楼(三坐标室)', N'OEM植入物', N'可动范围S轴(旋转)-170°~ +170°臂展L+U+B:100%=1440mm*9000', 0, 0, 14, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (708, N'b2caa602-ab57-4dd2-b99d-76b2d4f5c46c', N'1204', N'激光打标机', N'EP-IRPS20', N'大族激光', N'KDDN4522030451', N'2022.10', 3, 0.57, N'A类', 84.8000, 1, N'N/A', N'OEM二楼打标间', N'OEM后处理 ', N'标记范围:160mm×160mm 工作距离:192mm ±5mm 标记线速度:≤7000mm/ s 功率稳定性(8h):< ±1% rms 脉冲重复频率:50kHz~1000kHz', 0, 0, 54, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (709, N'14b58263-a2e9-412a-8f9d-69b8b5afaad5', N'1206', N'热循环烘箱', N'CX64', N'吴江市创新烘箱制造有限公司', N'220321', N'2022.7', 6, 0.1, N'B类', 0.7800, 1, N'N/A', N'OEM一楼东北', N'OEM后处理 ', N'65*60*50cm', 0, 0, 93, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-08-05T13:37:08.097' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (710, N'4174a774-cdcb-445a-92ca-a9a8eac4e71d', N'1207', N'热循环烘箱', N'CX64', N'吴江市创新烘箱制造有限公司', N'220322', N'2022.7', 6, 0.1, N'B类', 0.7800, 1, N'N/A', N'OEM一楼东北', N'OEM后处理 ', N'65*60*50cm', 0, 0, 93, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-08-05T15:45:07.963' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (711, N'a07bb235-b227-41c6-b243-693b8f87de2e', N'1208', N'热循环烘箱', N'CX64', N'吴江市创新烘箱制造有限公司', N'220323', N'2022.7', 6, 0.1, N'B类', 0.7800, 1, N'N/A', N'OEM一楼东北', N'OEM后处理 ', N'65*60*50cm', 0, 0, 93, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (712, N'08365f17-72b4-440f-b28e-cc004bd2bcf0', N'1211', N'车削中心', N'Elite 51M Ultra II', N'哈挺精密机械(嘉兴)有限公司', N'EMEC2DJ075', N'2022.6', 23.8, 2.8, N'A类', 92.0000, 1, N'N/A', N'OEM一楼', N'OEM器械 ', N'主轴最大棒料直径51mm, 最大加工直径263mm,146*406mm行程,5000r/m', 0, 0, 22, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (713, N'cd12a2bd-1807-4a59-8d63-373edc61e52b', N'1218', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4031', N'2022.7', 7.3, 2.5, N'A类', 147.2000, 1, N'2022/7-2023/7', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (714, N'c44e1eff-9805-4a08-a1fb-e212cd3e4f21', N'1219', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4032', N'2022.7', 7.3, 2.5, N'A类', 147.2000, 1, N'2022/7-2023/7', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (715, N'429560cf-4a2e-431d-b224-04154509cc8e', N'1220', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4033', N'2022.7', 7.3, 2.5, N'A类', 147.2000, 1, N'2022/7-2023/7', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (716, N'4d91b6d3-1384-444c-b9f7-849aca5b6e7f', N'1223', N'盐雾试验箱', N'LRHS-412-RY', N'上海林频仪器股份有限公司', N'LP22-1524', N'2022.9', 3, 0.115, N'B类', 4.0000, 1, N'2022/8-2023/8', N'OEM二楼', N'OEM后处理', N'750*1100*500', 0, 0, 127, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (717, N'5191b859-b6d4-46c2-ad9e-965c8dc30653', N'1224', N'生化培养箱', N'OBY-X160-SE1', N'欧邦电子', N'OBY-X160-SE1', N'2022.9', 0.45, 0.05, N'B类', 0.3663, 1, N'2022/8-2023/2', N'OEM二楼', N'OEM辅料库', N'温度-25°--105°AC90-264V(50-60Hz)', 0, 0, 100, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (718, N'85077266-8a5a-4cbc-baba-d454a6398d79', N'1225', N'纵切机床', N'M32-5M8', N'西铁城', N'P40243', N'2022.8', 14.5, 3.5, N'A类', 212.7000, 1, N'2022/8/29-2023/8/29', N'OEM一楼', N'OEM器械', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (719, N'554bafbc-4c95-428e-a0fe-79beac94b543', N'1226', N'纵切机床', N'M32-5M8', N'西铁城', N'P40244', N'2022.8', 14.5, 3.5, N'A类', 212.7000, 1, N'2022/8/29-2023/8/29', N'OEM一楼', N'OEM器械', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (720, N'a527d91d-cc9a-4a62-b6db-76f7aa7af7e3', N'1227', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-245264', N'2022.9', 40, 7.7, N'A类', 99.8000, 1, N'2022/9-2023/9', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (721, N'a4afbcfd-efd7-4337-bf39-d5d99ab53a47', N'1228', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-245265 ', N'2022.9', 40, 7.7, N'A类', 99.8000, 1, N'2022/9-2023/9', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (722, N'e5f454b3-a7ba-4bad-aa8b-5a0717eb8936', N'1229', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-245266', N'2022.9', 40, 7.7, N'A类', 99.8000, 1, N'2022/9-2023/9', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (723, N'e121fbd2-d15c-4896-8c23-da4aa12e40b0', N'1232', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-245267', N'2022.10', 40, 7.7, N'A类', 99.8000, 1, N'2022/9-2023/9', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (724, N'ec023075-077a-4509-88a5-29014590e6a0', N'1233', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-245268', N'2022.10', 40, 7.7, N'A类', 99.8000, 1, N'2022/9-2023/9', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (725, N'8513b397-646a-458b-931b-92c447a8cd8a', N'1234', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-245596', N'2022.10', 40, 7.7, N'A类', 99.8000, 1, N'2022/9-2023/9', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (726, N'f2a8ef87-b66c-4de1-9936-19981df962c7', N'1235', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-245597', N'2022.10', 40, 7.7, N'A类', 99.8000, 1, N'2022/9-2023/9', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (727, N'34a5a244-1051-4201-b5c7-cf9df04bc300', N'1237', N'深孔打磨机', N'N/A', N'美敦力', N'N/A', N'2022.11', 2, 1.5, N'B类', 12.0000, 1, N'N/A', N'OEM二楼', N'OEM器械', N'N/A', 0, 0, 97, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (728, N'17d9aef9-d4e4-4e4f-9774-8b0236a3aa5a', N'1238', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4170', N'2022.10', 7.3, 2.5, N'A类', 147.2000, 1, N'2022/10-2023/10', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (729, N'2834a781-224b-4165-a940-fbd5bf118060', N'1239', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4171', N'2022.10', 7.3, 2.5, N'A类', 147.2000, 1, N'2022/10-2023/10', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (730, N'd8d7dd6c-91ac-498f-907b-6cdebc896a48', N'1240', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4172', N'2022.10', 7.3, 2.5, N'A类', 147.2000, 1, N'2022/10-2023/10', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (731, N'7a4e1ef4-0c33-4201-af89-f99eef11ec24', N'1241', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4173', N'2022.10', 7.3, 2.5, N'A类', 147.2000, 1, N'2022/10-2023/10', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (732, N'62146c68-74a6-4f7c-a618-b91fcd768160', N'1242', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4174', N'2022.10', 7.3, 2.5, N'A类', 147.2000, 1, N'2022/10-2023/10', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (733, N'c51b133e-91b7-4aef-aba9-a58b17075f42', N'1246', N'焊道处理机', N'AX-06K', N'清道夫', N'AX-06-08', N'2022.11', 3.5, 0.0195, N'B类', 0.3336, 1, N'2022/10/08-2023/10/07', N'OEM二楼', N'OEM器械', N'33*25*38CM', 0, 0, 48, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (734, N'fdd7abb6-3c88-4c29-a627-4562ad9fc4ae', N'1247', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-245598', N'2022.11', 40, 7.7, N'A类', 99.8000, 1, N'2022/10-2023/10', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (735, N'72608f1c-2bbb-41db-a86e-dffd58359781', N'1256', N'锯床', N'G330', N'晨龙', N'2212G31279', N'2022.12', 4.7, 3.5, N'B类', 13.3560, 1, N'2022/12-2023/12', N'KH一楼仓库', N'OEM器械 ', N'330mm切割齿距', 0, 0, 62, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (736, N'3c325599-26b5-4c13-a8b9-91a3592eeb86', N'1258', N'纵切机床', N'M32-5M8', N'西铁城', N'P40306', N'2023.1', 14.5, 3.5, N'A类', 212.7000, 1, N'2022/12-2023/12', N'OEM一楼', N'OEM器械', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (737, N'52b0da4d-80bc-49b6-acb9-e3d85c663556', N'1259', N'纵切机床', N'M32-5M8', N'西铁城', N'P40307', N'2023.1', 14.5, 3.5, N'A类', 212.7000, 1, N'2022/12-2023/12', N'OEM一楼', N'OEM器械', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (738, N'55a8dca9-f132-4355-9c5e-3f4e8baedfce', N'1260', N'线切割机床', N'HQ-500GS3', N'汉奇', N'W50GS322057', N'2022.12', 2.8, 2.5, N'B类', 14.5000, 1, N'2022/12-2023/12', N'OEM二楼', N'OEM器械 ', N'500*400*260', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (739, N'cbc9d19c-0846-4b11-83d3-73e06168cfce', N'1261', N'线切割机床', N'HQ-500GS3', N'汉奇', N'W50GS322058', N'2022.12', 2.8, 2.5, N'B类', 14.5000, 1, N'2022/12-2023/12', N'OEM二楼', N'OEM器械 ', N'500*400*260', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (740, N'1dc2e873-2539-4b41-9da3-6503f7adf86c', N'1262', N'线切割机床', N'HQ-500GS3', N'汉奇', N'W50GS322059', N'2022.12', 2.8, 2.5, N'B类', 14.5000, 1, N'2022/12-2023/12', N'OEM二楼', N'OEM器械 ', N'500*400*260', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (741, N'9c67e1ee-5ddf-481f-aea1-d719fc8fcff6', N'1265', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4213', N'2023.2', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/2-2024/2', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (742, N'b0347a6f-8972-435c-b003-b09a31c3b842', N'1266', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4362', N'2023.2', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/2-2024/2', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (743, N'aeb097b2-7c61-47ad-b000-3535c65fa02a', N'1267', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4363', N'2023.2', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/2-2024/2', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (744, N'f6b1ea43-5977-480e-8061-c3a5e93aca53', N'1268', N'加工中心', N'GENOS M560V', N'大隈日本', N' PJ-248892', N'2023.2', 40, 7.7, N'A类', 99.8000, 1, N'2023/2-2024/2', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (745, N'c79ee024-5359-4e48-b15f-5f518a3d2a09', N'1269', N'加工中心', N'GENOS M560V', N'大隈日本', N' PJ-248893', N'2023.2', 40, 7.7, N'A类', 99.8000, 1, N'2023/2-2024/2', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (746, N'7870b95c-8c07-4d6d-91d6-30d344db400e', N'1270', N'加工中心', N'GENOS M560V', N'大隈日本', N' PJ-248894', N'2023.2', 40, 7.7, N'A类', 99.8000, 1, N'2023/2-2024/2', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (747, N'37f9e8b1-a2ca-4c69-bb70-e8ee976aada8', N'1271', N'加工中心', N'GENOS M560V', N'大隈日本', N' PJ-248895', N'2023.2', 40, 7.7, N'A类', 99.8000, 1, N'2023/2-2024/2', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (748, N'255afb9b-d83f-4132-b0b6-39e75472ba93', N'1272', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-248897', N'2023.3', 40, 7.7, N'A类', 99.8000, 1, N'2023/3-2024/3', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (749, N'fe9aeabf-2e68-4475-8172-8d94dbaf8747', N'1273', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-248898', N'2023.3', 40, 7.7, N'A类', 99.8000, 1, N'2023/3-2024/3', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (750, N'6f5bc202-1581-4169-8d3b-fe73fc495629', N'1274', N'加工中心', N'GENOS M560V', N'大隈日本', N' PJ-248901', N'2023.3', 40, 7.7, N'A类', 99.8000, 1, N'2023/3-2024/3', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (751, N'fc64f8db-6281-4145-ab37-24dfe5c1ee6c', N'1275', N'加工中心', N'GENOS M560V', N'大隈日本', N' PJ-248902', N'2023.3', 40, 7.7, N'A类', 99.8000, 1, N'2023/3-2024/3', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (752, N'ea631893-8937-4a9a-998f-377c6878c31b', N'1276', N'加工中心', N'GENOS M560V', N'大隈日本', N' PJ-249673', N'2023.3', 40, 7.7, N'A类', 99.8000, 1, N'2023/3-2024/3', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (753, N'5d64139b-e898-48fc-9789-71e883742543', N'1277', N'加工中心', N'GENOS M560V', N'大隈日本', N' PJ-249674', N'2023.3', 40, 7.7, N'A类', 99.8000, 1, N'2023/3-2024/3', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (754, N'9d57c4bd-5206-4a99-bfa6-661d1a204dc1', N'1278', N'纵切机床', N'M32-5M8', N'西铁城', N'P40357', N'2023.3', 14.5, 3.5, N'A类', 212.7000, 1, N'2023/3-2024/3', N'OEM一楼', N'OEM器械', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (755, N'eecb6c92-8876-4fb3-9bd3-4504f495302f', N'1279', N'纵切机床', N'M32-5M8', N'西铁城', N'P40358?', N'2023.3', 14.5, 3.5, N'A类', 212.7000, 1, N'2023/3-2024/3', N'OEM一楼', N'OEM器械', N'最大加工直径32mm.主副轴转速8000主轴最大移动320', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (756, N'188282b8-6163-475c-8e12-c42fb7fa42ef', N'1280', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-249675', N'2023.6', 40, 7.7, N'A类', 99.8000, 1, N'2023/3-2024/3', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (757, N'1d431ce8-e704-4381-812e-7e0f30c91f3d', N'1281', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-249676', N'2023.6', 40, 7.7, N'A类', 99.8000, 1, N'2023/3-2024/3', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (758, N'62bbc698-4fb4-4833-b3e9-28ad42825ee8', N'1288', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-249677', N'2023.4', 40, 7.7, N'A类', 100.8000, 1, N'2023/4-2024/4', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (759, N'686d7af9-3ea8-4bed-9152-20a6ccd8fe0e', N'1289', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-249678', N'2023.4', 40, 7.7, N'A类', 101.8000, 1, N'2023/4-2024/4', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (760, N'717e9dab-bff3-43b3-b1ae-4f656bfbbd0d', N'1290', N'加工中心', N'GENOS M560V', N'大隈日本', N'PJ-249679', N'2023.4', 40, 7.7, N'A类', 102.8000, 1, N'2023/4-2024/4', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (761, N'2a45a231-3aba-42b1-b839-5cee1c74737c', N'1291', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4579', N'2023.4', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/4-2024/4', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (762, N'3a2e6686-033e-4bfa-a8ed-99169d60caa1', N'1292', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4580', N'2023.4', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/4-2024/4', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (763, N'19b7d208-abd6-4d11-843d-97a310180c8e', N'1293', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4581', N'2023.4', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/4-2024/4', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (764, N'e02938da-748b-4d74-9333-353518871648', N'1294', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4582', N'2023.4', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/4-2024/4', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (765, N'adc00807-9a50-4dd5-87e2-74c26b7d51fd', N'1295', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4583', N'2023.4', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/4-2024/4', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (766, N'63e5e274-8b07-4a7b-94b8-04dc284c9608', N'1296', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4584', N'2023.4', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/4-2024/4', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (767, N'b5991441-840f-4ca2-86cc-52357d660a0a', N'1297', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4585', N'2023.4', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/4-2024/4', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (768, N'8697998f-4a86-4bd7-bb63-99c092573087', N'1298', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4586', N'2023.4', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/4-2024/4', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (769, N'440c0037-9eeb-4bf6-a948-d3382e76efc8', N'1299', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4589', N'2023.4', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/4-2024/4', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (770, N'4592effc-9f29-4474-8023-11158a33d8f4', N'1300', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4590', N'2023.4', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/4-2024/4', N'OEM二楼', N'OEM植入物', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (771, N'a93470c8-c0f9-4f2a-80e3-45b012f22612', N'1301', N'加工中心', N'GENOS M560V', N'大隈日本', N'249680', N'2023.4', 40, 7.7, N'A类', 99.8000, 1, N'2023/4-2024/4', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (772, N'33e6e296-a9cf-4113-9592-f2b01f673894', N'1302', N'加工中心', N'GENOS M560V', N'大隈日本', N'249681', N'2023.4', 40, 7.7, N'A类', 99.8000, 1, N'2023/4-2024/4', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (773, N'77ff44c8-11ed-4395-b31e-0aea06a39c7a', N'1303', N'车削中心', N'BNE-51MYY', N'西铁城', N'EG5149', N'2023.6', 47, 8.25, N'A类', 218.7000, 1, N'2023/6-2024/6', N'OEM一楼', N'OEM器械 ', N'最大加工直径51mm', 0, 0, 22, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (774, N'fff20e38-0495-45d0-a836-69e97bb47388', N'1304', N'折弯机', N'LINK-FORM', N'C&A', N'754-01', N'2023.4', NULL, NULL, N'B类', NULL, 1, N'2023/4-2024/4', N'OEM二楼中南', N'OEM器械 ', N'N/A', 0, 0, 134, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (775, N'5e38a7e1-616f-4796-90ff-6f2dffd1c9d9', N'1305', N'加工中心', N'GENOS M560V', N'大隈日本', N'252645', N'2023.5', 40, 7.7, N'A类', 99.8000, 1, N'2023/5-2024/5', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (776, N'3dfde1f0-6fa3-4efa-925d-4f0f411882e7', N'1306', N'加工中心', N'GENOS M560V', N'大隈日本', N'252646', N'2023.5', 40, 7.7, N'A类', 99.8000, 1, N'2023/5-2024/5', N'OEM一楼', N'OEM器械 ', N'380V 3 P 50HZ 40KVA 112A 2.5 KA ', 0, 0, 60, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (777, N'fa0b19ef-cb74-4370-a0b6-c31cca854d42', N'1310', N'伺服压力机', N'SF-0.5T', N'祺锐科技', N'2001008', N'2023.5', 0.4, NULL, N'B类', NULL, 1, N'2023/5-2024/5', N'OEM三楼', N'后处理', N'5KN', 0, 0, 105, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (778, N'ac6041f7-3e6f-48a7-841f-2b0f3d944cd4', N'1312', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4587', N'2023.5', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/5-2024/5', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (779, N'1dfe392f-a3cf-439b-99a3-a522ecea8b99', N'1313', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4588', N'2023.5', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/5-2024/5', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (780, N'd8abfd0b-1e8b-480f-ac2d-6ce2b58392b4', N'1314', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4591', N'2023.5', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/5-2024/5', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (781, N'00ab6d9b-5d4e-493a-980d-e7fb59f7c377', N'1315', N'纵切机床', N'L20E-2M10', N'西铁城', N'QF4592', N'2023.5', 7.3, 2.5, N'A类', 147.2000, 1, N'2023/5-2024/5', N'OEM二楼', N'OEM器械 ', N'最大加工直径20mm.主轴转速200-10000主轴最大移动206mm', 0, 0, 149, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (782, N'66869d38-5d20-4b33-827b-e861b4661ac1', N'1316', N'激光打标机', N'FOBA M3000-P Y.0200', N'德国ALLTEC', N'MY2304/028', N'2023.7', 2, 0.7, N'A类', NULL, 1, N'2023/7-2024/7', N'OEM三楼', N'OEM后处理', NULL, 0, 0, 54, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (783, N'73e6ce83-f318-4d6e-bd77-8e5865e88256', N'1317', N'线切割机床', N'HQ-500GS3', N'汉奇', N'W50GS323040', N'2023.6', 2.8, 2.5, N'B类', 14.5000, 1, N'2023/6-2024/6', N'OEM二楼', N'OEM器械', N'500*400*260', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (784, N'09bf9471-130c-43b6-b2f8-35e823daa563', N'1318', N'线切割机床', N'HQ-500GS3', N'汉奇', N'W50GS323041', N'2023.6', 2.8, 2.5, N'B类', 14.5000, 1, N'2023/6-2024/6', N'OEM二楼', N'OEM器械', N'500*400*260', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (785, N'b511ab7a-316d-4406-8650-445ad31b5a92', N'1319', N'线切割机床', N'HQ-500GS3', N'汉奇', N'W50GS323042', N'2023.6', 2.8, 2.5, N'B类', 14.5000, 1, N'2023/6-2024/6', N'OEM二楼', N'OEM器械', N'500*400*260', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (786, N'652cca0b-7a82-4565-b4e8-53276bb4a292', N'1320', N'线切割机床', N'HQ-500GS3', N'汉奇', N'W50GS323043', N'2023.6', 2.8, 2.5, N'B类', 14.5000, 1, N'2023/6-2024/6', N'OEM二楼', N'OEM器械', N'500*400*260', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (787, N'978ca247-1223-4ad8-bc62-3af6179d0d5f', N'1321', N'线切割机床', N'HQ-500GS3', N'汉奇', N'W50GS323044', N'2023.6', 2.8, 2.5, N'B类', 14.5000, 1, N'2023/6-2024/6', N'OEM二楼', N'OEM器械', N'500*400*260', 0, 0, 120, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (788, N'4016e69d-7c7e-4939-b057-acf9beeb8520', N'1331', N'真空时效炉', N'VTH 100 StCC', N'爱协林热处理系统(北京)有限公司', N'2260', NULL, 120, 3.9, N'B类', 138.0000, 1, N'1年', N'OEM 1楼', NULL, N'最高温度: 750 ℃ 最大装炉量:200 Kg 极限真空度:≤8x10-4 Pa 压升率:<0.4 Pa/h 最大充气压力:1.95 Bar', 0, 0, 138, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (789, N'7a7c8a57-99e0-4252-99dc-1a7eb587fd7d', N'1332', N'真空油淬炉', N'VOD 100 GrCC', N'爱协林热处理系统(北京)有限公司', N'2276', NULL, 200, 18, N'B类', 122.0000, 1, N'1年', N'OEM 1楼', NULL, N'最高温度: 1320 ℃ 最大装炉量:200 Kg 热室极限真空度:≤4x10-1 Pa 压升率:<0.4 Pa/h 最高冷气压力:2 Bar', 0, 0, 139, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (790, N'6cf15174-1031-4ad4-ba1d-272804ebd83d', N'1336', N'车削中心', N'BNE-51MYY', N'西铁城', NULL, NULL, 47, 8.25, N'A类', 218.7000, 1, N'1年', N'OEM一楼', N'OEM器械 ', N'最大加工直径51mm', 0, 0, 22, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (791, N'f295f771-8fa2-4af1-8e81-5888a51ba085', N'1338', N'斑马标签打印机', N'ZT510', N'斑马ZEBRA', N'34J223900459', N'2024.2', NULL, 0.0227, N'B类', 0.8900, 1, N'N/A', N'三楼器械终检', NULL, NULL, 0, 0, 15, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 0, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (792, N'5db2d024-eb0d-419f-a7cb-0f55ec95e4b7', N'1339', N'斑马标签打印机', N'105SL Plus', N'斑马ZEBRA', N'69J181200892', N'2024.2', NULL, 0.0227, N'B类', NULL, 1, N'N/A', N'三楼器械终检', NULL, NULL, 0, 0, 15, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 0, CAST(N'2024-08-06T14:41:22.593' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (793, N'45c79f42-29d3-4f0d-9bba-3820d017541b', N'1340', N'得力条码标签打印机', N'DL-888T', N'得力deli', N'62502800100', N'45020', NULL, 0.0018, N'B类', 0.0664, 1, N'在用', N'三楼植入物终检', NULL, NULL, 0, 0, 29, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (794, N'79dcffd2-b100-4ca8-a258-ad170b58a555', N'1342', N'喷砂机', N'9060A', N'吉川机械', N'PS2401074', N'N/A', 1.6, 0.5, N'B类', 1.0000, 1, N'2024/1/23-2025/1/23', N'OEM后处理', N'OEM后处理', N'220V 50HZ', 0, 0, 68, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +INSERT [dbo].[DriveInformation] ([AutoID], [GUID], [EquipmentID], [EquipmentName], [Specification], [Manufacturer], [SerialNumber], [UsingDate], [Totalcapacity], [Weight], [EquipmentCategory], [EquipmentOriginalvalue], [EquipmentStatus], [WarrantyPeriod], [InstallationLocation], [OwningUnit], [OperatingParameters], [MaintenanceFormVersion], [MaintenanceAMFormVersion], [Route], [CreatDate], [CreatUser], [ChangeDate], [ChangeUser], [Remarks]) VALUES (795, N'1af5d4e8-47ca-44d6-9dac-aaa1725ddc68', N'1343', N'喷砂机', N'9060A', N'吉川机械', N'PS2401075', N'N/A', 1.6, 0.5, N'B类', 1.0000, 1, N'2024/1/23-2025/1/23', N'OEM后处理', N'OEM后处理', N'220V 50HZ', 0, 0, 68, CAST(N'2024-04-24T10:59:50.887' AS DateTime), 1, CAST(N'2024-07-12T15:06:05.510' AS DateTime), 1, NULL) +GO +SET IDENTITY_INSERT [dbo].[DriveInformation] OFF +GO diff --git a/DeviceRepair.DataAccess/Script/5.0/Func/func_GetDailyPlanProccScheduleDetail.sql b/DeviceRepair.DataAccess/Script/5.0/Func/func_GetDailyPlanProccScheduleDetail.sql index 79bd430..493c382 100644 --- a/DeviceRepair.DataAccess/Script/5.0/Func/func_GetDailyPlanProccScheduleDetail.sql +++ b/DeviceRepair.DataAccess/Script/5.0/Func/func_GetDailyPlanProccScheduleDetail.sql @@ -43,22 +43,17 @@ BEGIN FROM dbo.DriveMaintencePlan WHERE AutoID = @PlanID; - /* 是否存在历史点检表 */ + /* 是否存在历史点检表 */ IF EXISTS ( SELECT 1 - FROM DeviceMaintenanceLog.dbo.DeviceLog - INNER JOIN dbo.DriveMaintencePlan - ON DriveMaintencePlan.EquipmentID = DeviceLog.EquipmentAutoID - WHERE DriveMaintencePlan.AutoID = @PlanID + FROM dbo.MaintenanceRecord WITH (NOLOCK) + WHERE PlanPrimaryID = @PlanID ) BEGIN - SELECT @FormID = FormAutoID - FROM DeviceMaintenanceLog.dbo.DeviceLog - INNER JOIN dbo.DriveMaintencePlan - ON DriveMaintencePlan.EquipmentID = DeviceLog.EquipmentAutoID - WHERE DriveMaintencePlan.AutoID = @PlanID - ORDER BY OperationDate ASC; + SELECT @FormID = FormPrimaryID + FROM dbo.MaintenanceRecord WITH (NOLOCK) + WHERE PlanPrimaryID = @PlanID END; ELSE BEGIN @@ -74,10 +69,10 @@ BEGIN FROM dbo.MaintenanceFormVersion WHERE AutoID = @FormID; - IF (@TemplateJson IS NULL OR @TemplateJson = '') - BEGIN - RETURN; - END + IF (@TemplateJson IS NULL OR @TemplateJson = '') + BEGIN + RETURN; + END; /* 进度信息 */ INSERT INTO @CompleteStausView @@ -107,10 +102,10 @@ BEGIN WHERE PlanPrimaryID = @PlanID ) t3 ON (t1.number + 1) = t3.Day - AND t3.Banci = t2.Banci + AND t3.Banci = t2.Banci WHERE t1.type = 'p' AND t1.number <= DATEDIFF(DAY, @PlanStartDate, EOMONTH(@PlanStartDate)) AND (t1.number + 1) = t2.MaintenanceDay; - RETURN; + RETURN; END; diff --git a/DeviceRepair.DataAccess/Script/5.0/Proc/proc_EquipmentPlanIsComplete.sql b/DeviceRepair.DataAccess/Script/5.0/Proc/proc_EquipmentPlanIsComplete.sql index 6d14e5f..0fb6e70 100644 --- a/DeviceRepair.DataAccess/Script/5.0/Proc/proc_EquipmentPlanIsComplete.sql +++ b/DeviceRepair.DataAccess/Script/5.0/Proc/proc_EquipmentPlanIsComplete.sql @@ -24,36 +24,40 @@ BEGIN DECLARE @planId INT, @devid INT, @MaintenanceType NVARCHAR(50), - @MaintenanceMonth INT, - @Msg NVARCHAR(MAX); - - /* 判断是否跳过当日检测 */ - IF EXISTS(SELECT * FROM dbo.DriveMaintencePlan pln - INNER JOIN dbo.DriveInformation dev ON pln.EquipmentID = dev.AutoID - INNER JOIN dbo.EquipmentJumpPlanCheck jum ON jum.EquipmentAutoID = dev.AutoID - WHERE pln.AutoID = @planId AND DATEDIFF(DAY, jum.CheckDate, GETDATE()) = 0 ) - BEGIN - RETURN; - END + @MaintenanceMonth INT; + /* 检查是否当日跳过校验 */ + IF EXISTS + ( + SELECT * + FROM dbo.DriveMaintencePlan pln WITH (NOLOCK) + INNER JOIN dbo.DriveInformation dev WITH (NOLOCK) + ON pln.EquipmentID = dev.AutoID + INNER JOIN dbo.EquipmentJumpPlanCheck jum WITH (NOLOCK) + ON jum.EquipmentAutoID = dev.AutoID + WHERE pln.AutoID = @planId + AND DATEDIFF(DAY, jum.CheckDate, GETDATE()) = 0 + ) + BEGIN + RETURN; + END; + /* 游标循环 */ DECLARE cursor_plan CURSOR FOR SELECT pl.AutoID, dev.AutoID, pl.MaintenanceType, pl.MaintenanceMonth - FROM dbo.DriveMaintencePlan pl - INNER JOIN dbo.DriveInformation dev + FROM dbo.DriveMaintencePlan pl WITH (NOLOCK) + INNER JOIN dbo.DriveInformation dev WITH (NOLOCK) ON pl.EquipmentID = dev.AutoID WHERE dev.EquipmentID = @EquipmentDisplayID AND pl.PlanStatus = 'A' AND pl.MaintenanceType IS NOT NULL - AND pl.MaintenanceYear = YEAR(GETDATE()) - AND pl.MaintenanceMonth <= MONTH(GETDATE()); + AND DATEFROMPARTS(pl.MaintenanceYear, pl.MaintenanceMonth, 1) + BETWEEN DATEADD(MONTH, -2, GETDATE()) AND GETDATE(); OPEN cursor_plan; - - FETCH NEXT FROM cursor_plan INTO @planId, @devid, @@ -67,8 +71,7 @@ BEGIN Banci, IsComplete INTO #ScheduleDetail - FROM func_GetDailyPlanProccScheduleDetail(@planId); - + FROM dbo.func_GetDailyPlanProccScheduleDetail(@planId); /* 没有获取到点检表信息 */ IF NOT EXISTS (SELECT 1 FROM #ScheduleDetail) @@ -92,57 +95,73 @@ BEGIN END; ELSE BEGIN - /* 判断当日日保养完成进度 */ - IF (DATEPART(HOUR, GETDATE()) > 12) + DECLARE @BanciName NVARCHAR(200); + SELECT @BanciName = COALESCE(@BanciName + ', ', '') + CASE Banci + WHEN 1 THEN + '早班' + WHEN 2 THEN + '中班' + ELSE + '夜班' + END + FROM #ScheduleDetail + WHERE MaintenanceDay = CAST(GETDATE() AS DATE) + AND Banci < @Banci + AND IsComplete = 0; + IF @BanciName IS NOT NULL BEGIN - /* 早班 */ + RAISERROR('设备:%s,当日存在未完成AM点检(%s)保养,请先完成保养 !', 16, 1, @EquipmentDisplayID, @BanciName); + RETURN -1; + END; + ELSE + BEGIN + /* 前班次已点检,判断当前班次点检情况 */ IF EXISTS ( SELECT 1 FROM #ScheduleDetail - WHERE DATEDIFF(DAY, MaintenanceDay, GETDATE()) = 0 - AND Banci = 1 + WHERE MaintenanceDay = CAST(GETDATE() AS DATE) + AND Banci = @Banci AND IsComplete = 0 ) BEGIN - RAISERROR('设备:%s,存在当日的早班保养未完成,请先完成保养 !', 16, 1, @EquipmentDisplayID); - RETURN -1; - END; - - IF (DATEPART(HOUR, GETDATE()) > 17) - BEGIN - - /* 中班 */ - IF EXISTS - ( - SELECT 1 - FROM #ScheduleDetail - WHERE DATEDIFF(DAY, MaintenanceDay, GETDATE()) = 0 - AND Banci = 2 - AND IsComplete = 0 - ) + /* 未点检 */ + DECLARE @firUseTime DATETIME; + SELECT @firUseTime = CreateOn + FROM dbo.DeviceUseRecord WITH (NOLOCK) + WHERE EquipmentId = @devid + AND Banci = @Banci + AND CheckDate = CAST(GETDATE() AS DATE); + IF @firUseTime IS NOT NULL BEGIN - RAISERROR('设备:%s,存在当日的中班保养未完成,请先完成保养 !', 16, 1, @EquipmentDisplayID); - RETURN -1; - END; - - IF (DATEPART(HOUR, GETDATE()) > 22) - BEGIN - /* 晚班 */ - IF EXISTS - ( - SELECT 1 - FROM #ScheduleDetail - WHERE DATEDIFF(DAY, MaintenanceDay, GETDATE()) = 0 - AND Banci = 3 - AND IsComplete = 0 - ) + IF DATEDIFF(HOUR, @firUseTime, GETDATE()) > 4 BEGIN - RAISERROR('设备:%s,存在当日的夜班保养未完成,请先完成保养 !', 16, 1, @EquipmentDisplayID); + RAISERROR('设备:%s,当前班次未完成AM点检保养,请先完成保养 !', 16, 1, @EquipmentDisplayID); RETURN -1; - END; + END + ELSE + BEGIN + SET @Msg = '当前班次还未完成AM点检保养,请尽快处理!'; + END + END; + ELSE + BEGIN + /* 日保养提醒 */ + INSERT INTO dbo.DeviceUseRecord + ( + EquipmentId, + EquipmentDisplayId, + CheckDate, + Banci, + CreateBy, + CreateOn, + CreateClient + ) + VALUES + (@devid, @EquipmentDisplayID, CAST(GETDATE() AS DATE), @Banci, @CreateBy, + GETDATE(), @CreateClient); + SET @Msg = '当前班次还未完成AM点检保养,请尽快处理!'; END; - END; END; END; @@ -151,17 +170,20 @@ BEGIN END; ELSE BEGIN - IF NOT EXISTS - ( - SELECT 1 - FROM dbo.MaintenanceRecord - WHERE PlanPrimaryID = @planId - AND PlanType = @MaintenanceType - ) - BEGIN - RAISERROR('设备:%s,存在保养类型:%s ,未完成,请先完成保养 !', 16, 1, @EquipmentDisplayID, @MaintenanceType); - RETURN -1; - END; + IF @MaintenanceMonth < MONTH(GETDATE()) + BEGIN + IF NOT EXISTS + ( + SELECT 1 + FROM dbo.MaintenanceRecord + WHERE PlanPrimaryID = @planId + AND PlanType = @MaintenanceType + ) + BEGIN + RAISERROR('设备:%s,存在保养类型:%s ,未完成,请先完成保养 !', 16, 1, @EquipmentDisplayID, @MaintenanceType); + RETURN -1; + END; + END END; FETCH NEXT FROM cursor_plan @@ -173,27 +195,6 @@ BEGIN CLOSE cursor_plan; DEALLOCATE cursor_plan; - --/* 日保养提醒 */ - --SELECT dt.MaintenanceDay, - -- CASE - -- WHEN dt.Banci = 1 THEN - -- DATEADD(HOUR, 12, dt.MaintenanceDay) - -- WHEN dt.Banci = 2 THEN - -- DATEADD(HOUR, 17, dt.MaintenanceDay) - -- WHEN dt.Banci = 3 THEN - -- DATEADD(HOUR, 22, dt.MaintenanceDay) - -- END AS LastCompleteDate, - -- dt.Banci, - -- dt.IsComplete - --FROM dbo.DriveMaintencePlan pln - -- INNER JOIN dbo.DriveInformation dev - -- ON pln.EquipmentID = dev.AutoID - -- CROSS APPLY dbo.func_GetDailyPlanProccScheduleDetail(pln.AutoID) dt - --WHERE dev.EquipmentID = @EquipmentDisplayID - -- AND pln.MaintenanceType = 'Daily' - -- AND pln.MaintenanceYear = YEAR(GETDATE()) - -- AND pln.MaintenanceMonth = MONTH(GETDATE()) - -- AND DATEDIFF(DAY, GETDATE(), dt.MaintenanceDay) = 0; END TRY BEGIN CATCH IF OBJECT_ID('tempdb..#ScheduleDetail') IS NOT NULL @@ -217,4 +218,3 @@ BEGIN END; - diff --git a/DeviceRepair.Utils/DataExtend.cs b/DeviceRepair.Utils/DataExtend.cs index e26783a..e7a402a 100644 --- a/DeviceRepair.Utils/DataExtend.cs +++ b/DeviceRepair.Utils/DataExtend.cs @@ -94,7 +94,7 @@ namespace DeviceRepair.Utils public static DataTable toDataTable(this T item) { var tb = new DataTable(typeof(T).Name); - PropertyInfo[] props = typeof(T).GetProperties(BindingFlags.Public | BindingFlags.Instance); + PropertyInfo[] props = typeof(T).GetProperties(); foreach (PropertyInfo prop in props) { diff --git a/TsSFCDevice.Client.Biz/Impl/CommonRepository.cs b/TsSFCDevice.Client.Biz/Impl/CommonRepository.cs index c122457..82de89e 100644 --- a/TsSFCDevice.Client.Biz/Impl/CommonRepository.cs +++ b/TsSFCDevice.Client.Biz/Impl/CommonRepository.cs @@ -218,6 +218,34 @@ namespace TsSFCDevice.Client.Biz.Impl } } + /// + /// 获取附件图片 + /// + /// + /// + public byte[] GetAttachmentImageByte(int AutoID) + { + try + { + byte[] btResults = null; + ApiParameters?.Clear(); + ApiParameters.Add("AutoID", AutoID + ""); + + var Rtn = Utility.SfcBizService.CurrentSvc.ImgAttrGet(GetParameters(), out btResults); + if (Rtn.Code != 1 || btResults == null || btResults.Length == 0) + { + throw new Exception(Rtn.Message); + } + + return btResults; + } + catch (Exception ex) + { + log.Error(ex.Message, ex); + throw ex; + } + } + /// /// 文件上传 /// diff --git a/TsSFCDevice.Client.Biz/Impl/PlanRepository.cs b/TsSFCDevice.Client.Biz/Impl/PlanRepository.cs index 1e0c670..6e05ad4 100644 --- a/TsSFCDevice.Client.Biz/Impl/PlanRepository.cs +++ b/TsSFCDevice.Client.Biz/Impl/PlanRepository.cs @@ -600,12 +600,13 @@ namespace TsSFCDevice.Client.Biz.Impl /// /// /// - public APIResponseData Get_EquipmentPlanIsComplete(string EquipmentID) + public APIResponseData Get_EquipmentPlanIsComplete(string EquipmentID, int Banci) { try { ApiParameters?.Clear(); ApiParameters.Add("EquipmentID", EquipmentID); + ApiParameters.Add("Banci", Banci + ""); var Rtn = Utility.SfcBizService.CurrentSvc.Get_EquipmentPlanIsComplete(GetParameters()); return new APIResponseData { Code = Rtn.Code, Message = Rtn.Message }; diff --git a/TsSFCDevice.Client.Launch/Plan/PagePlanDetail.cs b/TsSFCDevice.Client.Launch/Plan/PagePlanDetail.cs index 9cbf43e..eee687c 100644 --- a/TsSFCDevice.Client.Launch/Plan/PagePlanDetail.cs +++ b/TsSFCDevice.Client.Launch/Plan/PagePlanDetail.cs @@ -81,7 +81,12 @@ namespace TsSFCDevice.Client.Launch.Plan MaintenanceRecordInfo record = CurrentData.Records?.FirstOrDefault(x => x.PlanPrimaryID == item.AutoID); item.CompleteDate = record?.CreateDate ?? null; item.EquipmentDisplayID = CurrentData.Dev.EquipmentID; - item.FormDisplayCode = Belong == EnumDeviceBelong.AM ? CurrentData.AM_FormCode : CurrentData.PM_FormCode; + + string UseVerCode = CurrentData.Records.FirstOrDefault(x => x.PlanPrimaryID == item.AutoID)?.FormVersionCode; + if (UseVerCode.IsNull()) + item.FormDisplayCode = Belong == EnumDeviceBelong.AM ? CurrentData.AM_FormCode : CurrentData.PM_FormCode; + else + item.FormDisplayCode = UseVerCode; } gridView1.IndicatorWidth = 50; diff --git a/TsSFCDevice.Client.Launch/Preserve/page_DriveMaintenance.Designer.cs b/TsSFCDevice.Client.Launch/Preserve/page_DriveMaintenance.Designer.cs index 3a5c13b..9d0ab06 100644 --- a/TsSFCDevice.Client.Launch/Preserve/page_DriveMaintenance.Designer.cs +++ b/TsSFCDevice.Client.Launch/Preserve/page_DriveMaintenance.Designer.cs @@ -29,54 +29,54 @@ private void InitializeComponent() { this.components = new System.ComponentModel.Container(); - DevExpress.XtraEditors.Controls.EditorButtonImageOptions editorButtonImageOptions1 = new DevExpress.XtraEditors.Controls.EditorButtonImageOptions(); + DevExpress.XtraEditors.Controls.EditorButtonImageOptions editorButtonImageOptions4 = new DevExpress.XtraEditors.Controls.EditorButtonImageOptions(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(page_DriveMaintenance)); + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject13 = new DevExpress.Utils.SerializableAppearanceObject(); + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject14 = new DevExpress.Utils.SerializableAppearanceObject(); + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject15 = new DevExpress.Utils.SerializableAppearanceObject(); + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject16 = new DevExpress.Utils.SerializableAppearanceObject(); + DevExpress.XtraEditors.Controls.EditorButtonImageOptions editorButtonImageOptions5 = new DevExpress.XtraEditors.Controls.EditorButtonImageOptions(); + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject17 = new DevExpress.Utils.SerializableAppearanceObject(); + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject18 = new DevExpress.Utils.SerializableAppearanceObject(); + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject19 = new DevExpress.Utils.SerializableAppearanceObject(); + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject20 = new DevExpress.Utils.SerializableAppearanceObject(); + DevExpress.XtraEditors.Controls.EditorButtonImageOptions editorButtonImageOptions1 = new DevExpress.XtraEditors.Controls.EditorButtonImageOptions(); DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject(); DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject(); DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject(); DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject(); - DevExpress.XtraEditors.Controls.EditorButtonImageOptions editorButtonImageOptions2 = new DevExpress.XtraEditors.Controls.EditorButtonImageOptions(); - DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject(); - DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject6 = new DevExpress.Utils.SerializableAppearanceObject(); - DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject7 = new DevExpress.Utils.SerializableAppearanceObject(); - DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject8 = new DevExpress.Utils.SerializableAppearanceObject(); - DevExpress.XtraEditors.Controls.EditorButtonImageOptions editorButtonImageOptions3 = new DevExpress.XtraEditors.Controls.EditorButtonImageOptions(); - DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject9 = new DevExpress.Utils.SerializableAppearanceObject(); - DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject10 = new DevExpress.Utils.SerializableAppearanceObject(); - DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject11 = new DevExpress.Utils.SerializableAppearanceObject(); - DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject12 = new DevExpress.Utils.SerializableAppearanceObject(); this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl(); + this.be_atta = new DevExpress.XtraEditors.ButtonEdit(); this.stackPanel2 = new DevExpress.Utils.Layout.StackPanel(); this.btn_Cancel = new DevExpress.XtraEditors.SimpleButton(); this.btn_Submit = new DevExpress.XtraEditors.SimpleButton(); this.imgs_Content = new DevExpress.Utils.Layout.StackPanel(); this.btn_takePhotos = new DevExpress.XtraEditors.SimpleButton(); this.spreadsheetControl1 = new DevExpress.XtraSpreadsheet.SpreadsheetControl(); + this.txt_Attr = new DevExpress.XtraEditors.ButtonEdit(); this.Root = new DevExpress.XtraLayout.LayoutControlGroup(); this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem(); + this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem(); + this.pnl_Atta = new DevExpress.XtraLayout.LayoutControlItem(); this.splashScreenManager1 = new DevExpress.XtraSplashScreen.SplashScreenManager(this, typeof(global::TsSFCDevice.Client.Launch.frmWaiting), true, true); this.behaviorManager1 = new DevExpress.Utils.Behaviors.BehaviorManager(this.components); - this.be_atta = new DevExpress.XtraEditors.ButtonEdit(); - this.txt_Attr = new DevExpress.XtraEditors.ButtonEdit(); - this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem(); - this.pnl_Atta = new DevExpress.XtraLayout.LayoutControlItem(); ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit(); this.layoutControl1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.be_atta.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.stackPanel2)).BeginInit(); this.stackPanel2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.imgs_Content)).BeginInit(); this.imgs_Content.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.txt_Attr.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.behaviorManager1)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.be_atta.Properties)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.txt_Attr.Properties)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pnl_Atta)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.behaviorManager1)).BeginInit(); this.SuspendLayout(); // // layoutControl1 @@ -97,6 +97,30 @@ this.layoutControl1.TabIndex = 0; this.layoutControl1.Text = "layoutControl1"; // + // be_atta + // + this.be_atta.Location = new System.Drawing.Point(117, 551); + this.be_atta.Margin = new System.Windows.Forms.Padding(2); + this.be_atta.Name = "be_atta"; + this.be_atta.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F); + this.be_atta.Properties.Appearance.Options.UseFont = true; + this.be_atta.Properties.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 12F); + this.be_atta.Properties.AppearanceDisabled.Options.UseFont = true; + this.be_atta.Properties.AppearanceFocused.Font = new System.Drawing.Font("Tahoma", 12F); + this.be_atta.Properties.AppearanceFocused.Options.UseFont = true; + this.be_atta.Properties.AppearanceReadOnly.Font = new System.Drawing.Font("Tahoma", 12F); + this.be_atta.Properties.AppearanceReadOnly.Options.UseFont = true; + this.be_atta.Properties.AutoHeight = false; + editorButtonImageOptions4.Image = ((System.Drawing.Image)(resources.GetObject("editorButtonImageOptions4.Image"))); + this.be_atta.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "查看", -1, true, true, false, editorButtonImageOptions4, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject13, serializableAppearanceObject14, serializableAppearanceObject15, serializableAppearanceObject16, "", null, null, DevExpress.Utils.ToolTipAnchor.Default), + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete, "删除", -1, true, true, false, editorButtonImageOptions5, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject17, serializableAppearanceObject18, serializableAppearanceObject19, serializableAppearanceObject20, "", null, null, DevExpress.Utils.ToolTipAnchor.Default)}); + this.be_atta.Properties.ReadOnly = true; + this.be_atta.Size = new System.Drawing.Size(1317, 31); + this.be_atta.StyleController = this.layoutControl1; + this.be_atta.TabIndex = 8; + this.be_atta.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.be_atta_ButtonClick); + // // stackPanel2 // this.stackPanel2.Controls.Add(this.btn_Cancel); @@ -198,6 +222,37 @@ this.spreadsheetControl1.TabIndex = 4; this.spreadsheetControl1.Text = "spreadsheetControl1"; this.spreadsheetControl1.PopupMenuShowing += new DevExpress.XtraSpreadsheet.PopupMenuShowingEventHandler(this.spreadsheetControl1_PopupMenuShowing); + this.spreadsheetControl1.DocumentLoaded += new System.EventHandler(this.spreadsheetControl1_DocumentLoaded); + this.spreadsheetControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.spreadsheetControl1_MouseDown); + // + // txt_Attr + // + this.txt_Attr.Location = new System.Drawing.Point(117, 586); + this.txt_Attr.Margin = new System.Windows.Forms.Padding(2); + this.txt_Attr.Name = "txt_Attr"; + this.txt_Attr.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F); + this.txt_Attr.Properties.Appearance.Options.UseFont = true; + this.txt_Attr.Properties.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 12F); + this.txt_Attr.Properties.AppearanceDisabled.Options.UseFont = true; + this.txt_Attr.Properties.AppearanceFocused.Font = new System.Drawing.Font("Tahoma", 12F); + this.txt_Attr.Properties.AppearanceFocused.Options.UseFont = true; + this.txt_Attr.Properties.AppearanceReadOnly.Font = new System.Drawing.Font("Tahoma", 12F); + this.txt_Attr.Properties.AppearanceReadOnly.Options.UseFont = true; + this.txt_Attr.Properties.AutoHeight = false; + editorButtonImageOptions1.Image = ((System.Drawing.Image)(resources.GetObject("editorButtonImageOptions1.Image"))); + serializableAppearanceObject1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + serializableAppearanceObject1.Options.UseBorderColor = true; + serializableAppearanceObject2.BorderColor = System.Drawing.Color.Silver; + serializableAppearanceObject2.Options.UseBorderColor = true; + serializableAppearanceObject3.BorderColor = System.Drawing.Color.Gray; + serializableAppearanceObject3.Options.UseBorderColor = true; + this.txt_Attr.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", 32, true, true, false, editorButtonImageOptions1, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, serializableAppearanceObject2, serializableAppearanceObject3, serializableAppearanceObject4, "", null, null, DevExpress.Utils.ToolTipAnchor.Default)}); + this.txt_Attr.Properties.ReadOnly = true; + this.txt_Attr.Properties.Click += new System.EventHandler(this.txt_Attr_Click); + this.txt_Attr.Size = new System.Drawing.Size(1317, 31); + this.txt_Attr.StyleController = this.layoutControl1; + this.txt_Attr.TabIndex = 5; // // Root // @@ -223,6 +278,26 @@ this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0); this.layoutControlItem1.TextVisible = false; // + // layoutControlItem2 + // + this.layoutControlItem2.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 12F); + this.layoutControlItem2.AppearanceItemCaption.Options.UseFont = true; + this.layoutControlItem2.AppearanceItemCaptionDisabled.Font = new System.Drawing.Font("Tahoma", 12F); + this.layoutControlItem2.AppearanceItemCaptionDisabled.Options.UseFont = true; + this.layoutControlItem2.Control = this.txt_Attr; + this.layoutControlItem2.CustomizationFormText = "layoutAttach"; + this.layoutControlItem2.Location = new System.Drawing.Point(0, 574); + this.layoutControlItem2.MaxSize = new System.Drawing.Size(0, 35); + this.layoutControlItem2.MinSize = new System.Drawing.Size(155, 21); + this.layoutControlItem2.Name = "layoutControlItem2"; + this.layoutControlItem2.OptionsTableLayoutItem.ColumnIndex = 1; + this.layoutControlItem2.Size = new System.Drawing.Size(1426, 35); + this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom; + this.layoutControlItem2.Text = "附件"; + this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize; + this.layoutControlItem2.TextSize = new System.Drawing.Size(100, 14); + this.layoutControlItem2.TextToControlDistance = 5; + // // layoutControlItem3 // this.layoutControlItem3.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 12F); @@ -257,83 +332,6 @@ this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0); this.layoutControlItem4.TextVisible = false; // - // splashScreenManager1 - // - this.splashScreenManager1.ClosingDelay = 500; - // - // be_atta - // - this.be_atta.Location = new System.Drawing.Point(117, 551); - this.be_atta.Margin = new System.Windows.Forms.Padding(2); - this.be_atta.Name = "be_atta"; - this.be_atta.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F); - this.be_atta.Properties.Appearance.Options.UseFont = true; - this.be_atta.Properties.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 12F); - this.be_atta.Properties.AppearanceDisabled.Options.UseFont = true; - this.be_atta.Properties.AppearanceFocused.Font = new System.Drawing.Font("Tahoma", 12F); - this.be_atta.Properties.AppearanceFocused.Options.UseFont = true; - this.be_atta.Properties.AppearanceReadOnly.Font = new System.Drawing.Font("Tahoma", 12F); - this.be_atta.Properties.AppearanceReadOnly.Options.UseFont = true; - this.be_atta.Properties.AutoHeight = false; - editorButtonImageOptions1.Image = ((System.Drawing.Image)(resources.GetObject("editorButtonImageOptions1.Image"))); - this.be_atta.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { - new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "查看", -1, true, true, false, editorButtonImageOptions1, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, serializableAppearanceObject2, serializableAppearanceObject3, serializableAppearanceObject4, "", null, null, DevExpress.Utils.ToolTipAnchor.Default), - new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete, "删除", -1, true, true, false, editorButtonImageOptions2, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, serializableAppearanceObject6, serializableAppearanceObject7, serializableAppearanceObject8, "", null, null, DevExpress.Utils.ToolTipAnchor.Default)}); - this.be_atta.Properties.ReadOnly = true; - this.be_atta.Size = new System.Drawing.Size(1317, 31); - this.be_atta.StyleController = this.layoutControl1; - this.be_atta.TabIndex = 8; - this.be_atta.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.be_atta_ButtonClick); - // - // txt_Attr - // - this.txt_Attr.Location = new System.Drawing.Point(117, 586); - this.txt_Attr.Margin = new System.Windows.Forms.Padding(2); - this.txt_Attr.Name = "txt_Attr"; - this.txt_Attr.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F); - this.txt_Attr.Properties.Appearance.Options.UseFont = true; - this.txt_Attr.Properties.AppearanceDisabled.Font = new System.Drawing.Font("Tahoma", 12F); - this.txt_Attr.Properties.AppearanceDisabled.Options.UseFont = true; - this.txt_Attr.Properties.AppearanceFocused.Font = new System.Drawing.Font("Tahoma", 12F); - this.txt_Attr.Properties.AppearanceFocused.Options.UseFont = true; - this.txt_Attr.Properties.AppearanceReadOnly.Font = new System.Drawing.Font("Tahoma", 12F); - this.txt_Attr.Properties.AppearanceReadOnly.Options.UseFont = true; - this.txt_Attr.Properties.AutoHeight = false; - editorButtonImageOptions3.Image = ((System.Drawing.Image)(resources.GetObject("editorButtonImageOptions3.Image"))); - serializableAppearanceObject9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - serializableAppearanceObject9.Options.UseBorderColor = true; - serializableAppearanceObject10.BorderColor = System.Drawing.Color.Silver; - serializableAppearanceObject10.Options.UseBorderColor = true; - serializableAppearanceObject11.BorderColor = System.Drawing.Color.Gray; - serializableAppearanceObject11.Options.UseBorderColor = true; - this.txt_Attr.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { - new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", 32, true, true, false, editorButtonImageOptions3, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject9, serializableAppearanceObject10, serializableAppearanceObject11, serializableAppearanceObject12, "", null, null, DevExpress.Utils.ToolTipAnchor.Default)}); - this.txt_Attr.Properties.ReadOnly = true; - this.txt_Attr.Properties.Click += new System.EventHandler(this.txt_Attr_Click); - this.txt_Attr.Size = new System.Drawing.Size(1317, 31); - this.txt_Attr.StyleController = this.layoutControl1; - this.txt_Attr.TabIndex = 5; - // - // layoutControlItem2 - // - this.layoutControlItem2.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 12F); - this.layoutControlItem2.AppearanceItemCaption.Options.UseFont = true; - this.layoutControlItem2.AppearanceItemCaptionDisabled.Font = new System.Drawing.Font("Tahoma", 12F); - this.layoutControlItem2.AppearanceItemCaptionDisabled.Options.UseFont = true; - this.layoutControlItem2.Control = this.txt_Attr; - this.layoutControlItem2.CustomizationFormText = "layoutAttach"; - this.layoutControlItem2.Location = new System.Drawing.Point(0, 574); - this.layoutControlItem2.MaxSize = new System.Drawing.Size(0, 35); - this.layoutControlItem2.MinSize = new System.Drawing.Size(155, 21); - this.layoutControlItem2.Name = "layoutControlItem2"; - this.layoutControlItem2.OptionsTableLayoutItem.ColumnIndex = 1; - this.layoutControlItem2.Size = new System.Drawing.Size(1426, 35); - this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom; - this.layoutControlItem2.Text = "附件"; - this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize; - this.layoutControlItem2.TextSize = new System.Drawing.Size(100, 14); - this.layoutControlItem2.TextToControlDistance = 5; - // // pnl_Atta // this.pnl_Atta.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 12F); @@ -353,6 +351,10 @@ this.pnl_Atta.TextToControlDistance = 5; this.pnl_Atta.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never; // + // splashScreenManager1 + // + this.splashScreenManager1.ClosingDelay = 500; + // // page_DriveMaintenance // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F); @@ -368,19 +370,19 @@ this.Load += new System.EventHandler(this.page_DriveMaintenance_Load); ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit(); this.layoutControl1.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.be_atta.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.stackPanel2)).EndInit(); this.stackPanel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.imgs_Content)).EndInit(); this.imgs_Content.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.txt_Attr.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.behaviorManager1)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.be_atta.Properties)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.txt_Attr.Properties)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pnl_Atta)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.behaviorManager1)).EndInit(); this.ResumeLayout(false); } diff --git a/TsSFCDevice.Client.Launch/Preserve/page_DriveMaintenance.cs b/TsSFCDevice.Client.Launch/Preserve/page_DriveMaintenance.cs index a5d2224..ba495f9 100644 --- a/TsSFCDevice.Client.Launch/Preserve/page_DriveMaintenance.cs +++ b/TsSFCDevice.Client.Launch/Preserve/page_DriveMaintenance.cs @@ -488,7 +488,7 @@ namespace TsSFCDevice.Client.Launch.Preserve EquipmentPrimaryID = CurrentDrive.AutoID, EquipmentName = CurrentDrive.EquipmentName, InstallationSite = CurrentDrive.InstallationLocation, - FormPrimaryID = Belong == EnumDeviceBelong.AM ? CurrentDrive.MaintenanceAMFormVersion : CurrentDrive.MaintenanceFormVersion, + FormPrimaryID = CurrentFormModel.AutoID, FormName = CurrentFormModel.FormName, FormVersionCode = CurrentFormModel.VersionCode, FormVersionRev = CurrentFormModel.VersionRev, @@ -579,6 +579,11 @@ namespace TsSFCDevice.Client.Launch.Preserve { ServiceTime = CommonRepository.Instance.ServiceTime(); + if (Belong == EnumDeviceBelong.AM) + { + + } + if (MaintenanceAutoID != 0) { CurrentModel = PreserveRepository.Instance.Get_Preserve_Single(MaintenanceAutoID); @@ -844,337 +849,10 @@ namespace TsSFCDevice.Client.Launch.Preserve this.DialogResult = DialogResult.Abort; } - spreadsheetControl1.Document.DocumentLoaded += (s, ee) => - { - try - { - //当年不存在历史信息 - if (CurrentModel == null) - { - #region 设备名称赋值 - foreach (SheetDataItem item in template.EquipmentName) - { - Cell cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - cell.Value = CurrentDrive.EquipmentName; - } - #endregion - - #region 安装地点 - foreach (SheetDataItem item in template.InstallationSite) - { - Cell cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - cell.Value = CurrentDrive.InstallationLocation; - } - #endregion - - #region 设备型号赋值 - //设备型号赋值 - foreach (SheetDataItem item in template.DeviceSpecification) - { - Cell cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - cell.Value = CurrentDrive.Specification; - } - #endregion - - #region 设备编号赋值 - //设备编号赋值 - foreach (SheetDataItem item in template.EquipmentID) - { - Cell cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - cell.Value = CurrentDrive.EquipmentID; - } - #endregion - - #region 年份赋值 - - //年份赋值 - foreach (SheetDataItem item in template.Year) - { - Cell cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - - // 获取单元格的内容 - RichTextString value = cell.GetRichText(); - - //字符串 分割 -6是为了年份数值的占位 - int index = value.Text.IndexOf("年"); - string left = value.Text.Substring(0, index - 6); - string right = value.Text.Substring(index); - - RichTextString nvalue = new RichTextString(); - string content = $"{DateTime.Today.Year}"; - nvalue.AddTextRun(left, new RichTextRunFont(cell.Font)); - nvalue.AddTextRun(content, new RichTextRunFont(cell.Font) { UnderlineType = UnderlineType.Single }); - nvalue.AddTextRun(right, new RichTextRunFont(cell.Font)); - - cell.BeginUpdate(); - cell.SetRichText(nvalue); - cell.EndUpdate(); - } - - foreach (SheetDataItem item in template.YearAndMonth) - { - Cell cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - if (cell.Value.IsText && !cell.Value.TextValue.IsNull()) - { - cell.Value = cell.Value.TextValue.Replace(" 年", $"{CurrentPlanModel.MaintenanceYear}年").Replace(" 月", $"{CurrentPlanModel.MaintenanceMonth.ToString().PadLeft(2, '0')}月"); - } - } - - #endregion - - #region 设置右键菜单 - - spreadsheetControl1.MouseDown += (s1, e1) => - { - if (e1.Button == MouseButtons.Right) - { - // 获取鼠标位置对应的单元格 - Cell cell = spreadsheetControl1.GetCellFromPoint(new PointF(e1.X, e1.Y)); - if (cell == null) - return; - - // 判断是否为合并单元格 - if (cell.IsMerged) - { - //获取主单元格位置 - int top = (cell.GetMergedRanges()[0]).TopRowIndex; - int left = (cell.GetMergedRanges()[0]).LeftColumnIndex; - - CurrentCell = worksheet.Cells[top, left]; - } - else - { - CurrentCell = cell; - } - - if (EditCondition.ContainsKey(EnumMaintenanceCellType.Operation) && template.Operation.Any(EditCondition[EnumMaintenanceCellType.Operation])) - { - // 操作人 - template.popupOperation.ShowPopup(spreadsheetControl1, new Point(e1.X, e1.Y)); - } - else if (EditCondition.ContainsKey(EnumMaintenanceCellType.OperationDate) && template.OperationDate.Any(EditCondition[EnumMaintenanceCellType.OperationDate])) - { - // 保养日期 - template.popupDate.ShowPopup(spreadsheetControl1, new Point(e1.X, e1.Y)); - } - else if (EditCondition.ContainsKey(EnumMaintenanceCellType.Content) && template.Content.Any(EditCondition[EnumMaintenanceCellType.Content])) - { - // 保养正文 - template.popupContent.ShowPopup(spreadsheetControl1, new Point(e1.X, e1.Y)); - } - else if (EditCondition.ContainsKey(EnumMaintenanceCellType.ExceptionDescription) && template.ExceptionDescription.Any(EditCondition[EnumMaintenanceCellType.ExceptionDescription])) - { - // 保养 - 其他异常 - template.popupException.ShowPopup(spreadsheetControl1, new Point(e1.X, e1.Y)); - } - } - }; - - #endregion - } - else - { - Cell cell = null; - #region 设备名称 - //设备名称 - foreach (SheetDataItem item in template.EquipmentName) - { - cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - cell.Value = CurrentDrive.EquipmentName; - } - #endregion - - #region 安装地点 - //安装地点 - foreach (SheetDataItem item in template.InstallationSite) - { - cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - cell.Value = CurrentDrive.InstallationLocation; - } - #endregion - - #region 设备型号赋值 - //设备型号赋值 - foreach (SheetDataItem item in template.DeviceSpecification) - { - cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - cell.Value = CurrentModel.Specification; - } - #endregion - - #region 设备编号赋值 - //设备编号赋值 - foreach (SheetDataItem item in template.EquipmentID) - { - cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - cell.Value = CurrentModel.EquipmentID; - } - #endregion - - #region 年份赋值 - - //年份赋值 - foreach (SheetDataItem item in template.Year) - { - cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - - // 获取单元格的内容 - RichTextString value = cell.GetRichText(); - - //字符串 分割 -6是为了年份数值的占位 - int index = value.Text.IndexOf("年"); - string left = value.Text.Substring(0, index - 6); - string right = value.Text.Substring(index); - - RichTextString nvalue = new RichTextString(); - string content = CurrentModel.MYear + ""; - nvalue.AddTextRun(left, new RichTextRunFont(cell.Font)); - nvalue.AddTextRun(content, new RichTextRunFont(cell.Font) { UnderlineType = UnderlineType.Single }); - nvalue.AddTextRun(right, new RichTextRunFont(cell.Font)); - - cell.BeginUpdate(); - cell.SetRichText(nvalue); - cell.EndUpdate(); - } - - foreach (SheetDataItem item in template.YearAndMonth) - { - cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - if (cell.Value.IsText && !cell.Value.TextValue.IsNull()) - { - cell.Value = cell.Value.TextValue.Replace(" 年", $"{CurrentPlanModel.MaintenanceYear}年").Replace(" 月", $"{CurrentPlanModel.MaintenanceMonth.ToString().PadLeft(2, '0')}月"); - } - } - - #endregion - - #region 正文赋值 - List datas = template.Content.Where(x => x.Value != null)?.ToList(); - foreach (SheetDataItem item in datas) - { - cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - cell.Value = item.Value + ""; - } - #endregion - - #region 异常赋值 - datas = template.ExceptionDescription.Where(x => x.Value != null)?.ToList(); - foreach (SheetDataItem item in datas) - { - cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - cell.Value = item.Value + ""; - cell.Alignment.WrapText = true; - cell.Alignment.Horizontal = SpreadsheetHorizontalAlignment.Left; - cell.Alignment.Vertical = SpreadsheetVerticalAlignment.Top; - } - #endregion - - #region 操作人赋值 - datas = template.Operation.Where(x => x.Value != null)?.ToList(); - foreach (SheetDataItem item in datas) - { - cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - cell.Value = item.Value + ""; - - if (CurrentType == EnumMaintenanceType.Daily) - { - double width = worksheet.Columns[cell.ColumnIndex].Width; - worksheet.Columns[cell.ColumnIndex].AutoFitColumns(); - if (worksheet.Columns[cell.ColumnIndex].Width < width) - { - worksheet.Columns[cell.ColumnIndex].Width = width; - } - } - } - #endregion - - #region 操作时间赋值 - datas = template.OperationDate.Where(x => x.Value != null)?.ToList(); - foreach (SheetDataItem item in datas) - { - cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; - cell.Value = item.Value + ""; - - if (CurrentType == EnumMaintenanceType.Daily) - { - double width = worksheet.Columns[cell.ColumnIndex].Width; - worksheet.Columns[cell.ColumnIndex].AutoFitColumns(); - if (worksheet.Columns[cell.ColumnIndex].Width < width) - { - worksheet.Columns[cell.ColumnIndex].Width = width; - } - } - } - #endregion - - - #region 设置右键菜单 - - spreadsheetControl1.MouseDown += (s1, e1) => - { - if (e1.Button == MouseButtons.Right) - { - // 获取鼠标位置对应的单元格 - cell = spreadsheetControl1.GetCellFromPoint(new PointF(e1.X, e1.Y)); - if (cell == null) - return; - - // 判断是否为合并单元格 - if (cell.IsMerged) - { - //获取主单元格位置 - int top = (cell.GetMergedRanges()[0]).TopRowIndex; - int left = (cell.GetMergedRanges()[0]).LeftColumnIndex; - - CurrentCell = worksheet.Cells[top, left]; - } - else - { - CurrentCell = cell; - } - - //if (EditCondition.ContainsKey(EnumMaintenanceCellType.Operation) && template.Operation.Where(EditCondition[EnumMaintenanceCellType.Operation]).Any(x => x.Value == null || isAdmin)) - if (EditCondition.ContainsKey(EnumMaintenanceCellType.Operation) && template.Operation.Any(EditCondition[EnumMaintenanceCellType.Operation]) && (MaintenanceAutoID == 0 || isAdmin)) - { - // 操作人 - template.popupOperation.ShowPopup(spreadsheetControl1, new Point(e1.X, e1.Y)); - } - //else if (EditCondition.ContainsKey(EnumMaintenanceCellType.OperationDate) && template.OperationDate.Where(EditCondition[EnumMaintenanceCellType.OperationDate]).Any(x => x.Value == null || isAdmin)) - else if (EditCondition.ContainsKey(EnumMaintenanceCellType.OperationDate) && template.OperationDate.Any(EditCondition[EnumMaintenanceCellType.OperationDate]) && (MaintenanceAutoID == 0 || isAdmin)) - { - // 保养日期 - template.popupDate.ShowPopup(spreadsheetControl1, new Point(e1.X, e1.Y)); - } - // else if (EditCondition.ContainsKey(EnumMaintenanceCellType.Content) && template.Content.Where(EditCondition[EnumMaintenanceCellType.Content]).Any(x => x.Value == null || isAdmin)) - else if (EditCondition.ContainsKey(EnumMaintenanceCellType.Content) && template.Content.Any(EditCondition[EnumMaintenanceCellType.Content]) && (MaintenanceAutoID == 0 || isAdmin)) - { - // 保养正文 - template.popupContent.ShowPopup(spreadsheetControl1, new Point(e1.X, e1.Y)); - } - //else if (EditCondition.ContainsKey(EnumMaintenanceCellType.ExceptionDescription) && template.ExceptionDescription.Where(EditCondition[EnumMaintenanceCellType.ExceptionDescription]).Any(x => x.Value == null || isAdmin)) - else if (EditCondition.ContainsKey(EnumMaintenanceCellType.ExceptionDescription) && template.ExceptionDescription.Any(EditCondition[EnumMaintenanceCellType.ExceptionDescription]) && (MaintenanceAutoID == 0 || isAdmin)) - { - // 保养 - 其他异常 - template.popupException.ShowPopup(spreadsheetControl1, new Point(e1.X, e1.Y)); - } - } - }; - - #endregion - } - - worksheet.ScrollTo(0, 0); - - splashScreenManager1.TryCloseWait(); - } - catch (Exception ex) - { - splashScreenManager1.TryCloseWait(); - XtraMessageBoxHelper.Error(ex.Message); - } - }; - - + //spreadsheetControl1.Document.DocumentLoaded += (s, ee) => + //{ + + //}; } #region 方法 @@ -1552,7 +1230,7 @@ namespace TsSFCDevice.Client.Launch.Preserve return false; } - private void be_atta_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e) + private void be_atta_ButtonClick(object sender, ButtonPressedEventArgs e) { if (e.Button.Caption == "删除" && XtraMessageBoxHelper.Ask("是否确定执行删除操作?") == DialogResult.OK) { @@ -1602,5 +1280,345 @@ namespace TsSFCDevice.Client.Launch.Preserve } return item; } + /// + /// 点检表加载完成 + /// + /// + /// + private void spreadsheetControl1_DocumentLoaded(object sender, EventArgs e) + { + try + { + //当年不存在历史信息 + if (CurrentModel == null) + { + #region 设备名称赋值 + foreach (SheetDataItem item in template.EquipmentName) + { + Cell cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + cell.Value = CurrentDrive.EquipmentName; + } + #endregion + + #region 安装地点 + foreach (SheetDataItem item in template.InstallationSite) + { + Cell cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + cell.Value = CurrentDrive.InstallationLocation; + } + #endregion + + #region 设备型号赋值 + //设备型号赋值 + foreach (SheetDataItem item in template.DeviceSpecification) + { + Cell cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + cell.Value = CurrentDrive.Specification; + } + #endregion + + #region 设备编号赋值 + //设备编号赋值 + foreach (SheetDataItem item in template.EquipmentID) + { + Cell cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + cell.Value = CurrentDrive.EquipmentID; + } + #endregion + + #region 年份赋值 + + //年份赋值 + foreach (SheetDataItem item in template.Year) + { + Cell cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + + // 获取单元格的内容 + RichTextString value = cell.GetRichText(); + + //字符串 分割 -6是为了年份数值的占位 + int index = value.Text.IndexOf("年"); + string left = value.Text.Substring(0, index - 6); + string right = value.Text.Substring(index); + + RichTextString nvalue = new RichTextString(); + string content = $"{DateTime.Today.Year}"; + nvalue.AddTextRun(left, new RichTextRunFont(cell.Font)); + nvalue.AddTextRun(content, new RichTextRunFont(cell.Font) { UnderlineType = UnderlineType.Single }); + nvalue.AddTextRun(right, new RichTextRunFont(cell.Font)); + + cell.BeginUpdate(); + cell.SetRichText(nvalue); + cell.EndUpdate(); + } + + foreach (SheetDataItem item in template.YearAndMonth) + { + Cell cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + if (cell.Value.IsText && !cell.Value.TextValue.IsNull()) + { + cell.Value = cell.Value.TextValue.Replace(" 年", $"{CurrentPlanModel.MaintenanceYear}年").Replace(" 月", $"{CurrentPlanModel.MaintenanceMonth.ToString().PadLeft(2, '0')}月"); + } + } + + #endregion + + #region 设置右键菜单 + + //spreadsheetControl1.MouseDown += (s1, e1) => + //{ + // if (e1.Button == MouseButtons.Right) + // { + // // 获取鼠标位置对应的单元格 + // Cell cell = spreadsheetControl1.GetCellFromPoint(new PointF(e1.X, e1.Y)); + // if (cell == null) + // return; + + // // 判断是否为合并单元格 + // if (cell.IsMerged) + // { + // //获取主单元格位置 + // int top = (cell.GetMergedRanges()[0]).TopRowIndex; + // int left = (cell.GetMergedRanges()[0]).LeftColumnIndex; + + // CurrentCell = worksheet.Cells[top, left]; + // } + // else + // { + // CurrentCell = cell; + // } + + // if (EditCondition.ContainsKey(EnumMaintenanceCellType.Operation) && template.Operation.Any(EditCondition[EnumMaintenanceCellType.Operation])) + // { + // // 操作人 + // template.popupOperation.ShowPopup(spreadsheetControl1, new Point(e1.X, e1.Y)); + // } + // else if (EditCondition.ContainsKey(EnumMaintenanceCellType.OperationDate) && template.OperationDate.Any(EditCondition[EnumMaintenanceCellType.OperationDate])) + // { + // // 保养日期 + // template.popupDate.ShowPopup(spreadsheetControl1, new Point(e1.X, e1.Y)); + // } + // else if (EditCondition.ContainsKey(EnumMaintenanceCellType.Content) && template.Content.Any(EditCondition[EnumMaintenanceCellType.Content])) + // { + // // 保养正文 + // template.popupContent.ShowPopup(spreadsheetControl1, new Point(e1.X, e1.Y)); + // } + // else if (EditCondition.ContainsKey(EnumMaintenanceCellType.ExceptionDescription) && template.ExceptionDescription.Any(EditCondition[EnumMaintenanceCellType.ExceptionDescription])) + // { + // // 保养 - 其他异常 + // template.popupException.ShowPopup(spreadsheetControl1, new Point(e1.X, e1.Y)); + // } + // } + //}; + + #endregion + } + else + { + Cell cell = null; + #region 设备名称 + //设备名称 + foreach (SheetDataItem item in template.EquipmentName) + { + cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + cell.Value = CurrentDrive.EquipmentName; + } + #endregion + + #region 安装地点 + //安装地点 + foreach (SheetDataItem item in template.InstallationSite) + { + cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + cell.Value = CurrentDrive.InstallationLocation; + } + #endregion + + #region 设备型号赋值 + //设备型号赋值 + foreach (SheetDataItem item in template.DeviceSpecification) + { + cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + cell.Value = CurrentModel.Specification; + } + #endregion + + #region 设备编号赋值 + //设备编号赋值 + foreach (SheetDataItem item in template.EquipmentID) + { + cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + cell.Value = CurrentModel.EquipmentID; + } + #endregion + + #region 年份赋值 + + //年份赋值 + foreach (SheetDataItem item in template.Year) + { + cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + + // 获取单元格的内容 + RichTextString value = cell.GetRichText(); + + //字符串 分割 -6是为了年份数值的占位 + int index = value.Text.IndexOf("年"); + string left = value.Text.Substring(0, index - 6); + string right = value.Text.Substring(index); + + RichTextString nvalue = new RichTextString(); + string content = CurrentModel.MYear + ""; + nvalue.AddTextRun(left, new RichTextRunFont(cell.Font)); + nvalue.AddTextRun(content, new RichTextRunFont(cell.Font) { UnderlineType = UnderlineType.Single }); + nvalue.AddTextRun(right, new RichTextRunFont(cell.Font)); + + cell.BeginUpdate(); + cell.SetRichText(nvalue); + cell.EndUpdate(); + } + + foreach (SheetDataItem item in template.YearAndMonth) + { + cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + if (cell.Value.IsText && !cell.Value.TextValue.IsNull()) + { + cell.Value = cell.Value.TextValue.Replace(" 年", $"{CurrentPlanModel.MaintenanceYear}年").Replace(" 月", $"{CurrentPlanModel.MaintenanceMonth.ToString().PadLeft(2, '0')}月"); + } + } + + #endregion + + #region 正文赋值 + List datas = template.Content.Where(x => x.Value != null)?.ToList(); + foreach (SheetDataItem item in datas) + { + cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + cell.Value = item.Value + ""; + } + #endregion + + #region 异常赋值 + datas = template.ExceptionDescription.Where(x => x.Value != null)?.ToList(); + foreach (SheetDataItem item in datas) + { + cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + cell.Value = item.Value + ""; + cell.Alignment.WrapText = true; + cell.Alignment.Horizontal = SpreadsheetHorizontalAlignment.Left; + cell.Alignment.Vertical = SpreadsheetVerticalAlignment.Top; + } + #endregion + + #region 操作人赋值 + datas = template.Operation.Where(x => x.Value != null)?.ToList(); + foreach (SheetDataItem item in datas) + { + cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + cell.Value = item.Value + ""; + + if (CurrentType == EnumMaintenanceType.Daily) + { + double width = worksheet.Columns[cell.ColumnIndex].Width; + worksheet.Columns[cell.ColumnIndex].AutoFitColumns(); + if (worksheet.Columns[cell.ColumnIndex].Width < width) + { + worksheet.Columns[cell.ColumnIndex].Width = width; + } + } + } + #endregion + + #region 操作时间赋值 + datas = template.OperationDate.Where(x => x.Value != null)?.ToList(); + foreach (SheetDataItem item in datas) + { + cell = worksheet.Cells[item.RowIndex, item.ColumnIndex]; + cell.Value = item.Value + ""; + + if (CurrentType == EnumMaintenanceType.Daily) + { + double width = worksheet.Columns[cell.ColumnIndex].Width; + worksheet.Columns[cell.ColumnIndex].AutoFitColumns(); + if (worksheet.Columns[cell.ColumnIndex].Width < width) + { + worksheet.Columns[cell.ColumnIndex].Width = width; + } + } + } + #endregion + + + #region 设置右键菜单 + + //spreadsheetControl1.MouseDown += (s1, e1) => + //{ + + //}; + + #endregion + } + + worksheet.ScrollTo(0, 0); + + splashScreenManager1.TryCloseWait(); + } + catch (Exception ex) + { + splashScreenManager1.TryCloseWait(); + XtraMessageBoxHelper.Error(ex.Message); + } + } + + /// + /// 鼠标右键 + /// + /// + /// + private void spreadsheetControl1_MouseDown(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Right) + { + // 获取鼠标位置对应的单元格 + var cell = spreadsheetControl1.GetCellFromPoint(new PointF(e.X, e.Y)); + if (cell == null) + return; + + // 判断是否为合并单元格 + if (cell.IsMerged) + { + //获取主单元格位置 + int top = (cell.GetMergedRanges()[0]).TopRowIndex; + int left = (cell.GetMergedRanges()[0]).LeftColumnIndex; + + CurrentCell = worksheet.Cells[top, left]; + } + else + { + CurrentCell = cell; + } + + if (EditCondition.ContainsKey(EnumMaintenanceCellType.Operation) && template.Operation.Any(EditCondition[EnumMaintenanceCellType.Operation]) && (MaintenanceAutoID == 0 || isAdmin)) + { + // 操作人 + template.popupOperation.ShowPopup(spreadsheetControl1, new Point(e.X, e.Y)); + } + else if (EditCondition.ContainsKey(EnumMaintenanceCellType.OperationDate) && template.OperationDate.Any(EditCondition[EnumMaintenanceCellType.OperationDate]) && (MaintenanceAutoID == 0 || isAdmin)) + { + // 保养日期 + template.popupDate.ShowPopup(spreadsheetControl1, new Point(e.X, e.Y)); + } + else if (EditCondition.ContainsKey(EnumMaintenanceCellType.Content) && template.Content.Any(EditCondition[EnumMaintenanceCellType.Content]) && (MaintenanceAutoID == 0 || isAdmin)) + { + // 保养正文 + template.popupContent.ShowPopup(spreadsheetControl1, new Point(e.X, e.Y)); + } + else if (EditCondition.ContainsKey(EnumMaintenanceCellType.ExceptionDescription) && template.ExceptionDescription.Any(EditCondition[EnumMaintenanceCellType.ExceptionDescription]) && (MaintenanceAutoID == 0 || isAdmin)) + { + // 保养 - 其他异常 + template.popupException.ShowPopup(spreadsheetControl1, new Point(e.X, e.Y)); + } + } + } } } \ No newline at end of file diff --git a/TsSFCDevice.Client.Launch/Preserve/page_DriveMaintenance.resx b/TsSFCDevice.Client.Launch/Preserve/page_DriveMaintenance.resx index cf25972..01d9c68 100644 --- a/TsSFCDevice.Client.Launch/Preserve/page_DriveMaintenance.resx +++ b/TsSFCDevice.Client.Launch/Preserve/page_DriveMaintenance.resx @@ -118,7 +118,7 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAABN0RVh0VGl0 bGUAUHJldmlldztQcmludJiRofMAAALLSURBVDhPbZJdSFNhGMcPdSFp9HVbF5FQINRNUUQUaNRN3gih @@ -136,7 +136,7 @@ lHi/DyUi61+JH2EfYSdFUdv/AKEU08gIPvj8AAAAAElFTkSuQmCC - + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACV0RVh0VGl0 bGUAUmVtb3ZlUGl2b3RGaWVsZDtEZWxldGU7UmVtb3ZlO3aMxpEAAAIdSURBVDhPhZJbSFRRGIUPRVMK diff --git a/TsSFCDevice.Client.Launch/Preserve/page_MaintenancePdfView.cs b/TsSFCDevice.Client.Launch/Preserve/page_MaintenancePdfView.cs index e62532a..98ad4ce 100644 --- a/TsSFCDevice.Client.Launch/Preserve/page_MaintenancePdfView.cs +++ b/TsSFCDevice.Client.Launch/Preserve/page_MaintenancePdfView.cs @@ -76,6 +76,10 @@ namespace TsSFCDevice.Client.Launch.Preserve PdfSharp.Pdf.PdfPage page = document.AddPage(); // 设置页面大小(可选) page.Size = PdfSharp.PageSize.A4; + + if (item.Datas.IsNull()) + item.Datas = CommonRepository.Instance.GetAttachmentImageByte(item.AutoID); + using (MemoryStream ms = new MemoryStream(item.Datas)) { // 加载图片文件 @@ -107,6 +111,8 @@ namespace TsSFCDevice.Client.Launch.Preserve string attFileFullPath = Path.Combine(CurrentDirectory, "Cache", Guid.NewGuid().ToString() + ".pdf"); using (var fileStream = new FileStream(attFileFullPath, FileMode.Create)) { + if (item.Datas.IsNull()) + item.Datas = CommonRepository.Instance.GetAttachmentImageByte(item.AutoID); fileStream.Write(item.Datas, 0, item.Datas.Length); } files.Add(attFileFullPath); @@ -216,7 +222,7 @@ namespace TsSFCDevice.Client.Launch.Preserve } Worksheet worksheet = spreadsheetControl.Document.Worksheets.ActiveWorksheet; - MaintenanceFormVersionInfo CurrentFormModel = CheckFormRepository.Instance.Get_CheckForm_Single(Record.FormPrimaryID); + MaintenanceFormVersionInfo CurrentFormModel = CheckFormRepository.Instance.Get_CheckForm_Single(Record.FormPrimaryID); BaseTemplate template = null; switch (CurrentFormModel.VersionCode) @@ -330,7 +336,7 @@ namespace TsSFCDevice.Client.Launch.Preserve } worksheet.ActiveView.PaperKind = System.Drawing.Printing.PaperKind.A4; - + worksheet.PrintOptions.FitToPage = true; if (CurrentFormModel.VersionCode == TemplateConstValue.DailyTemplateV1 || CurrentFormModel.VersionCode == TemplateConstValue.DailyTemplateV2) { diff --git a/TsSFCDevice.Client.Launch/frm_Launch.Designer.cs b/TsSFCDevice.Client.Launch/frm_Launch.Designer.cs index 4faabae..887ec5f 100644 --- a/TsSFCDevice.Client.Launch/frm_Launch.Designer.cs +++ b/TsSFCDevice.Client.Launch/frm_Launch.Designer.cs @@ -102,6 +102,7 @@ namespace TsSFCDevice.Client.Launch this.pnl_Content = new DevExpress.XtraEditors.PanelControl(); this.splashScreenManager1 = new DevExpress.XtraSplashScreen.SplashScreenManager(this, typeof(global::TsSFCDevice.Client.Launch.frmWaiting), true, true); this.ribbonPage7 = new DevExpress.XtraBars.Ribbon.RibbonPage(); + this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem(); ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pmLogUser)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemHypertextLabel1)).BeginInit(); @@ -177,9 +178,10 @@ namespace TsSFCDevice.Client.Launch this.barButtonItem7, this.btn_treeView, this.barButtonItem5, - this.btnPlanCheckJump}); + this.btnPlanCheckJump, + this.barButtonItem8}); this.ribbonControl.Location = new System.Drawing.Point(0, 0); - this.ribbonControl.MaxItemId = 81; + this.ribbonControl.MaxItemId = 82; this.ribbonControl.Name = "ribbonControl"; this.ribbonControl.OptionsMenuMinWidth = 385; this.ribbonControl.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] { @@ -547,8 +549,8 @@ namespace TsSFCDevice.Client.Launch // this.btn_treeView.Caption = "设备总台账树"; this.btn_treeView.Id = 77; - this.btn_treeView.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btn_treeView123.ImageOptions.Image"))); - this.btn_treeView.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btn_treeView123.ImageOptions.LargeImage"))); + this.btn_treeView.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btn_treeView.ImageOptions.Image"))); + this.btn_treeView.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btn_treeView.ImageOptions.LargeImage"))); this.btn_treeView.Name = "btn_treeView"; this.btn_treeView.Tag = "BIZ_EQUIP_DEVICE"; this.btn_treeView.Visibility = DevExpress.XtraBars.BarItemVisibility.Never; @@ -584,6 +586,7 @@ namespace TsSFCDevice.Client.Launch // this.pg_Main.ItemLinks.Add(this.btn_DrivePlan); this.pg_Main.ItemLinks.Add(this.btn_FormVersionMaintenence); + this.pg_Main.ItemLinks.Add(this.barButtonItem8); this.pg_Main.Name = "pg_Main"; this.pg_Main.Text = "设备保养"; // @@ -758,6 +761,15 @@ namespace TsSFCDevice.Client.Launch this.ribbonPage7.Name = "ribbonPage7"; this.ribbonPage7.Text = "ribbonPage7"; // + // barButtonItem8 + // + this.barButtonItem8.Caption = "barButtonItem8"; + this.barButtonItem8.Id = 81; + this.barButtonItem8.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("barButtonItem8.ImageOptions.Image"))); + this.barButtonItem8.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barButtonItem8.ImageOptions.LargeImage"))); + this.barButtonItem8.Name = "barButtonItem8"; + this.barButtonItem8.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem8_ItemClick_1); + // // frm_Launch // this.AllowFormGlass = DevExpress.Utils.DefaultBoolean.True; @@ -857,5 +869,6 @@ namespace TsSFCDevice.Client.Launch private DevExpress.XtraBars.BarButtonItem batBtnRefresh; private DevExpress.XtraBars.BarButtonItem barButtonItem5; private DevExpress.XtraBars.BarButtonItem btnPlanCheckJump; + private DevExpress.XtraBars.BarButtonItem barButtonItem8; } } \ No newline at end of file diff --git a/TsSFCDevice.Client.Launch/frm_Launch.cs b/TsSFCDevice.Client.Launch/frm_Launch.cs index ee62ee9..d36f057 100644 --- a/TsSFCDevice.Client.Launch/frm_Launch.cs +++ b/TsSFCDevice.Client.Launch/frm_Launch.cs @@ -1038,5 +1038,26 @@ namespace TsSFCDevice.Client.Launch XtraMessageBoxHelper.Error(ex.Message); } } + + private void barButtonItem8_ItemClick_1(object sender, ItemClickEventArgs e) + { + try + { + var resRtn = PlanRepository.Instance.Get_EquipmentPlanIsComplete("1206", 1); + if (!resRtn.IsSuccess) + { + throw new Exception(resRtn.Message); + } + + if (!resRtn.Message.IsNull()) + { + XtraMessageBoxHelper.Warn(resRtn.Message); + } + } + catch (Exception ex) + { + XtraMessageBoxHelper.Error(ex.Message); + } + } } } \ No newline at end of file diff --git a/TsSFCDevice.Client.Launch/frm_Launch.resx b/TsSFCDevice.Client.Launch/frm_Launch.resx index 98df47d..814ed35 100644 --- a/TsSFCDevice.Client.Launch/frm_Launch.resx +++ b/TsSFCDevice.Client.Launch/frm_Launch.resx @@ -1019,7 +1019,7 @@ - 208, 17 + 205, 17 @@ -1120,7 +1120,7 @@ T8b7/XCa++SfYzx6ji0+TvBM8H7ggpfB6zUUxspgn/viAVPMYcP/AGBDyOsdZH9HAAAAAElFTkSuQmCC - + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAABl0RVh0U29m dHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAUdEVYdFRpdGxlAFRyZWVWaWV3O1RyZWU7X0Ij1wAA @@ -1133,7 +1133,7 @@ FGQA6bHgFVJ83jO46L9HUOF/t4A80mMBGYNsITkWkDEQEIiF/wwAEzc5In1OcF0AAAAASUVORK5CYII= - + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAABl0RVh0U29m dHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAUdEVYdFRpdGxlAFRyZWVWaWV3O1RyZWU7X0Ij1wAA @@ -1235,6 +1235,80 @@ gk2+0nnmF9XztwRg3iY/9V/Xe0vfWu2Z8xeTvQeemDP/Hfr/i4SnCKzfTwn7FJ7pFvVgH01AL4SFkV0k mHG2p+yG+9rEyJ7ZOnvPysxAzDCdfYZpFx+G3giBGWShZGIYAasYtk1sZM9snb3/TeJxuM74N5Op7UHB IbOtAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAhdEVYdFRpdGxlAEFwcGx5O09LO0NoZWNrO0JhcnM7UmliYm9uO2RjyGgAAAOmSURBVDhPTZN9 + UNN1HMd/oqsMzoROrTMbAznGw4YD7c4j6Ahl5CSKuhULJ9Fkjo0SiKc05oETH7isKQNsy4xVMyDwCFwg + yCImD01sg8U4UJ7aeIgHgYz+evf9zbrrd/e6+919P+/X5/O5+36pyZUGau6hiSLfOsL6jAvsmFxtqO54 + NadfaQhbUH7L7T+h5zRklQcLyfljBI/5v8yU688b1NRKPUW5Vo3ucFIWa1umOshYWrMPrVYV7E4D5la7 + MDRTA9PQWaibBSj4MrRPVOgXSDeafXjrkYAOC9KZz2R8GjxsMB3D5HIThpcqMTCvwp25XNgXz2B0WQvX + agsaLQXI13Fnk/P9uCTnMbFc5xZseO80u6nOXADHwmV0/H4EnS4JzC4Zuqfl6JlRoGdWjma7GL/NV6DV + dhqKz0Ks23d6etHNqaRsP/5xbSzsf5Sj5b4IbRNi3Jp6FyanBF1OKW5PS1F0dS8OZDIhOc+GY7ESZbUJ + OFQUkEk3p97+KKCmoTsfN8fScGNUSCTJaBtPQTsRmaYOQ1rGRt4nMoyMO8GXb8MPQ4fRNliCNFWgmQg2 + UsJC/5F2RwGuDydB3RKFGNlG5GnDYLz3FnKqOCjS5MA1uwTFmURcbhXhx3vv4PaEEmml7DUi8KLezPNf + NjrSYbDFIUbqiT6rFfkXMhAr93aHJ6cf4PxX2VB9E0emE6PecRA/TciReioQIZHez1KvZfve1/cKYLDu + g7oxERnFr8I5s4Smzg6MTi5iYPQOEnO3wziSitqheHxn56N24HWIPg6gJ9hEJShYzWWNUbhi2YtrgwIU + V8eiuEKGhQdrWFj5G4eUe3D1ZyEMg7HQ26Kh//VFlN+MwRs5LAsReFIvi3eI089x8YUlEhW9u3DNJkBW + +W7o6kth6r+O1HP+ZL39uNL/Aj63RKD6bjSOXeKBL3leSQSPE6gnBXLfuye+5qKqNwKabi5Z5yBSSnwR + KaWgad+Pqj4eKgnaX3ajpI6HxA9YNi8fxtMk60EL1kfEb+UlZPrNf6gLIoIwaHq4ZE8hmoaPQkcm0/Ts + IvJwFOpDkJTjvxYetyWK5BidE+9TlGlcRksY4fFb9xyQ+Y6knNyJotogqLtCcambg4tmDk5+H4xUVQBe + Ococ4D0K06Ovc2c7xiS0gH6JG8hYPtHJzxXGSZhmgZwFNwoW+EeY1pdEO055PsXYQuoYdD2dc2f/+/lX + RO9E2+l7vpngQ/AmbCI8QfD4f33HmIT6BwJEEY+T4HTzAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAhdEVYdFRpdGxlAEFwcGx5O09LO0NoZWNrO0JhcnM7UmliYm9uO2RjyGgAAAqwSURBVFhHlVcL + UJXHGV3bvNo8mjZja9M06URAQQVEURRBDK8rEJREXmpAFB+IouAbQRERUUDkjeAFBUGT+AQEQQEJoIiJ + KGgEBC9vUUFEwU6czJx+38JFTdN2ujNndv/9v/3O+c7u/lzE9mRLsUNpJXYeshahGQqxJ1Mhwo/NFpHf + 2oiokzYi+rSNiM22FfE5tiIhz05QG/HfEJurEPuzrUTUKUsRcdxChH1tLkKzZongDDOxPc1UBKSYiC2J + xmJj3HQKp7Yt2UK0Pz0sOp6mi87+DHFv4IhE10AmIUvcf5bFYWqC3xB+S3iN8PovwHMMfs9xI9qfZoq2 + p0dE65MM0dyXLlSPD4m7vWmi8ZFSrI+bRiHUAg6YU9AhKaCjf1BEpxSRya/VxJI0NMPcIPq0Ijg+f3ZF + YsHsa0mFNj8nX7D5OSHfujo+z/rSvhMWIdsPmkym2Dc4niCFtPaRgMfp4q5aQE+qWB9rRK+oBSR9RgpT + RduTNHKChPSTGwRq6opfD8s0d4rOtm5ILZqHCzc3oLZzH+ofxKFr4KhE/YN4motEYe06HDz/BSJPmTfs + OGSygNa+SZBCmofImx6lijs9B8W6mCEB/glmoqUvmUSkkIiDJELJ07LqTTHTR4d/Y1GZUTIfNe3h6OhX + orE3ErceBuPmw22o7tqAa13rUfMgELUPtqOhJwKtT5S4TrGHi12w66hplWeg7ljKxY5INxp7UsSd7mTh + FzOVHqltjjehvUmkPUoiIQd4islf80+aYbn3a4tHxbc2QdUXixv3t6KqYw2udjLWSnx/j8c+qOpcjcr2 + VbjU5o2KVi9c7diAhkcxKKzZgF1ZMx/5hE+yoZzshhRR350kfPcb0pDaxlhj0fQ4lkTE8aMk3xg9zSri + G6ufrqqCqbJtuERJL7cR2lcS0Upc6Rjs1bjc7kXkK1DeugzfNXuiVLUYxU0e+KHDH5cbgxGaOev5ylD9 + YRF1DxPEmig+KtR8o6aKxt4oHkrbl++YOHZnuln3VdU2XGlfg7LmJRLlLZ5EsBQVbZ4vgZ5beZ5iCKXN + HihRuaPorhsS8xVYvFMHZ2s8cOlOEAKVxj3Oa8ZOIA65HT6Rk5hTiKW7dEXDo3Aesj1vbEkyupR3je1c + iaKmhSi5+xUuUsKLKjd81+JOWPSib3ZHaYsbEbsR8VcoVi3EqWpHeIboIjDWDzEZUVgSMgEFdUtw5upq + +EVPqiSOdwh8MLlgIb4KHMedtN5nr8GCiK8VtNd+KLjjhELChUYXiaImV6rMlUjmExljgRwzeP4CvU8+ + bw3XDVNwoqAQdapuNKiaMNd3NBIKLVGmWovdR6ywKHCcB3G9ReCChVgYoM0dP7y5Lsaw4fzNVcivd8TZ + Ogfk1TvgXMOXJORLFDTOo94R5xsZJI77JuoZNN5/2gyL/BUo/74ebfefoqevB6t32+L45eXI+dEZJ2rs + kVftg1Xh+o3E9R5h2AVZvZOvliIo1YzsJrtu2iL7th1ybn+O3Nv2yK2bQ6IIDXMlzjU4UM+gZxIZkmUE + ty3WuHy9Cfe6n6H3yWOs2GmNzFIP5NxywrFqa2T9YIVzdYsReNAMc7007IlTfSukgDdcN42NijvjQoGz + cbzGGidrFTh1azZOE7Jv2xBsSYgdCSJRdYzB8eYUA3hstcWVGhU6Hj5D9+NeLAuywoE8F5z50RFHqy2R + ec0SGVXmSL+iQHy2C1w2jOUr9zaBv7BSxVvzt2hXKItcEXfRBAnfzSAh5iTEEseuWcBfOZHGViRGIQUx + zhB2HJmMRVvtUFXTjI7uAfQ+/QnBSV7YrrSUtmdVW+AI5TlUOQsJpZS3dCbSShaAuPgw8jYMC/i96xbt + 7rQyR0QXTcP+YiPEFE9HwsUZWLBNEx4BNnDbPg4ZV2fheK0lTtRaITJ7GpzXz0BFdQPaHw6gq+efKLx8 + Ah5Busivc5PEaVfMcKDMBHElMxBTMp1gjEMVTli4VaeHOP9I4HMgVbztsln7eUq5HSIvGGLfhakSC4M0 + 4Ld3Eb6/1Y6jZ7PhvGk8EopmIPa8MRx8xyGvrBKt9/ulgNauFjium4Bvq9yRXGGGxFJTxJfOIEeNJfn+ + IiPKaQRlhT0W+Os8J84/EfivqBTwjvNG7ecJF80RXmiIyPNTEJY7FfZrP0Hl9Su4R9Xd7ejD6QvFmLdO + F/ZrNHAs/yxUnX1oe9CP7r5n8Aufh8gT9kgu/+wlYmNykxwlV7mgyPOGJMwCrlQscX7wioB568Z27ztn + iojCyYgoMCTbZkJZ5Ex2TUZXdwc6e56hiQjzyqqQ+A39UWrrRSuR88E7VaSkj89EpFfOoXVs9XRES2Ij + RBWRm1RQBJEzogpmwmnDWN6CYQF8Bt52WD3mUuhxE0ScM8Te/EkIL5iEpDJL+qTOw/IQMzzofYA2svpu + 5xP8qOpBC1nfTGjpasPctZpILXUaJFUTD20jV83EnC+SCtt9whQOq7WqiHP4DLCA39ku14jZnDKdAg0R + lm+APQUGclFymRX2nbLDmr026Ovvl1UzcXPXU7k1u5VeCFCakeUzh0m5Yt7GSNrOcHI0vGAyFWVA7k7B + loPGsPEcnUScr9yCN2e5fGLvEaRPwVOx+6w+wvIYE6UbKeUKhB61QmDCfDzufwYVkTOu11fCxV8DqRVz + ZKWyWiYcwl4qgAsJy58oc0VQ7sU79GEy72Nn4uTvAHMPfgkJf/jcS7MpMMtACgg9qzckhBZTAmW5LQLS + TBGe7o2+gZ9oSwawao8lonPp5kiLmfAF6R6qOCyPMXE4T+DRSbD31lIR158J/CUcIWyWa1I/+C0gF5Yu + DJyAPXmTEZKji125ulJI6FCCNLpC6xONkHwyAHnl6VgZoYf4klmSbJBwIq0drDaMiyAXQ3P1ZJ69lNNt + 2wSYOn7sTVxq+0eI2cs0qJcu8Il832aZxtW1iUSeoy9FhNDiF0L0cPjSXPhEG+CLjR8jvsBGVrebCJlM + jpmYY4fWybW5+vBN0gXlvk4cL6rnpvDUEPm3WNTgYdQ3H2Vkv2rMI/8juthJAnZmT5C9dGRIUPplB5ys + XkSneuogCRHuGqqUwbHqNSE5evDP1MMcb83e8SYjTYmDfw8MVs/NeomGyK31Ejm1y/mRz8I7RvYffTnX + R+v5+jQd7DgzHsFnSET2+EExEpSY8QoRix0STQimOF7HORzWaD03tP3QlXK/T2CnRyiWSuf/TYB6K96b + Yvc3R7sVmo+947SlCDWCScirICJJRu/p+eXYVfHasFuh1Weo+HA+5eRPL/8cG5FDfNZL5NlTC1j+sgC1 + iHe1jUZOsV78abXTZi2sP6SDIEoadGYcdpwmAgI/M5Gcf2mOY523jIGVx+gbWoYf8P9gXLkkZzAX88rG + A55gsBBqahG8HXxXRxrN+cjbevHoFgdfTSzZMwZ+Sm1sPKyD7afHIejUOGxM14Ffqg486Z2DrxasF2u0 + Gtn/fTWtHUV4lyBtZ6h5fiHAa8gF3govnlaL4MPCJ5avzV/0Pxv1uanzP+It3EffsHT/tJ4OMBiW7qPr + Ldw/vWHq/EmC3qxRcyj2rwSumn/7cSHD5L8q4D+B2stC2EJ2hBOPJHB1Hw6Bx3y9+PvOp5xFDxP/Wm7G + /9PUQviqcmK2lAUxEYPHPMfvOEYd/z+aEP8CrR1y7ZCy7FEAAAAASUVORK5CYII= diff --git a/TsSFCDeviceSvc/MainService.asmx.cs b/TsSFCDeviceSvc/MainService.asmx.cs index 7ca34c3..31851d7 100644 --- a/TsSFCDeviceSvc/MainService.asmx.cs +++ b/TsSFCDeviceSvc/MainService.asmx.cs @@ -1746,8 +1746,19 @@ namespace TsSFCDeviceSvc throw new ArgumentException("缺少传入参数设备编号(EquipmentID)"); } + if (!Parameters.ContainsKey("Banci")) + { + throw new ArgumentException("缺少传入参数班次(Banci)"); + } + + int Banci = -1; + if (!int.TryParse(Parameters["Banci"], out Banci)) + { + throw new ArgumentException("传入参数班次(Banci)类型不正确!"); + } + PlanDa cmd = new PlanDa(Parameters); - return cmd.Get_EquipmentPlanIsComplete(Parameters["EquipmentID"]); + return cmd.Get_EquipmentPlanIsComplete(Parameters["EquipmentID"], Banci); } catch (Exception ex) { diff --git a/TsSFCDeviceSvc/Properties/PublishProfiles/FolderProfile.pubxml.user b/TsSFCDeviceSvc/Properties/PublishProfiles/FolderProfile.pubxml.user index 602e8b5..4cf42a4 100644 --- a/TsSFCDeviceSvc/Properties/PublishProfiles/FolderProfile.pubxml.user +++ b/TsSFCDeviceSvc/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -5,36 +5,36 @@ https://go.microsoft.com/fwlink/?LinkID=208121. <_PublishTargetUrl>C:\Users\Clove\Desktop\WebSVC - True|2024-08-07T01:52:28.1648821Z||;True|2024-07-31T14:35:03.5193183+08:00||;True|2024-07-30T14:28:13.0791440+08:00||;True|2024-07-30T10:59:11.3180131+08:00||;True|2024-07-29T17:09:46.7471489+08:00||;True|2024-07-29T15:26:48.9648578+08:00||;True|2024-07-29T09:23:55.9996131+08:00||;True|2024-07-26T07:08:01.2867511+08:00||; + True|2024-08-08T05:33:22.9996323Z||;True|2024-08-07T09:52:28.1648821+08:00||;True|2024-07-31T14:35:03.5193183+08:00||;True|2024-07-30T14:28:13.0791440+08:00||;True|2024-07-30T10:59:11.3180131+08:00||;True|2024-07-29T17:09:46.7471489+08:00||;True|2024-07-29T15:26:48.9648578+08:00||;True|2024-07-29T09:23:55.9996131+08:00||;True|2024-07-26T07:08:01.2867511+08:00||; - 08/07/2024 09:52:26 + 08/08/2024 13:33:21 07/18/2024 13:30:47 - 08/07/2024 09:52:26 + 08/08/2024 13:33:21 - 08/06/2024 17:51:48 + 08/07/2024 17:16:13 05/30/2024 11:42:20 - 08/06/2024 17:51:48 + 08/07/2024 17:16:13 - 08/07/2024 09:52:26 + 08/08/2024 13:33:20 07/04/2024 09:35:30 - 08/07/2024 09:52:26 + 08/08/2024 13:33:20 06/12/2023 14:20:18 @@ -100,10 +100,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 05/28/2024 22:39:54 - 08/07/2024 09:52:27 + 08/08/2024 13:33:21 - 08/07/2024 09:52:27 + 08/08/2024 13:33:21 07/21/2024 00:35:30 @@ -115,7 +115,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 07/22/2024 15:41:30 - 07/31/2024 14:35:03 + 08/08/2024 13:33:22 \ No newline at end of file