TIntegtrdinfo.cs 823 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TIntegtrdinfo
  6. {
  7. public long Gid { get; set; }
  8. public int? Sno { get; set; }
  9. public int? ShiftNo { get; set; }
  10. public byte? Posid { get; set; }
  11. public string EmpCardNo { get; set; }
  12. public string CardNo { get; set; }
  13. public string CommId { get; set; }
  14. public int? Prc { get; set; }
  15. public int? Vol { get; set; }
  16. public int? RealMon { get; set; }
  17. public DateTime Ttctime { get; set; }
  18. public DateTime? TtctimeEnd { get; set; }
  19. public int Ttc { get; set; }
  20. public int? NozNo { get; set; }
  21. public int? Integral { get; set; }
  22. public byte? UploadFlag { get; set; }
  23. }
  24. }