WIP Assisted Tooling

This commit is contained in:
Lucio Maranta
2019-03-11 16:16:34 +00:00
parent 254898cfa2
commit 49e8286710
10 changed files with 213 additions and 18 deletions
+16
View File
@@ -152,6 +152,13 @@ namespace CMS_CORE_Library.Models
REAL = 4
}
public enum ASSISTED_TOOLING_ACTION
{
NONE = 0,
UNLOAD = 1,
EXCHANGE = 2
}
public static IFormatProvider numberFormat = (NumberFormatInfo)CultureInfo.InvariantCulture.NumberFormat.Clone();
#region Cms Errors Codes
@@ -391,6 +398,15 @@ namespace CMS_CORE_Library.Models
public short ActiveOffsetId { get; set; }
}
public class AssistedToolingModel
{
public bool IsActive { get; set; }
public ushort ToolId { get; set; }
public ushort MagazineId { get; set; }
public ushort PositionId { get; set; }
public ASSISTED_TOOLING_ACTION Action { get; set; }
}
public enum ORIGIN
{
NONE = 0,