1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.IMisPlus.Models
- {
- public class Fuel
- {
- public int Id { get; set; }
- public string ProductCode { get; set; }
- public string ClassNo { get; set; }
- public string Name { get; set; }
- public int Price { get; set; }
- public int OldPrice { get; set; }
- public string UnitMeasure { get; set; }
- public int Storage { get; set; }
- public int TaxPer { get; set; }
- public string Density { get; set; }
- }
- }
|