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