TMonthclose.cs 631 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TMonthclose
  6. {
  7. public long Gid { get; set; }
  8. public int? Sno { get; set; }
  9. public string CloseMonth { get; set; }
  10. public DateTime? TimeBegin { get; set; }
  11. public DateTime? TimeEnd { get; set; }
  12. public int? SaleMoney { get; set; }
  13. public int? FuelMoney { get; set; }
  14. public int? FuelVol { get; set; }
  15. public string UserNo { get; set; }
  16. public byte? BClosed { get; set; }
  17. public byte? UploadFlag { get; set; }
  18. }
  19. }