Fuel.cs 582 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.IMisPlus.Models
  5. {
  6. public class Fuel
  7. {
  8. public int Id { get; set; }
  9. public string ProductCode { get; set; }
  10. public string ClassNo { get; set; }
  11. public string Name { get; set; }
  12. public int Price { get; set; }
  13. public int OldPrice { get; set; }
  14. public string UnitMeasure { get; set; }
  15. public int Storage { get; set; }
  16. public int TaxPer { get; set; }
  17. public string Density { get; set; }
  18. }
  19. }