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