CardInfo.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using System;
  2. using System.Collections.Generic;
  3. // Code scaffolded by EF Core assumes nullable reference types (NRTs) are not used or disabled.
  4. // If you have enabled NRTs for your project, then un-comment the following line:
  5. // #nullable disable
  6. namespace MS.WebApi.Models2
  7. {
  8. public partial class CardInfo
  9. {
  10. public Guid Id { get; set; }
  11. public string AccountId { get; set; }
  12. public short? CardStatus { get; set; }
  13. public int? CtcFlag { get; set; }
  14. public string CtcTime { get; set; }
  15. public short? CardClass { get; set; }
  16. public string CardNo { get; set; }
  17. public short? CardSno { get; set; }
  18. public short? CardType { get; set; }
  19. public string CarLicenseNo { get; set; }
  20. public long? Gid { get; set; }
  21. public string Holder { get; set; }
  22. public int? PointsAwardedTotal { get; set; }
  23. public DateTime? CreationDate { get; set; }
  24. public int? Balance { get; set; }
  25. public string OperatorNo { get; set; }
  26. public DateTime? ExpirationDate { get; set; }
  27. public string PhoneNo { get; set; }
  28. public int? DepositBalance { get; set; }
  29. public DateTime? ActivationDate { get; set; }
  30. public string UserNo { get; set; }
  31. public Guid? AccountInfoId { get; set; }
  32. public Guid? BusinessUnitInfoId { get; set; }
  33. public long? CardId { get; set; }
  34. public long? RechargeTotal { get; set; }
  35. public int? Ctc { get; set; }
  36. public short? DMaxPay { get; set; }
  37. public short? MMaxPay { get; set; }
  38. public short? OnceMaxPay { get; set; }
  39. public short? BLimitCar { get; set; }
  40. public string EnableSms { get; set; }
  41. public string UserPin { get; set; }
  42. public short? Sno { get; set; }
  43. public string LmtOil { get; set; }
  44. public bool? LmtGood { get; set; }
  45. public short? DiscountNo { get; set; }
  46. public short? LimitTimes { get; set; }
  47. public Guid? BuInfoCreatedId { get; set; }
  48. public short? UploadFlag { get; set; }
  49. public long? Tmac { get; set; }
  50. public DateTime? LastModified { get; set; }
  51. public virtual AccountInfo AccountInfo { get; set; }
  52. public virtual BusinessUnitInfo BuInfoCreated { get; set; }
  53. public virtual BusinessUnitInfo BusinessUnitInfo { get; set; }
  54. }
  55. }