TDayclose.cs 601 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDataCourier.SpsData
  4. {
  5. public partial class TDayclose
  6. {
  7. public ulong Gid { get; set; }
  8. public DateTime? CloseDate { get; set; }
  9. public DateTime? TimeBegin { get; set; }
  10. public DateTime? TimeEnd { get; set; }
  11. public uint? SaleMoney { get; set; }
  12. public uint? FuelMoney { get; set; }
  13. public uint? FuelVol { get; set; }
  14. public string UserNo { get; set; }
  15. public sbyte? BClosed { get; set; }
  16. public byte? UploadFlag { get; set; }
  17. }
  18. }