//------------------------------------------------------------------------------ // // 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 RmlExtensionTestResultDTOBase : ObservableEntityDTO { /// /// rmls extensions guid /// public String RmlsExtensionsGuid { get; set; } /// /// machine guid /// public String MachineGuid { get; set; } /// /// result index /// public Int32 ResultIndex { get; set; } /// /// name /// public String Name { get; set; } /// /// dryer temperature /// public Nullable DryerTemperature { get; set; } /// /// tunnel temperature /// public Nullable TunnelTemperature { get; set; } /// /// tunnel flow /// public Nullable TunnelFlow { get; set; } /// /// tunnel avg temperature /// public Nullable TunnelAvgTemperature { get; set; } /// /// tension head min /// public Nullable TensionHeadMin { get; set; } /// /// tension head max /// public Nullable TensionHeadMax { get; set; } /// /// tension after dryer min /// public Nullable TensionAfterDryerMin { get; set; } /// /// tensioin after dryer max /// public Nullable TensioinAfterDryerMax { get; set; } /// /// tension winder min /// public Nullable TensionWinderMin { get; set; } /// /// tension winder max /// public Nullable TensionWinderMax { get; set; } /// /// btsr min /// public Nullable BtsrMin { get; set; } /// /// btsr max /// public Nullable BtsrMax { get; set; } /// /// puller tension min /// public Nullable PullerTensionMin { get; set; } /// /// puller tension max /// public Nullable PullerTensionMax { get; set; } /// /// exit tension min /// public Nullable ExitTensionMin { get; set; } /// /// exit tension max /// public Nullable ExitTensionMax { get; set; } /// /// severity zone1 min /// public Nullable SeverityZone1Min { get; set; } /// /// severity zone1 max /// public Nullable SeverityZone1Max { get; set; } /// /// severity zone2 min /// public Nullable SeverityZone2Min { get; set; } /// /// severity zone2 max /// public Nullable SeverityZone2Max { get; set; } /// /// comment /// public String Comment { get; set; } /// /// conclusions /// public String Conclusions { get; set; } /// /// ref lub version /// public String RefLubVersion { get; set; } /// /// ref cof /// public Nullable RefCof { get; set; } /// /// ref lub /// public Nullable RefLub { get; set; } /// /// thread lub version /// public String ThreadLubVersion { get; set; } /// /// thread cof /// public Nullable ThreadCof { get; set; } /// /// thread lub /// public Nullable ThreadLub { get; set; } /// /// btsr application type guid /// public String BtsrApplicationTypeGuid { get; set; } /// /// btsr yarn type guid /// public String BtsrYarnTypeGuid { get; set; } /// /// btsr tension error /// public Double BtsrTensionError { get; set; } } }