From df80023baf4e5eba2de7dcbe9dd1bdd3aeaa607e Mon Sep 17 00:00:00 2001
From: zrg <z18737863051@163.com>
Date: 星期二, 14 一月 2025 12:58:50 +0800
Subject: [PATCH] 设备档案 增加 字段; IP地址,MAC地址,联网方式,采集类型,采集方式 HMacAddress varchar(50) //数采MAC地址 HIPAddress varchar(50) //数采IP地址 HLinkNETMode varchar(50) //联网方式 HCollectMode varchar(50) //采集方式 HCollectClass varchar(50) //采集类型

---
 DAL/生产管理/模具管理/ClsSb_MouldRepairWorkBill.cs |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git "a/DAL/\347\224\237\344\272\247\347\256\241\347\220\206/\346\250\241\345\205\267\347\256\241\347\220\206/ClsSb_MouldRepairWorkBill.cs" "b/DAL/\347\224\237\344\272\247\347\256\241\347\220\206/\346\250\241\345\205\267\347\256\241\347\220\206/ClsSb_MouldRepairWorkBill.cs"
index 0c7e815..8fdb36d 100644
--- "a/DAL/\347\224\237\344\272\247\347\256\241\347\220\206/\346\250\241\345\205\267\347\256\241\347\220\206/ClsSb_MouldRepairWorkBill.cs"
+++ "b/DAL/\347\224\237\344\272\247\347\256\241\347\220\206/\346\250\241\345\205\267\347\256\241\347\220\206/ClsSb_MouldRepairWorkBill.cs"
@@ -65,9 +65,10 @@
                 ",HInnerBillNo='" + omodel.HInnerBillNo + "'" +
                 ",HRepairAccepDate='" + omodel.HRepairAccepDate + "'" +
                 ",HSupID=" + omodel.HSupID.ToString() +
-                ",HRepairType='" + omodel.HRepairType + "'" +
+                ",HRepairType='" + omodel.HRepairType + "'" + 
                 ",HNewModel='" + omodel.HNewModel + "'" +
                 ",HMainSourceBillType='"+ omodel.HMainSourceBillType+"'"+
+                ",HMainSourceBillNo='" + omodel.HMainSourceBillNo + "'" +
                 ",HMainSourceInterID=" + omodel.HMainSourceInterID.ToString()+
                 ",HMainSourceEntryID="+ omodel.HMainSourceEntryID.ToString()+
                 ",HNewDesignLife=" + omodel.HNewDesignLife.ToString() +
@@ -161,7 +162,7 @@
                 ",HEquipID,HRepairID,HRepairBeginDate,HRepairEndDate,HRepairContent" +                
                 ",HCycleUnit,HPlanTimes,HTimes,HEmpID,HManagerID"+
                 ",HDeptID,HExplanation,HInnerBillNo,HMouldID" +
-                ",HSupID,HRepairType,HNewModel,HNewDesignLife,HMainSourceBillType,HMainSourceInterID,HMainSourceEntryID" +
+                ",HSupID,HRepairType,HNewModel,HNewDesignLife,HMainSourceBillType,HMainSourceBillNo,HMainSourceInterID,HMainSourceEntryID" +
                 ",HRepairAccepDate" +
                 ") " +
                 " values('" + this.BillType + "','"  + this.HBillSubType + "'," +omodel.HInterID.ToString() + ",'" + omodel.HBillNo + "','" + omodel.HDate + "'" +
@@ -169,7 +170,7 @@
                 "," + omodel.HEquipID.ToString() + "," + omodel.HRepairID.ToString() + ",'" + omodel.HRepairBeginDate + "','" + omodel.HRepairEndDate + "','" + omodel.HRepairContent + "'" +
                 ",'" + omodel.HCycleUnit + "'," + omodel.HPlanTimes.ToString() + "," + omodel.HTimes.ToString() + "," + omodel.HEmpID.ToString() + "," + omodel.HManagerID.ToString() +
                 "," + omodel.HDeptID.ToString() + ",'" + omodel.HExplanation + "','" + omodel.HInnerBillNo + "'," + omodel.HMouldID.ToString() +
-                 ", " + omodel.HSupID.ToString() + ",'" + omodel.HRepairType + "','" + omodel.HNewModel + "'," + omodel.HNewDesignLife.ToString() +",'"+ omodel.HMainSourceBillType+"',"+ omodel.HMainSourceInterID.ToString()+","+ omodel.HMainSourceEntryID.ToString()+
+                 ", " + omodel.HSupID.ToString() + ",'" + omodel.HRepairType + "','" + omodel.HNewModel + "'," + omodel.HNewDesignLife.ToString() +",'"+ omodel.HMainSourceBillType+ "','" + omodel.HMainSourceBillNo + "'," + omodel.HMainSourceInterID.ToString()+","+ omodel.HMainSourceEntryID.ToString()+
                 ",'"+ omodel.HRepairAccepDate + "') ");
                 //鎻掑叆瀛愯〃
                 foreach (Model.ClsSb_MouldRepairWorkBillSub oSub in DetailColl)

--
Gitblit v1.9.1