using System; using System.Collections.Generic; namespace Dfs.WayneChina.SpsDbManager.Models { public partial class TDayclose { public long Gid { get; set; } public DateTime? CloseDate { get; set; } public DateTime? TimeBegin { get; set; } public DateTime? TimeEnd { get; set; } public int? SaleMoney { get; set; } public int? FuelMoney { get; set; } public int? FuelVol { get; set; } public string UserNo { get; set; } public byte? BClosed { get; set; } public byte? UploadFlag { get; set; } } }