//------------------------------------------------------------------------------ // // This code was generated by a tool. // Tango Observables Generator // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. Do not modify! // //------------------------------------------------------------------------------ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Entities; namespace Tango.BL.DTO { public abstract class JobRunDTOBase : ObservableEntityDTO { /// /// machine guid /// public String MachineGuid { get; set; } /// /// job guid /// public String JobGuid { get; set; } /// /// rml guid /// public String RmlGuid { get; set; } /// /// user guid /// public String UserGuid { get; set; } /// /// job name /// public String JobName { get; set; } /// /// job designation /// public Int32 JobDesignation { get; set; } /// /// job source /// public Int32 JobSource { get; set; } /// /// job string /// public String JobString { get; set; } /// /// start date /// public DateTime StartDate { get; set; } /// /// uploading start date /// public Nullable UploadingStartDate { get; set; } /// /// heating start date /// public Nullable HeatingStartDate { get; set; } /// /// actual start date /// public Nullable ActualStartDate { get; set; } /// /// end date /// public DateTime EndDate { get; set; } /// /// status /// public Int32 Status { get; set; } /// /// job length /// public Double JobLength { get; set; } /// /// is gradient /// public Boolean IsGradient { get; set; } /// /// gradient resolution cm /// public Int32 GradientResolutionCm { get; set; } /// /// liquid quantity string /// public String LiquidQuantityString { get; set; } /// /// cyan quantity /// public Int64 CyanQuantity { get; set; } /// /// magenta quantity /// public Int64 MagentaQuantity { get; set; } /// /// yellow quantity /// public Int64 YellowQuantity { get; set; } /// /// black quantity /// public Int64 BlackQuantity { get; set; } /// /// transparent quantity /// public Int64 TransparentQuantity { get; set; } /// /// lubricant quantity /// public Int64 LubricantQuantity { get; set; } /// /// cleaner quantity /// public Int64 CleanerQuantity { get; set; } /// /// light cyan quantity /// public Int64 LightCyanQuantity { get; set; } /// /// light magenta quantity /// public Int64 LightMagentaQuantity { get; set; } /// /// light yellow quantity /// public Int64 LightYellowQuantity { get; set; } /// /// end position /// public Double EndPosition { get; set; } /// /// failed message /// public String FailedMessage { get; set; } /// /// is head cleaning /// public Boolean IsHeadCleaning { get; set; } /// /// is synchronized /// public Boolean IsSynchronized { get; set; } /// /// job logical length /// public Double JobLogicalLength { get; set; } /// /// number of units /// public Int32 NumberOfUnits { get; set; } /// /// application version /// public String ApplicationVersion { get; set; } /// /// firmware version /// public String FirmwareVersion { get; set; } /// /// ce version /// public String CeVersion { get; set; } /// /// process parameters table guid /// public String ProcessParametersTableGuid { get; set; } /// /// fine tuning string /// public String FineTuningString { get; set; } /// /// machine type /// public Int32 MachineType { get; set; } /// /// actual start position /// public Double ActualStartPosition { get; set; } /// /// actual end position /// public Double ActualEndPosition { get; set; } /// /// blue quantity /// public Int64 BlueQuantity { get; set; } /// /// light blue quantity /// public Int64 LightBlueQuantity { get; set; } /// /// orange quantity /// public Int64 OrangeQuantity { get; set; } /// /// light orange quantity /// public Int64 LightOrangeQuantity { get; set; } /// /// rubine quantity /// public Int64 RubineQuantity { get; set; } /// /// light rubine quantity /// public Int64 LightRubineQuantity { get; set; } /// /// navy quantity /// public Int64 NavyQuantity { get; set; } /// /// violet quantity /// public Int64 VioletQuantity { get; set; } /// /// tw transparent ink quantity /// public Int64 TwTransparentInkQuantity { get; set; } /// /// c1 ti quantity /// public Int64 C1TiQuantity { get; set; } /// /// tw cyan quantity /// public Int64 TwCyanQuantity { get; set; } /// /// tw light cyan quantity /// public Int64 TwLightCyanQuantity { get; set; } /// /// tw magenta quantity /// public Int64 TwMagentaQuantity { get; set; } /// /// tw light magenta quantity /// public Int64 TwLightMagentaQuantity { get; set; } /// /// tw yellow quantity /// public Int64 TwYellowQuantity { get; set; } /// /// tw light yellow quantity /// public Int64 TwLightYellowQuantity { get; set; } /// /// c1 yellow quantity /// public Int64 C1YellowQuantity { get; set; } /// /// c1 light yellow quantity /// public Int64 C1LightYellowQuantity { get; set; } /// /// tw black quantity /// public Int64 TwBlackQuantity { get; set; } /// /// tw violet quantity /// public Int64 TwVioletQuantity { get; set; } /// /// tw light violet quantity /// public Int64 TwLightVioletQuantity { get; set; } /// /// ct blue quantity /// public Int64 CtBlueQuantity { get; set; } /// /// ct light blue quantity /// public Int64 CtLightBlueQuantity { get; set; } /// /// ct rubine quantity /// public Int64 CtRubineQuantity { get; set; } /// /// ct light rubine quantity /// public Int64 CtLightRubineQuantity { get; set; } /// /// ct orange quantity /// public Int64 CtOrangeQuantity { get; set; } /// /// ct light orange quantity /// public Int64 CtLightOrangeQuantity { get; set; } /// /// ct navy quantity /// public Int64 CtNavyQuantity { get; set; } /// /// hd blue quantity /// public Int64 HdBlueQuantity { get; set; } /// /// hd light blue quantity /// public Int64 HdLightBlueQuantity { get; set; } /// /// hd rubine quantity /// public Int64 HdRubineQuantity { get; set; } /// /// hd light rubine quantity /// public Int64 HdLightRubineQuantity { get; set; } /// /// hd orange quantity /// public Int64 HdOrangeQuantity { get; set; } /// /// hd light orange quantity /// public Int64 HdLightOrangeQuantity { get; set; } /// /// hd navy quantity /// public Int64 HdNavyQuantity { get; set; } /// /// hd light navy quantity /// public Int64 HdLightNavyQuantity { get; set; } /// /// am blue quantity /// public Int64 AmBlueQuantity { get; set; } /// /// am light blue quantity /// public Int64 AmLightBlueQuantity { get; set; } /// /// am red quantity /// public Int64 AmRedQuantity { get; set; } /// /// am light red quantity /// public Int64 AmLightRedQuantity { get; set; } /// /// am orange quantity /// public Int64 AmOrangeQuantity { get; set; } /// /// am light orange quantity /// public Int64 AmLightOrangeQuantity { get; set; } /// /// am yellow quantity /// public Int64 AmYellowQuantity { get; set; } /// /// am light yellow quantity /// public Int64 AmLightYellowQuantity { get; set; } /// /// am black quantity /// public Int64 AmBlackQuantity { get; set; } } }