| 123456789101112131415161718192021222324252627282930313233 | using System;using System.Collections.Generic;namespace Dfs.WayneChina.SpsDataCourier.SpsData{    public partial class TFuellist    {        public uint Gid { get; set; }        public string FuelNo { get; set; }        public string ClassNo { get; set; }        public string Name { get; set; }        public uint Price { get; set; }        public uint? OldPrice { get; set; }        public uint? PriceTwo { get; set; }        public uint? OldPriceTwo { get; set; }        public uint? PriceThree { get; set; }        public uint? OldPriceThree { get; set; }        public uint? PriceFour { get; set; }        public uint? OldPriceFour { get; set; }        public uint? PriceFive { get; set; }        public uint? OldPriceFive { get; set; }        public uint? PriceSix { get; set; }        public uint? OldPriceSix { get; set; }        public uint? PriceSeven { get; set; }        public uint? OldPriceSeven { get; set; }        public uint? PriceEight { get; set; }        public uint? OldPriceEight { get; set; }        public string Unit { get; set; }        public uint? Storage { get; set; }        public int? TaxPer { get; set; }        public string Density { get; set; }    }}
 |