using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Cowain.Bake.Model.Models { public class ExCavityInfoModel : CavityInfoModel { public int? VirtualId { get; set; } public string PalletCode { get; set; } public int? PalletStatus { get; set; } public Nullable BakingPosition { get; set; } public Nullable LoadingPosition { get; set; } public Nullable UnLoadingPosition { get; set; } public int? BatteryQty { get; set; } public int? BakingCount { get; set; } public Nullable LoadingBegingTime { get; set; } public Nullable LoadingOverTime { get; set; } public Nullable InStoveTime { get; set; } public Nullable BakingBeginTime { get; set; } public Nullable BakingOverTime { get; set; } public Nullable OutStoveTime { get; set; } public Nullable UnLoadingBegingTime { get; set; } public Nullable UnLoadingOverTime { get; set; } public string JobNum { get; set; } public Nullable ScanTime { get; set; } public Nullable CreateTime { get; set; } public Nullable LastFlag { get; set; } public string WaterValue { get; set; } public Nullable UnLoadingCoolTemp { get; set; } public Nullable TotalBakingCount { get; set; } } }