TCardlogout.cs 805 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDataCourier.SpsData
  4. {
  5. public partial class TCardlogout
  6. {
  7. public ulong Gid { get; set; }
  8. public ulong? AcctGid { get; set; }
  9. public string AcctId { get; set; }
  10. public ulong? CardId { get; set; }
  11. public string CardNo { get; set; }
  12. public sbyte? CardType { get; set; }
  13. public string Holder { get; set; }
  14. public string PhoneNo { get; set; }
  15. public uint? Sno { get; set; }
  16. public uint? 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. }