12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDbManager.Models
- {
- public partial class TFuellistCopy
- {
- public int Gid { get; set; }
- public string FuelNo { get; set; }
- public string ClassNo { get; set; }
- public string Name { get; set; }
- public int Price { get; set; }
- public int? OldPrice { get; set; }
- public string Unit { get; set; }
- public int? Storage { get; set; }
- public int? TaxPer { get; set; }
- public string Density { get; set; }
- }
- }
|