OfflineCardInfo.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. namespace Dfs.WayneChina.SpsDataCourier.HostModels
  3. {
  4. public class OfflineCardInfo
  5. {
  6. public byte bLimitCar { get; set; }
  7. public string carno { get; set; }
  8. public byte cStatus { get; set; }
  9. public DateTime kcDate { get; set; }
  10. public DateTime overDate { get; set; }
  11. public bool bLmtGood { get; set; }
  12. public DateTime startdate { get; set; }
  13. public uint money { get; set; }
  14. public ushort discountNo { get; set; }
  15. public string holder { get; set; }
  16. public byte cardClass { get; set; }
  17. public long gid { get; set; }
  18. public byte enableSms { get; set; }
  19. public uint tmac { get; set; }
  20. public ushort sno { get; set; }
  21. public string acctID { get; set; }
  22. public byte uploadFlag { get; set; }
  23. public long rechgTotal { get; set; }
  24. public string cardNo { get; set; }
  25. public byte cardType { get; set; }
  26. public uint pre_malloc { get; set; }
  27. public string userNo { get; set; }
  28. public string phoneNo { get; set; }
  29. public uint mmaxPay { get; set; }
  30. public uint dmaxPay { get; set; }
  31. public string userPIN { get; set; }
  32. public string ctctime { get; set; }
  33. public byte ctcflag { get; set; }
  34. public ushort ctc { get; set; }
  35. public byte cardSNo { get; set; }
  36. public uint cardID { get; set; }
  37. public long integralTotal { get; set; }
  38. public string operNo { get; set; }
  39. public string lmtOil { get; set; }
  40. public uint onceMaxPay { get; set; }
  41. public byte limitTimes { get; set; }
  42. }
  43. }