TFuellistCopy.cs 567 B

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