Basic ERD diagram of PV Database
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

TblSACRRAData.cs 4.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace ERD
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class TblSACRRAData
  14. {
  15. public TblSACRRAData()
  16. {
  17. this.TblSACRRAConsoftGlobalDatas = new HashSet<TblSACRRAConsoftGlobalData>();
  18. this.TblSACRRADebtorStatus = new HashSet<TblSACRRADebtorStatu>();
  19. this.TblPortfolios = new HashSet<TblPortfolio>();
  20. this.TblPortfolios1 = new HashSet<TblPortfolio>();
  21. }
  22. public int OID { get; set; }
  23. public Nullable<int> Batch { get; set; }
  24. public Nullable<int> Debtor { get; set; }
  25. public string Error { get; set; }
  26. public string Data { get; set; }
  27. public string SAID { get; set; }
  28. public string NonSAID { get; set; }
  29. public string Gender { get; set; }
  30. public Nullable<System.DateTime> DateOfBirth { get; set; }
  31. public string BranchCode { get; set; }
  32. public string AccountNo { get; set; }
  33. public string SubAccoutNo { get; set; }
  34. public string Surname { get; set; }
  35. public string Title { get; set; }
  36. public string Forename1 { get; set; }
  37. public string Forename2 { get; set; }
  38. public string Forename3 { get; set; }
  39. public string ResAddress1 { get; set; }
  40. public string ResAddress2 { get; set; }
  41. public string ResAddress3 { get; set; }
  42. public string ResAddress4 { get; set; }
  43. public string ResPostalCode { get; set; }
  44. public string OwnerTenant { get; set; }
  45. public string PostAddress1 { get; set; }
  46. public string PostAddress2 { get; set; }
  47. public string PostAddress3 { get; set; }
  48. public string PostAddress4 { get; set; }
  49. public string PostPostalCode { get; set; }
  50. public string OwnershipType { get; set; }
  51. public string LoanReasonCode { get; set; }
  52. public string PaymentType { get; set; }
  53. public string TypeOfAccount { get; set; }
  54. public Nullable<System.DateTime> DateAccountOpened { get; set; }
  55. public Nullable<System.DateTime> DeferredPaymentDate { get; set; }
  56. public Nullable<System.DateTime> DateOfLastPayment { get; set; }
  57. public Nullable<int> OpeningBalance { get; set; }
  58. public Nullable<int> CurrentBalance { get; set; }
  59. public string CurrentBalanceIndicator { get; set; }
  60. public Nullable<int> AmountOverdue { get; set; }
  61. public Nullable<int> InstalmentAmount { get; set; }
  62. public Nullable<int> MonthsInArrears { get; set; }
  63. public string StatusCode { get; set; }
  64. public string RepaymentFrequency { get; set; }
  65. public string Terms { get; set; }
  66. public Nullable<System.DateTime> StatusDate { get; set; }
  67. public string OldSupplierBranchCode { get; set; }
  68. public string OldAccountNumber { get; set; }
  69. public string OldSubAccountNumber { get; set; }
  70. public string OldSupplierReferenceNumber { get; set; }
  71. public string HomeTelephone { get; set; }
  72. public string Cellular { get; set; }
  73. public string WorkTelephone { get; set; }
  74. public string EmployerDetail { get; set; }
  75. public string Income { get; set; }
  76. public string IncomeFrequency { get; set; }
  77. public string Occupation { get; set; }
  78. public string ThirdPartyName { get; set; }
  79. public string AccountSoldToThirdParty { get; set; }
  80. public string NoOfParticipantsInJointLoan { get; set; }
  81. public string SupplierReferenceNumber { get; set; }
  82. public Nullable<System.DateTime> TransactionDate { get; set; }
  83. public Nullable<bool> IsConsoftOnceOff { get; set; }
  84. public Nullable<int> OptimisticLockField { get; set; }
  85. public Nullable<int> GCRecord { get; set; }
  86. public Nullable<int> MemberNumber { get; set; }
  87. public virtual TblSACRRABatch TblSACRRABatch { get; set; }
  88. public virtual ICollection<TblSACRRAConsoftGlobalData> TblSACRRAConsoftGlobalDatas { get; set; }
  89. public virtual ICollection<TblSACRRADebtorStatu> TblSACRRADebtorStatus { get; set; }
  90. public virtual TblDebtor TblDebtor { get; set; }
  91. public virtual ICollection<TblPortfolio> TblPortfolios { get; set; }
  92. public virtual ICollection<TblPortfolio> TblPortfolios1 { get; set; }
  93. }
  94. }