1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDbManager.Models
- {
- public partial class TNozzleday
- {
- public long Gid { get; set; }
- public DateTime? CloseDate { get; set; }
- public int? LogicNozzle { get; set; }
- public int? VolBegin { get; set; }
- public int? MoneyBegin { get; set; }
- public int? VolEnd { get; set; }
- public int? MoneyEnd { get; set; }
- public string FuelNo { get; set; }
- }
- }
|