Added ProdInfo readings

This commit is contained in:
Samuele Locatelli
2020-05-30 16:53:18 +02:00
parent ac4ec61f44
commit 2e703010b2
2 changed files with 43 additions and 7 deletions
+7 -7
View File
@@ -705,13 +705,13 @@ namespace CMS_CORE_Library.Models
public class ProdInfo
{
public ushort NumTarget { get; set; } = 0;
public ushort NumDone { get; set; } = 0;
public uint TimeWarm { get; set; } = 0;
public uint TimeVent { get; set; } = 0;
public uint TimeVacuum { get; set; } = 0;
public uint TimeCycleGross { get; set; } = 0;
public uint TimeCycleNet { get; set; } = 0;
public short NumTarget { get; set; } = 0;
public short NumDone { get; set; } = 0;
public int TimeWarm { get; set; } = 0;
public int TimeVent { get; set; } = 0;
public int TimeVacuum { get; set; } = 0;
public int TimeCycleGross { get; set; } = 0;
public int TimeCycleNet { get; set; } = 0;
public double MaterialTempEndWarm { get; set; } = 0;
public double MaterialTempEndVent { get; set; } = 0;
public double MoldTemp { get; set; } = 0;