diff --git a/Models/App.Config b/Models/App.Config
index 994d613..89b21ce 100644
--- a/Models/App.Config
+++ b/Models/App.Config
@@ -3,8 +3,5 @@
-
-
-
-
+
\ No newline at end of file
diff --git a/Models/ProgramsUsed.cs b/Models/AuxDslvQueue.cs
similarity index 58%
rename from Models/ProgramsUsed.cs
rename to Models/AuxDslvQueue.cs
index ae86d5a..b9bddbc 100644
--- a/Models/ProgramsUsed.cs
+++ b/Models/AuxDslvQueue.cs
@@ -12,18 +12,18 @@ namespace Models
using System;
using System.Collections.Generic;
- public partial class ProgramsUsed
+ public partial class AuxDslvQueue
{
- public int ID { get; set; }
+ public Nullable TankNo { get; set; }
public string Dyelot { get; set; }
public int ReDye { get; set; }
- public string Program { get; set; }
- public string Name { get; set; }
- public string Steps { get; set; }
- public Nullable StepsNoBpCrc { get; set; }
- public Nullable ComputedTime { get; set; }
- public Nullable MaxTemperature { get; set; }
+ public Nullable StepNumber { get; set; }
+ public string Station { get; set; }
+ public Nullable Industry { get; set; }
+ public Nullable State { get; set; }
public string Machine { get; set; }
- public System.DateTime StartTime { get; set; }
+ public string Volume { get; set; }
+ public Nullable ShelfID { get; set; }
+ public Nullable Updated { get; set; }
}
}
diff --git a/Models/AuxDslvQueueHistory.cs b/Models/AuxDslvQueueHistory.cs
new file mode 100644
index 0000000..42287b5
--- /dev/null
+++ b/Models/AuxDslvQueueHistory.cs
@@ -0,0 +1,29 @@
+//------------------------------------------------------------------------------
+//
+// 此代码已从模板生成。
+//
+// 手动更改此文件可能导致应用程序出现意外的行为。
+// 如果重新生成代码,将覆盖对此文件的手动更改。
+//
+//------------------------------------------------------------------------------
+
+namespace Models
+{
+ using System;
+ using System.Collections.Generic;
+
+ public partial class AuxDslvQueueHistory
+ {
+ public Nullable TankNo { get; set; }
+ public string Dyelot { get; set; }
+ public int ReDye { get; set; }
+ public Nullable StepNumber { get; set; }
+ public string Station { get; set; }
+ public Nullable Industry { get; set; }
+ public Nullable State { get; set; }
+ public string Machine { get; set; }
+ public string Volume { get; set; }
+ public Nullable ShelfID { get; set; }
+ public Nullable Created { get; set; }
+ }
+}
diff --git a/Models/BucketCrane.cs b/Models/BucketCrane.cs
new file mode 100644
index 0000000..1a6f8ce
--- /dev/null
+++ b/Models/BucketCrane.cs
@@ -0,0 +1,26 @@
+//------------------------------------------------------------------------------
+//
+// 此代码已从模板生成。
+//
+// 手动更改此文件可能导致应用程序出现意外的行为。
+// 如果重新生成代码,将覆盖对此文件的手动更改。
+//
+//------------------------------------------------------------------------------
+
+namespace Models
+{
+ using System;
+ using System.Collections.Generic;
+
+ public partial class BucketCrane
+ {
+ public string Dyelot { get; set; }
+ public Nullable ReDye { get; set; }
+ public Nullable StepNumber { get; set; }
+ public Nullable DevideNo { get; set; }
+ public Nullable BucketNo { get; set; }
+ public string DID { get; set; }
+ public Nullable State { get; set; }
+ public Nullable Updated { get; set; }
+ }
+}
diff --git a/Models/BucketCraneHistory.cs b/Models/BucketCraneHistory.cs
new file mode 100644
index 0000000..5647989
--- /dev/null
+++ b/Models/BucketCraneHistory.cs
@@ -0,0 +1,26 @@
+//------------------------------------------------------------------------------
+//
+// 此代码已从模板生成。
+//
+// 手动更改此文件可能导致应用程序出现意外的行为。
+// 如果重新生成代码,将覆盖对此文件的手动更改。
+//
+//------------------------------------------------------------------------------
+
+namespace Models
+{
+ using System;
+ using System.Collections.Generic;
+
+ public partial class BucketCraneHistory
+ {
+ public string Dyelot { get; set; }
+ public Nullable ReDye { get; set; }
+ public Nullable StepNumber { get; set; }
+ public Nullable DevideNo { get; set; }
+ public Nullable BucketNo { get; set; }
+ public string DID { get; set; }
+ public Nullable State { get; set; }
+ public Nullable Created { get; set; }
+ }
+}
diff --git a/Models/BucketShelf.cs b/Models/BucketShelf.cs
index a2c2a86..dfb20a6 100644
--- a/Models/BucketShelf.cs
+++ b/Models/BucketShelf.cs
@@ -28,5 +28,8 @@ namespace Models
public Nullable State { get; set; }
public Nullable OnShelfTime { get; set; }
public string UserAccount { get; set; }
+ public Nullable Locked { get; set; }
+ public string ProductCode { get; set; }
+ public string OriginDyelot { get; set; }
}
}
diff --git a/Models/BucketShelfHistory.cs b/Models/BucketShelfHistory.cs
index bcb3525..492014a 100644
--- a/Models/BucketShelfHistory.cs
+++ b/Models/BucketShelfHistory.cs
@@ -28,5 +28,8 @@ namespace Models
public Nullable State { get; set; }
public Nullable OnShelfTime { get; set; }
public string UserAccount { get; set; }
+ public Nullable Locked { get; set; }
+ public string ProductCode { get; set; }
+ public string OriginDyelot { get; set; }
}
}
diff --git a/Models/record.cs b/Models/CleanDevice.cs
similarity index 73%
rename from Models/record.cs
rename to Models/CleanDevice.cs
index 4382161..59e91a5 100644
--- a/Models/record.cs
+++ b/Models/CleanDevice.cs
@@ -12,10 +12,10 @@ namespace Models
using System;
using System.Collections.Generic;
- public partial class record
+ public partial class CleanDevice
{
- public int ID { get; set; }
- public string record1 { get; set; }
- public Nullable time { get; set; }
+ public string ID { get; set; }
+ public Nullable State { get; set; }
+ public Nullable Enabled { get; set; }
}
}
diff --git a/Models/DBRDetail.cs b/Models/DBRDetail.cs
new file mode 100644
index 0000000..6b5a017
--- /dev/null
+++ b/Models/DBRDetail.cs
@@ -0,0 +1,40 @@
+//------------------------------------------------------------------------------
+//
+// 此代码已从模板生成。
+//
+// 手动更改此文件可能导致应用程序出现意外的行为。
+// 如果重新生成代码,将覆盖对此文件的手动更改。
+//
+//------------------------------------------------------------------------------
+
+namespace Models
+{
+ using System;
+ using System.Collections.Generic;
+
+ public partial class DBRDetail
+ {
+ public long ID { get; set; }
+ public string Dyelot { get; set; }
+ public int Redye { get; set; }
+ public int StepNumber { get; set; }
+ public string ProductCode { get; set; }
+ public string ProductName { get; set; }
+ public Nullable Grams { get; set; }
+ public Nullable DispenseGrams { get; set; }
+ public Nullable Buckets { get; set; }
+ public System.DateTime DispenseStartTime { get; set; }
+ public Nullable DispenseEndTime { get; set; }
+ public Nullable DispenseSeconds { get; set; }
+ public Nullable ProductStartTime { get; set; }
+ public Nullable ProductEndTime { get; set; }
+ public Nullable ProductSeconds { get; set; }
+ public Nullable LDXGrams { get; set; }
+ public Nullable LDXBuckets { get; set; }
+ public Nullable IsDeduct { get; set; }
+ public Nullable DeductBox { get; set; }
+ public string BoxNo { get; set; }
+ public Nullable DispenseResult { get; set; }
+ public Nullable BucketWeight { get; set; }
+ }
+}
diff --git a/Models/DispenserEvent.cs b/Models/DispenserEvent.cs
new file mode 100644
index 0000000..e40815b
--- /dev/null
+++ b/Models/DispenserEvent.cs
@@ -0,0 +1,34 @@
+//------------------------------------------------------------------------------
+//
+// 此代码已从模板生成。
+//
+// 手动更改此文件可能导致应用程序出现意外的行为。
+// 如果重新生成代码,将覆盖对此文件的手动更改。
+//
+//------------------------------------------------------------------------------
+
+namespace Models
+{
+ using System;
+ using System.Collections.Generic;
+
+ public partial class DispenserEvent
+ {
+ public int EventID { get; set; }
+ public Nullable EventType { get; set; }
+ public string Dispenser { get; set; }
+ public string Device { get; set; }
+ public string Dyelot { get; set; }
+ public Nullable ReDye { get; set; }
+ public Nullable StepNumber { get; set; }
+ public Nullable Code { get; set; }
+ public string Description { get; set; }
+ public string Description_BIG { get; set; }
+ public string Description_GB { get; set; }
+ public Nullable CreateDate { get; set; }
+ public Nullable ConfirmDate { get; set; }
+ public Nullable FinishDate { get; set; }
+ public string Shift { get; set; }
+ public string UserAccount { get; set; }
+ }
+}
diff --git a/Models/DispenserLifeStatus.cs b/Models/DispenserLifeStatus.cs
new file mode 100644
index 0000000..c6d890d
--- /dev/null
+++ b/Models/DispenserLifeStatus.cs
@@ -0,0 +1,24 @@
+//------------------------------------------------------------------------------
+//
+// 此代码已从模板生成。
+//
+// 手动更改此文件可能导致应用程序出现意外的行为。
+// 如果重新生成代码,将覆盖对此文件的手动更改。
+//
+//------------------------------------------------------------------------------
+
+namespace Models
+{
+ using System;
+ using System.Collections.Generic;
+
+ public partial class DispenserLifeStatus
+ {
+ public string Dispenser { get; set; }
+ public string Device { get; set; }
+ public Nullable HeartBeat { get; set; }
+ public Nullable LifeTime { get; set; }
+ public Nullable UpdateDate { get; set; }
+ public Nullable Created { get; set; }
+ }
+}
diff --git a/Models/DispenserUtilization.cs b/Models/DispenserUtilization.cs
index eb22bfd..17dbf31 100644
--- a/Models/DispenserUtilization.cs
+++ b/Models/DispenserUtilization.cs
@@ -15,7 +15,12 @@ namespace Models
public partial class DispenserUtilization
{
public string Dispenser { get; set; }
- public Nullable UtilDate { get; set; }
+ public string Device { get; set; }
+ public string Dyelot { get; set; }
+ public Nullable ReDye { get; set; }
+ public Nullable StepNumber { get; set; }
+ public Nullable UtilStartDate { get; set; }
+ public Nullable UtilEndDate { get; set; }
public Nullable UtilTimes { get; set; }
public string UserAccount { get; set; }
}
diff --git a/Models/Dispensers.cs b/Models/Dispensers.cs
index 7a7d073..1db2963 100644
--- a/Models/Dispensers.cs
+++ b/Models/Dispensers.cs
@@ -23,6 +23,9 @@ namespace Models
public string Station { get; set; }
public Nullable State { get; set; }
public string Status { get; set; }
+ public string Action { get; set; }
+ public string ProductCode { get; set; }
+ public Nullable SN { get; set; }
public Nullable Automatic { get; set; }
public Nullable Enabled { get; set; }
public Nullable HeartBeat { get; set; }
diff --git a/Models/DissolveArt.cs b/Models/DissolveArt.cs
new file mode 100644
index 0000000..ee2dec3
--- /dev/null
+++ b/Models/DissolveArt.cs
@@ -0,0 +1,29 @@
+//------------------------------------------------------------------------------
+//
+// 此代码已从模板生成。
+//
+// 手动更改此文件可能导致应用程序出现意外的行为。
+// 如果重新生成代码,将覆盖对此文件的手动更改。
+//
+//------------------------------------------------------------------------------
+
+namespace Models
+{
+ using System;
+ using System.Collections.Generic;
+
+ public partial class DissolveArt
+ {
+ public string Name { get; set; }
+ public Nullable ProductClass { get; set; }
+ public Nullable LiquidRatio { get; set; }
+ public Nullable MinWeight { get; set; }
+ public Nullable MaxWeight { get; set; }
+ public Nullable DissolveTemperature { get; set; }
+ public Nullable UseLiquidDye { get; set; }
+ public Nullable UseChemical { get; set; }
+ public string Process { get; set; }
+ public Nullable TankSize { get; set; }
+ public Nullable Created { get; set; }
+ }
+}
diff --git a/Models/DissolveArtHistory.cs b/Models/DissolveArtHistory.cs
new file mode 100644
index 0000000..9bb1e32
--- /dev/null
+++ b/Models/DissolveArtHistory.cs
@@ -0,0 +1,29 @@
+//------------------------------------------------------------------------------
+//
+// 此代码已从模板生成。
+//
+// 手动更改此文件可能导致应用程序出现意外的行为。
+// 如果重新生成代码,将覆盖对此文件的手动更改。
+//
+//------------------------------------------------------------------------------
+
+namespace Models
+{
+ using System;
+ using System.Collections.Generic;
+
+ public partial class DissolveArtHistory
+ {
+ public string Name { get; set; }
+ public Nullable ProductClass { get; set; }
+ public Nullable LiquidRatio { get; set; }
+ public Nullable MinWeight { get; set; }
+ public Nullable MaxWeight { get; set; }
+ public Nullable DissolveTemperature { get; set; }
+ public Nullable UseLiquidDye { get; set; }
+ public Nullable UseChemical { get; set; }
+ public string Process { get; set; }
+ public Nullable TankSize { get; set; }
+ public Nullable Updated { get; set; }
+ }
+}
diff --git a/Models/Dyelots.cs b/Models/Dyelots.cs
index ac1cbea..985faf0 100644
--- a/Models/Dyelots.cs
+++ b/Models/Dyelots.cs
@@ -46,38 +46,22 @@ namespace Models
public string ReferenceDyelot { get; set; }
public Nullable Final { get; set; }
public Nullable Shade { get; set; }
+ public Nullable OnSchedule { get; set; }
+ public Nullable DyeStep { get; set; }
+ public Nullable PowderBlocked { get; set; }
+ public Nullable PowderOnSchedule { get; set; }
+ public Nullable PowderStep { get; set; }
+ public string DispensedVolume { get; set; }
+ public Nullable Times { get; set; }
public string UserAccount { get; set; }
public string FabricName { get; set; }
+ public string ColorNo { get; set; }
public string ColorName { get; set; }
public string CustomerName { get; set; }
public string CUSTOMER_CODE { get; set; }
public string FABRIC_CODE { get; set; }
public Nullable GRAMS_YARD { get; set; }
- public Nullable NeedDissolving { get; set; }
- public Nullable EarliestStartTime { get; set; }
- public Nullable Committed { get; set; }
- public string Parameters { get; set; }
- public string Notes { get; set; }
- public Nullable SummarizeResult { get; set; }
- public string ProgramsUsed { get; set; }
- public string ColorNo { get; set; }
public Nullable ModifyDT { get; set; }
public Nullable CreateDT { get; set; }
- public Nullable Yard { get; set; }
- public string SheetNo { get; set; }
- public Nullable AlarmTime { get; set; }
- public string ExRead { get; set; }
- public string FactoryTicketNo { get; set; }
- public string DyeingBatch { get; set; }
- public string EOCAlarms { get; set; }
- public Nullable RunTime { get; set; }
- public Nullable ProcessTime { get; set; }
- public Nullable NormalTime { get; set; }
- public Nullable SleepTime { get; set; }
- public Nullable DelayTime { get; set; }
- public string EOCDelays { get; set; }
- public Nullable DyelotStartShift { get; set; }
- public Nullable DyelotEndShift { get; set; }
- public short DyeDissolving { get; set; }
}
}
diff --git a/Models/DyelotsBulkedRecipe.cs b/Models/DyelotsBulkedRecipe.cs
index f29cfdf..e5c07b1 100644
--- a/Models/DyelotsBulkedRecipe.cs
+++ b/Models/DyelotsBulkedRecipe.cs
@@ -57,8 +57,8 @@ namespace Models
public Nullable DissolveTemperature { get; set; }
public Nullable SchDispenseTime { get; set; }
public string UserAccount { get; set; }
- public Nullable TargetGrams { get; set; }
- public Nullable ActualGrams { get; set; }
+ public Nullable TargetGrams { get; set; }
+ public Nullable ActualGrams { get; set; }
public Nullable FinishTime { get; set; }
public string Tagged { get; set; }
public Nullable TotalBuckets { get; set; }
@@ -67,16 +67,19 @@ namespace Models
public Nullable Concentration { get; set; }
public Nullable DeductTotalBuckets { get; set; }
public Nullable DeductBuckets { get; set; }
- public Nullable Kilograms { get; set; }
- public Nullable DKilograms { get; set; }
- public Nullable DyelotID { get; set; }
- public Nullable MixTemperature { get; set; }
- public Nullable MixVolume { get; set; }
- public Nullable MixTime { get; set; }
- public Nullable MixWater { get; set; }
- public Nullable RoWater { get; set; }
- public string Notes { get; set; }
- public Nullable ProductIndex { get; set; }
- public double GRAVITY { get; set; }
+ public Nullable Flow { get; set; }
+ public Nullable CallTime { get; set; }
+ public Nullable BreakGrams { get; set; }
+ public Nullable RecoveryAction { get; set; }
+ public Nullable SmallDye { get; set; }
+ public string PrepareTank { get; set; }
+ public Nullable DeductBox { get; set; }
+ public Nullable Shade { get; set; }
+ public string stuffid { get; set; }
+ public string tfname { get; set; }
+ public string tftips { get; set; }
+ public string program { get; set; }
+ public Nullable dosage { get; set; }
+ public string groupid { get; set; }
}
}
diff --git a/Models/Programs.cs b/Models/LA571Tanks.cs
similarity index 56%
rename from Models/Programs.cs
rename to Models/LA571Tanks.cs
index 93aa2f4..7069018 100644
--- a/Models/Programs.cs
+++ b/Models/LA571Tanks.cs
@@ -12,16 +12,12 @@ namespace Models
using System;
using System.Collections.Generic;
- public partial class Programs
+ public partial class LA571Tanks
{
- public string ProgramGroup { get; set; }
- public int ProgramNumber { get; set; }
public string Name { get; set; }
- public string Steps { get; set; }
- public string Notes { get; set; }
- public Nullable ModifiedTime { get; set; }
- public Nullable StandardTime { get; set; }
-
- public virtual ProgramGroups ProgramGroups { get; set; }
+ public string Station { get; set; }
+ public Nullable Tank { get; set; }
+ public Nullable Volume { get; set; }
+ public Nullable State { get; set; }
}
}
diff --git a/Models/LabDyeDslvQueue.cs b/Models/LabDyeDslvQueue.cs
new file mode 100644
index 0000000..c5bac6b
--- /dev/null
+++ b/Models/LabDyeDslvQueue.cs
@@ -0,0 +1,27 @@
+//------------------------------------------------------------------------------
+//
+// 此代码已从模板生成。
+//
+// 手动更改此文件可能导致应用程序出现意外的行为。
+// 如果重新生成代码,将覆盖对此文件的手动更改。
+//
+//------------------------------------------------------------------------------
+
+namespace Models
+{
+ using System;
+ using System.Collections.Generic;
+
+ public partial class LabDyeDslvQueue
+ {
+ public Nullable TankNo { get; set; }
+ public string Dyelot { get; set; }
+ public int ReDye { get; set; }
+ public Nullable StepNumber { get; set; }
+ public Nullable State { get; set; }
+ public Nullable ShelfID { get; set; }
+ public Nullable DistID { get; set; }
+ public Nullable SchDispenseTime { get; set; }
+ public Nullable Updated { get; set; }
+ }
+}
diff --git a/Models/LabDyeDslvQueueHistory.cs b/Models/LabDyeDslvQueueHistory.cs
new file mode 100644
index 0000000..c974e48
--- /dev/null
+++ b/Models/LabDyeDslvQueueHistory.cs
@@ -0,0 +1,27 @@
+//------------------------------------------------------------------------------
+//
+// 此代码已从模板生成。
+//
+// 手动更改此文件可能导致应用程序出现意外的行为。
+// 如果重新生成代码,将覆盖对此文件的手动更改。
+//
+//------------------------------------------------------------------------------
+
+namespace Models
+{
+ using System;
+ using System.Collections.Generic;
+
+ public partial class LabDyeDslvQueueHistory
+ {
+ public Nullable TankNo { get; set; }
+ public string Dyelot { get; set; }
+ public int ReDye { get; set; }
+ public Nullable StepNumber { get; set; }
+ public Nullable State { get; set; }
+ public Nullable ShelfID { get; set; }
+ public Nullable DistID { get; set; }
+ public Nullable SchDispenseTime { get; set; }
+ public Nullable Created { get; set; }
+ }
+}
diff --git a/Models/Machines.cs b/Models/Machines.cs
index cd55140..ea78431 100644
--- a/Models/Machines.cs
+++ b/Models/Machines.cs
@@ -81,35 +81,8 @@ namespace Models
public string CheDispenseDyelot { get; set; }
public Nullable CheDispenseReDye { get; set; }
public Nullable SampleDye { get; set; }
- public string name1 { get; set; }
- public string Parameters { get; set; }
- public string ProgramGroup { get; set; }
- public string ReportGroup { get; set; }
- public string PortAddress { get; set; }
- public Nullable Interrupt { get; set; }
- public Nullable NetworkNumber { get; set; }
- public string SpecificMachineMimic { get; set; }
- public Nullable OutOfService { get; set; }
- public Nullable IsGhost { get; set; }
- public Nullable ManualDownloadOnly { get; set; }
- public string LogicArtPort { get; set; }
- public Nullable GastonLoggedOn { get; set; }
- public Nullable DEnabled { get; set; }
- public Nullable DLookAhead { get; set; }
- public Nullable LogicArtUnlocked { get; set; }
- public Nullable MaximumGradient { get; set; }
- public string LoggedOffReason { get; set; }
- public string LoggedOffNotes { get; set; }
- public Nullable AutoDispense { get; set; }
- public Nullable AllowRemoteReschedule { get; set; }
- public Nullable CorrectionsAbove { get; set; }
- public Nullable Is161 { get; set; }
- public Nullable Locked { get; set; }
- public Nullable AutoDownloadParams { get; set; }
- public Nullable NoAutoDownloadMessages { get; set; }
- public string TonelloIP { get; set; }
- public string Test { get; set; }
- public string MainTemperature { get; set; }
- public Nullable CallType { get; set; }
+ public string OnDevice { get; set; }
+ public string PwdDispenseDyelot { get; set; }
+ public Nullable PwdDispenseReDye { get; set; }
}
}
diff --git a/Models/MachinesHistory.cs b/Models/MachinesHistory.cs
index 562e255..4f601b8 100644
--- a/Models/MachinesHistory.cs
+++ b/Models/MachinesHistory.cs
@@ -41,6 +41,10 @@ namespace Models
public Nullable HostRead { get; set; }
public string DyeDispenseDyelot { get; set; }
public Nullable DyeDispenseReDye { get; set; }
+ public string CheDispenseDyelot { get; set; }
+ public Nullable CheDispenseReDye { get; set; }
+ public string PwdDispenseDyelot { get; set; }
+ public Nullable PwdDispenseReDye { get; set; }
public Nullable Updated { get; set; }
}
}
diff --git a/Models/MachinesHistoryOld.cs b/Models/MachinesHistoryOld.cs
new file mode 100644
index 0000000..2cf3521
--- /dev/null
+++ b/Models/MachinesHistoryOld.cs
@@ -0,0 +1,46 @@
+//------------------------------------------------------------------------------
+//
+// 此代码已从模板生成。
+//
+// 手动更改此文件可能导致应用程序出现意外的行为。
+// 如果重新生成代码,将覆盖对此文件的手动更改。
+//
+//------------------------------------------------------------------------------
+
+namespace Models
+{
+ using System;
+ using System.Collections.Generic;
+
+ public partial class MachinesHistoryOld
+ {
+ public string Machine { get; set; }
+ public string DispenseDyelot { get; set; }
+ public Nullable DispenseReDye { get; set; }
+ public Nullable ChemicalCallOff { get; set; }
+ public Nullable ChemicalState { get; set; }
+ public Nullable ChemicalTank { get; set; }
+ public Nullable ChemicalTankSize { get; set; }
+ public string ChemicalDispenser { get; set; }
+ public Nullable ChemicalError { get; set; }
+ public Nullable ChemicalCallOff2 { get; set; }
+ public Nullable ChemicalState2 { get; set; }
+ public Nullable ChemicalTank2 { get; set; }
+ public Nullable DyeCallOff { get; set; }
+ public Nullable DyeState { get; set; }
+ public Nullable DyeTank { get; set; }
+ public Nullable DyeTankSize { get; set; }
+ public string DyeDispenser { get; set; }
+ public Nullable DyeError { get; set; }
+ public Nullable PowderCallOff { get; set; }
+ public Nullable PowderState { get; set; }
+ public Nullable PowderTank { get; set; }
+ public Nullable PowderTankSize { get; set; }
+ public string PowderDispenser { get; set; }
+ public Nullable PowderError { get; set; }
+ public Nullable HostRead { get; set; }
+ public string DyeDispenseDyelot { get; set; }
+ public Nullable DyeDispenseReDye { get; set; }
+ public Nullable Updated { get; set; }
+ }
+}
diff --git a/Models/Models.csproj b/Models/Models.csproj
index e4c91dc..f2cfa26 100644
--- a/Models/Models.csproj
+++ b/Models/Models.csproj
@@ -68,7 +68,16 @@
-
+
+ SQL_BD.tt
+
+
+ SQL_BD.tt
+
+
+ SQL_BD.tt
+
+
SQL_BD.tt
@@ -86,10 +95,16 @@
SQL_BD.tt
-
+
+ SQL_BD.tt
+
+
SQL_BD.tt
-
+
+ SQL_BD.tt
+
+
SQL_BD.tt
@@ -98,6 +113,12 @@
SQL_BD.tt
+
+ SQL_BD.tt
+
+
+ SQL_BD.tt
+
SQL_BD.tt
@@ -119,25 +140,19 @@
SQL_BD.tt
-
- SQL_BD.tt
-
SQL_BD.tt
SQL_BD.tt
-
SQL_BD.tt
SQL_BD.tt
-
- SQL_BD.tt
-
+
SQL_BD.tt
@@ -152,12 +167,24 @@
SQL_BD.tt
+
+ SQL_BD.tt
+
+
+ SQL_BD.tt
+
+
+ SQL_BD.tt
+
SQL_BD.tt
SQL_BD.tt
+
+ SQL_BD.tt
+
SQL_BD.tt
@@ -177,7 +204,10 @@
SQL_BD.tt
-
+
+ SQL_BD.tt
+
+
SQL_BD.tt
@@ -186,16 +216,13 @@
SQL_Ti.tt
-
-
- SQL_BD.tt
-
-
+
SQL_BD.tt
-
+
SQL_BD.tt
+
SQL_BD.tt
@@ -203,18 +230,36 @@
SQL_BD.tt
-
+
+ SQL_BD.tt
+
+
SQL_BD.tt
SQL_BD.tt
+
+ SQL_BD.tt
+
+
+ SQL_BD.tt
+
SQL_BD.tt
+
+ SQL_BD.tt
+
+
+ SQL_BD.tt
+
SQL_BD.tt
+
+ SQL_BD.tt
+
True
True
@@ -245,13 +290,7 @@
True
SQL_Ti.edmx
-
- SQL_BD.tt
-
-
- SQL_BD.tt
-
-
+
SQL_BD.tt
@@ -260,21 +299,19 @@
+
+
+
+ EntityModelCodeGenerator
+ SQL_Ti.Designer.cs
+
EntityModelCodeGenerator
SQL_BD.Designer.cs
-
-
-
-
SQL_BD.edmx
-
- EntityModelCodeGenerator
- SQL_Ti.Designer.cs
-
SQL_Ti.edmx
@@ -282,8 +319,8 @@
TextTemplatingFileGenerator
- SQL_BD.Context.cs
SQL_BD.edmx
+ SQL_BD.Context.cs
TextTemplatingFileGenerator
diff --git a/Models/PartsStatus.cs b/Models/PartsStatus.cs
index d3542c0..b800173 100644
--- a/Models/PartsStatus.cs
+++ b/Models/PartsStatus.cs
@@ -16,6 +16,7 @@ namespace Models
{
public string CUST_CODE { get; set; }
public string Dispenser { get; set; }
+ public string Device { get; set; }
public string PartsCode { get; set; }
public string PartsName { get; set; }
public Nullable PartsType { get; set; }
diff --git a/Models/PartsStatusHistory.cs b/Models/PartsStatusHistory.cs
index c7a1942..1eff9d8 100644
--- a/Models/PartsStatusHistory.cs
+++ b/Models/PartsStatusHistory.cs
@@ -16,6 +16,7 @@ namespace Models
{
public string CUST_CODE { get; set; }
public string Dispenser { get; set; }
+ public string Device { get; set; }
public string PartsCode { get; set; }
public string PartsName { get; set; }
public Nullable PartsType { get; set; }
diff --git a/Models/PipeRefill.cs b/Models/PipeRefill.cs
new file mode 100644
index 0000000..8569eba
--- /dev/null
+++ b/Models/PipeRefill.cs
@@ -0,0 +1,29 @@
+//------------------------------------------------------------------------------
+//
+// 此代码已从模板生成。
+//
+// 手动更改此文件可能导致应用程序出现意外的行为。
+// 如果重新生成代码,将覆盖对此文件的手动更改。
+//
+//------------------------------------------------------------------------------
+
+namespace Models
+{
+ using System;
+ using System.Collections.Generic;
+
+ public partial class PipeRefill
+ {
+ public string ProductCode { get; set; }
+ public string ProductName { get; set; }
+ public Nullable ProductType { get; set; }
+ public string ProductLot { get; set; }
+ public string Dispenser { get; set; }
+ public Nullable No { get; set; }
+ public Nullable Qty { get; set; }
+ public Nullable Percentage { get; set; }
+ public Nullable RefillTime { get; set; }
+ public Nullable AlarmTime { get; set; }
+ public Nullable Updated { get; set; }
+ }
+}
diff --git a/Models/PipeHistory.cs b/Models/PipeRefillHistory.cs
similarity index 81%
rename from Models/PipeHistory.cs
rename to Models/PipeRefillHistory.cs
index f261134..132d4a5 100644
--- a/Models/PipeHistory.cs
+++ b/Models/PipeRefillHistory.cs
@@ -12,16 +12,17 @@ namespace Models
using System;
using System.Collections.Generic;
- public partial class PipeHistory
+ public partial class PipeRefillHistory
{
public string ProductCode { get; set; }
public string ProductName { get; set; }
public Nullable ProductType { get; set; }
+ public string ProductLot { get; set; }
public string Dispenser { get; set; }
public Nullable No { get; set; }
public Nullable Qty { get; set; }
- public Nullable StartTime { get; set; }
- public Nullable EndTime { get; set; }
+ public Nullable Percentage { get; set; }
+ public Nullable RefillTime { get; set; }
public Nullable AlarmTime { get; set; }
public Nullable Created { get; set; }
}
diff --git a/Models/Pipes.cs b/Models/Pipes.cs
index c686e9a..03956fb 100644
--- a/Models/Pipes.cs
+++ b/Models/Pipes.cs
@@ -17,6 +17,7 @@ namespace Models
public string ProductCode { get; set; }
public string ProductName { get; set; }
public Nullable ProductType { get; set; }
+ public string ProductLot { get; set; }
public string Dispenser { get; set; }
public Nullable Enabled { get; set; }
public Nullable No { get; set; }
diff --git a/Models/ProductLocation.cs b/Models/ProductLocation.cs
new file mode 100644
index 0000000..2ab6fe3
--- /dev/null
+++ b/Models/ProductLocation.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// 此代码已从模板生成。
+//
+// 手动更改此文件可能导致应用程序出现意外的行为。
+// 如果重新生成代码,将覆盖对此文件的手动更改。
+//
+//------------------------------------------------------------------------------
+
+namespace Models
+{
+ using System;
+ using System.Collections.Generic;
+
+ public partial class ProductLocation
+ {
+ public string ProductCode { get; set; }
+ public string ProductName { get; set; }
+ public string Type { get; set; }
+ public string Dispenser { get; set; }
+ public Nullable Position { get; set; }
+ public string TablePosition { get; set; }
+ public Nullable StockDate { get; set; }
+ public Nullable StockUsage { get; set; }
+ public Nullable StockOnHand { get; set; }
+ public string Alarm { get; set; }
+ public Nullable AlarmTime { get; set; }
+ public Nullable Enabled { get; set; }
+ }
+}
diff --git a/Models/ProductLocationHistory.cs b/Models/ProductLocationHistory.cs
new file mode 100644
index 0000000..f2136bc
--- /dev/null
+++ b/Models/ProductLocationHistory.cs
@@ -0,0 +1,31 @@
+//------------------------------------------------------------------------------
+//
+// 此代码已从模板生成。
+//
+// 手动更改此文件可能导致应用程序出现意外的行为。
+// 如果重新生成代码,将覆盖对此文件的手动更改。
+//
+//------------------------------------------------------------------------------
+
+namespace Models
+{
+ using System;
+ using System.Collections.Generic;
+
+ public partial class ProductLocationHistory
+ {
+ public string ProductCode { get; set; }
+ public string ProductName { get; set; }
+ public string Type { get; set; }
+ public string Dispenser { get; set; }
+ public Nullable Position { get; set; }
+ public string TablePosition { get; set; }
+ public Nullable StockDate { get; set; }
+ public Nullable StockUsage { get; set; }
+ public Nullable StockOnHand { get; set; }
+ public string Alarm { get; set; }
+ public Nullable AlarmTime { get; set; }
+ public Nullable Enabled { get; set; }
+ public Nullable Updated { get; set; }
+ }
+}
diff --git a/Models/ProgramGroups.cs b/Models/ProgramGroups.cs
deleted file mode 100644
index 45d930f..0000000
--- a/Models/ProgramGroups.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 此代码已从模板生成。
-//
-// 手动更改此文件可能导致应用程序出现意外的行为。
-// 如果重新生成代码,将覆盖对此文件的手动更改。
-//
-//------------------------------------------------------------------------------
-
-namespace Models
-{
- using System;
- using System.Collections.Generic;
-
- public partial class ProgramGroups
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public ProgramGroups()
- {
- this.Programs = new HashSet();
- }
-
- public string Name { get; set; }
- public string UserPrompts { get; set; }
- public byte[] TypeLibrary { get; set; }
- public string Sections { get; set; }
- public Nullable MaximumPrograms { get; set; }
- public Nullable OutOfService { get; set; }
- public string DyelotParameterCommands { get; set; }
- public string CommandHelp { get; set; }
- public string UsesProgramsFromGroup { get; set; }
- public Nullable MaximumGradient { get; set; }
- public Nullable QQMinutes { get; set; }
- public Nullable MessageMinutes { get; set; }
- public string Inefficiencies { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection Programs { get; set; }
- }
-}
diff --git a/Models/RFIDRecordQueue.cs b/Models/RFIDRecordQueue.cs
index fc36e6a..0614fbb 100644
--- a/Models/RFIDRecordQueue.cs
+++ b/Models/RFIDRecordQueue.cs
@@ -24,6 +24,9 @@ namespace Models
public Nullable State { get; set; }
public Nullable