TFuellist.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TFuellist
  6. {
  7. public int Gid { get; set; }
  8. public string FuelNo { get; set; }
  9. public string ClassNo { get; set; }
  10. public string Name { get; set; }
  11. public int Price { get; set; }
  12. public int? OldPrice { get; set; }
  13. public int? PriceTwo { get; set; }
  14. public int? OldPriceTwo { get; set; }
  15. public int? PriceThree { get; set; }
  16. public int? OldPriceThree { get; set; }
  17. public int? PriceFour { get; set; }
  18. public int? OldPriceFour { get; set; }
  19. public int? PriceFive { get; set; }
  20. public int? OldPriceFive { get; set; }
  21. public int? PriceSix { get; set; }
  22. public int? OldPriceSix { get; set; }
  23. public int? PriceSeven { get; set; }
  24. public int? OldPriceSeven { get; set; }
  25. public int? PriceEight { get; set; }
  26. public int? OldPriceEight { get; set; }
  27. public string Unit { get; set; }
  28. public int? Storage { get; set; }
  29. public int? TaxPer { get; set; }
  30. public string Density { get; set; }
  31. }
  32. }