TCardlogout.cs 796 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TCardlogout
  6. {
  7. public long Gid { get; set; }
  8. public long? AcctGid { get; set; }
  9. public string AcctId { get; set; }
  10. public long? CardId { get; set; }
  11. public string CardNo { get; set; }
  12. public byte? CardType { get; set; }
  13. public string Holder { get; set; }
  14. public string PhoneNo { get; set; }
  15. public int? Sno { get; set; }
  16. public int? LogSno { get; set; }
  17. public string OperNo { get; set; }
  18. public DateTime? LgtDate { get; set; }
  19. public string Carno { get; set; }
  20. public DateTime? KcDate { get; set; }
  21. public DateTime? Startdate { get; set; }
  22. }
  23. }