TFuellist.cs 1.2 KB

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