36 lines
1.6 KiB
C#
36 lines
1.6 KiB
C#
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<int> BakingPosition { get; set; }
|
|
public Nullable<int> LoadingPosition { get; set; }
|
|
public Nullable<int> UnLoadingPosition { get; set; }
|
|
public int? BatteryQty { get; set; }
|
|
public int? BakingCount { get; set; }
|
|
public Nullable<System.DateTime> LoadingBegingTime { get; set; }
|
|
public Nullable<System.DateTime> LoadingOverTime { get; set; }
|
|
public Nullable<System.DateTime> InStoveTime { get; set; }
|
|
public Nullable<System.DateTime> BakingBeginTime { get; set; }
|
|
public Nullable<System.DateTime> BakingOverTime { get; set; }
|
|
public Nullable<System.DateTime> OutStoveTime { get; set; }
|
|
public Nullable<System.DateTime> UnLoadingBegingTime { get; set; }
|
|
public Nullable<System.DateTime> UnLoadingOverTime { get; set; }
|
|
public string JobNum { get; set; }
|
|
public Nullable<System.DateTime> ScanTime { get; set; }
|
|
public Nullable<System.DateTime> CreateTime { get; set; }
|
|
public Nullable<bool> LastFlag { get; set; }
|
|
public string WaterValue { get; set; }
|
|
public Nullable<float> UnLoadingCoolTemp { get; set; }
|
|
public Nullable<int> TotalBakingCount { get; set; }
|
|
}
|
|
}
|