using System; namespace Cowain.Bake.Model.Entity { public class BatteryInfoEntity : TBatteryInfo { public string PalletCode { get; set; } public string BakingLocation { get; set; } public Nullable BakingPosition { get; set; } public Nullable BakingCount { get; set; } public Nullable LoadingBegingTime { get; set; } public Nullable LoadingOverTime { get; set; } public Nullable BakingBeginTime { get; set; } public Nullable BakingOverTime { get; set; } public Nullable UnLoadingBegingTime { get; set; } public Nullable UnLoadingOverTime { get; set; } public string WaterValue { get; set; } public string AnodeValue { get; set; } public string SeptumValue { get; set; } public string CathodeValue { get; set; } } }