TFuellistCopy.cs 574 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDataCourier.SpsData
  4. {
  5. public partial class TFuellistCopy
  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 string Unit { get; set; }
  14. public uint? Storage { get; set; }
  15. public int? TaxPer { get; set; }
  16. public string Density { get; set; }
  17. }
  18. }