using System; using System.Collections.Generic; namespace Dfs.WayneChina.SpsDbManager.Models { public partial class TFuelapply { public long Gid { get; set; } public string ApplyNo { get; set; } public string FuelNo { get; set; } public int? TotalVol { get; set; } public int? NeedVol { get; set; } public string Applicant { get; set; } public DateTime? ApplyTime { get; set; } public DateTime? ComeTime { get; set; } public byte? ApplyState { get; set; } public string Remark { get; set; } } }