TCardinfo.cs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDataCourier.SpsData
  4. {
  5. public partial class TCardinfo
  6. {
  7. public ulong Gid { get; set; }
  8. public byte? CardSno { get; set; }
  9. public uint? Sno { get; set; }
  10. public ulong CardId { get; set; }
  11. public string CardNo { get; set; }
  12. public uint? Ctc { get; set; }
  13. public string Ctctime { get; set; }
  14. public ulong? AcctGid { get; set; }
  15. public string AcctId { get; set; }
  16. public string UserNo { get; set; }
  17. public string Holder { get; set; }
  18. public string PhoneNo { get; set; }
  19. public uint? DmaxPay { get; set; }
  20. public uint? MmaxPay { get; set; }
  21. public uint? YmaxPay { get; set; }
  22. public uint? OnceMaxPay { get; set; }
  23. public byte? BLimitCar { get; set; }
  24. public string Carno { get; set; }
  25. public byte? CStatus { get; set; }
  26. public string UserPin { get; set; }
  27. public DateTime? OverDate { get; set; }
  28. public DateTime? KcDate { get; set; }
  29. public string OperNo { get; set; }
  30. public byte? BLmtGood { get; set; }
  31. public string LmtOil { get; set; }
  32. public byte? CardType { get; set; }
  33. public string AuthStr { get; set; }
  34. public string TmpChkStr { get; set; }
  35. public uint? DiscountNo { get; set; }
  36. public DateTime? Startdate { get; set; }
  37. public uint? PreMalloc { get; set; }
  38. public uint? Money { get; set; }
  39. public long? RechgTotal { get; set; }
  40. public uint? IntegralTotal { get; set; }
  41. public byte? CardClass { get; set; }
  42. public uint? Tmac { get; set; }
  43. public byte? LimitTimes { get; set; }
  44. public byte? UploadFlag { get; set; }
  45. public int? Ctcflag { get; set; }
  46. public byte? EnableSms { get; set; }
  47. }
  48. }