Added function that read updated tool life and status

This commit is contained in:
Lucio Maranta
2018-07-24 15:53:43 +00:00
parent ba59dd441f
commit 963431ac1f
7 changed files with 290 additions and 136 deletions
+4 -4
View File
@@ -340,7 +340,7 @@ namespace CMS_CORE_Library
TOOL_AND_POSITION_NOT_MATCHING = 21
}
internal static CmsError NO_ERROR = new CmsError(CMS_ERROR_CODES.OK, "");
public static CmsError NO_ERROR = new CmsError(CMS_ERROR_CODES.OK, "");
internal static CmsError NOT_CONNECTED_ERROR = new CmsError(CMS_ERROR_CODES.NOT_CONNECTED, "error_not_connected");
internal static CmsError PROC_NOT_FOUND_ERROR = new CmsError(CMS_ERROR_CODES.FUNCTION_NOT_ALLOWED, "error_process_not_found");
internal static CmsError FUNCTION_NOT_ALLOWED_ERROR = new CmsError(CMS_ERROR_CODES.FUNCTION_NOT_ALLOWED, "error_function_not_allowed");
@@ -702,7 +702,7 @@ namespace CMS_CORE_Library
public double WearLength { get; set; }
public double WearRadius { get; set; }
}
public class NcToolModel
{
public ushort Id { get; set; }
@@ -777,7 +777,7 @@ namespace CMS_CORE_Library
public ushort ReviveDelta { get; set; }
}
internal class NcFamilyFileModel
{
public ushort Id { get; set; }
@@ -849,6 +849,6 @@ namespace CMS_CORE_Library
public byte Disabled { get; set; }
}
#endregion
#endregion Nc Tool Manager Models
}
}