FuelListResult.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.SpsDbManager.ResultSet
  5. {
  6. public class FuelListResult
  7. {
  8. public long Gid { get; set; }
  9. public string FurlNo { get; set; }
  10. public string ClassNo { get; set; }
  11. public string FuelName { get; set; }
  12. public uint Price { get; set; }
  13. public uint OldPrice { get; set; }
  14. public uint PriceTwo { get; set; }
  15. public uint OldPriceTwo { get; set; }
  16. public uint PriceThree { get; set; }
  17. public uint OldPriceThree { get; set; }
  18. public uint PriceFour { get; set; }
  19. public uint OldPriceFour { get; set; }
  20. public uint PriceFive { get; set; }
  21. public uint OldPriceFive { get; set; }
  22. public uint PriceSix { get; set; }
  23. public uint OldPriceSix { get; set; }
  24. public uint PriceSeven { get; set; }
  25. public uint OldPriceSeven { get; set; }
  26. public uint PriceEight { get; set; }
  27. public uint OldPriceEight { get; set; }
  28. public string Unit { get; set; }
  29. public uint Stor { get; set; }
  30. public int TaxPer { get; set; }
  31. public string Density { get; set; }
  32. }
  33. }