TCardinfo.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TCardinfo
  6. {
  7. public long Gid { get; set; }
  8. public byte? CardSno { get; set; }
  9. public int? Sno { get; set; }
  10. public long CardId { get; set; }
  11. public string CardNo { get; set; }
  12. public int? Ctc { get; set; }
  13. public string Ctctime { get; set; }
  14. public long? 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 int? DmaxPay { get; set; }
  20. public int? MmaxPay { get; set; }
  21. public int? YmaxPay { get; set; }
  22. public int? 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 int? DiscountNo { get; set; }
  36. public DateTime? Startdate { get; set; }
  37. public int? PreMalloc { get; set; }
  38. public int? Money { get; set; }
  39. public long? RechgTotal { get; set; }
  40. public int? IntegralTotal { get; set; }
  41. public byte? CardClass { get; set; }
  42. public int? 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. }