CardAccountInfoResult.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.SpsDbManager.ResultSet
  5. {
  6. public class CardAccountInfoResult
  7. {
  8. public ulong Gid { get; set; }
  9. public UInt32 AcctSNo { get; set; }
  10. public string AcctId { get; set; }
  11. public string BelongTo { get; set; }
  12. public string Address { get; set; }
  13. public string AcctPhoneNo { get; set; }
  14. public byte AcctType { get; set; }
  15. public UInt64 Amount { get; set; }
  16. public int AmtType { get; set; }
  17. public string FuelNo { get; set; }
  18. public UInt32 Gift { get; set; }
  19. public int AcctState { get; set; }
  20. public string AcctDate { get; set; }
  21. public string CertfType { get; set; }
  22. public string CertfNo { get; set; }
  23. public Int64 AcctRechgTotal { get; set; }
  24. public UInt32 AcctTmac { get; set; }
  25. public UInt32 WaitMalloc { get; set; }
  26. public byte AcctEnableSms { get; set; }
  27. public UInt32 CardSNo { get; set; }
  28. public UInt64 CardId { get; set; }
  29. public string CardNo { get; set; }
  30. public ulong AcctGid { get; set; }
  31. public string UserNo { get; set; }
  32. public string Holder { get; set; }
  33. public string CardPhoneNo { get; set; }
  34. public UInt32 DMaxPay { get; set; }
  35. public UInt32 MMaxPay { get; set; }
  36. public UInt32 OnceMaxPay { get; set; }
  37. public byte BLimitCar { get; set; }
  38. public string CarNo { get; set; }
  39. public byte CStatus { get; set; }
  40. public string UserPIN { get; set; }
  41. public string OverDate { get; set; }
  42. public string KCDate { get; set; }
  43. public string OperNo { get; set; }
  44. public byte BLmtGood { get; set; }
  45. public string LmtOil { get; set; }
  46. public byte CardType { get; set; }
  47. public UInt32 DiscountNo { get; set; }
  48. public string StartDate { get; set; }
  49. public UInt32 Pre_Malloc { get; set; }
  50. public UInt32 Money { get; set; }
  51. public Int64 CardRechgTotal { get; set; }
  52. public UInt32 IntegralTotal { get; set; }
  53. public UInt32 CardTmac { get; set; }
  54. public byte CardClass { get; set; }
  55. public byte CardEnableSms { get; set; }
  56. }
  57. }