12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDataCourier.SpsData
- {
- public partial class TDayclose
- {
- public ulong Gid { get; set; }
- public DateTime? CloseDate { get; set; }
- public DateTime? TimeBegin { get; set; }
- public DateTime? TimeEnd { get; set; }
- public uint? SaleMoney { get; set; }
- public uint? FuelMoney { get; set; }
- public uint? FuelVol { get; set; }
- public string UserNo { get; set; }
- public sbyte? BClosed { get; set; }
- public byte? UploadFlag { get; set; }
- }
- }
|