using System; using System.Collections.Generic; namespace Dfs.WayneChina.SpsDbManager.Models { public partial class TMonthcheck { public long Gid { get; set; } public int? Sno { get; set; } public string FuelId { get; set; } public string FuelName { get; set; } public DateTime? CheckTimeBeg { get; set; } public DateTime? CheckTimeEnd { get; set; } public int? OldTankVol { get; set; } public int? InVol { get; set; } public int? OutVol { get; set; } public int? TotalLoss { get; set; } public int? NewTankVol { get; set; } public byte? UploadFlag { get; set; } } }