using System; using System.Collections.Generic; namespace Dfs.WayneChina.SpsDbManager.Models { public partial class TFuelpricechg { public int Gid { get; set; } public string DocumId { get; set; } public string FuelNo { get; set; } public string UserNo { get; set; } public int? OldPrice { get; set; } public int? Newprice { get; set; } public DateTime? CreateTime { get; set; } public DateTime? EffectTime { get; set; } public string Remark { get; set; } } }