Basic ERD diagram of PV Database
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TblDebtorBanking.cs 2.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 TblDebtorBanking
  14. {
  15. public TblDebtorBanking()
  16. {
  17. this.TblDebtorBankingAmendments = new HashSet<TblDebtorBankingAmendment>();
  18. this.TblPortfolioNotes = new HashSet<TblPortfolioNote>();
  19. }
  20. public int OID { get; set; }
  21. public Nullable<System.DateTime> DateCreated { get; set; }
  22. public string CreatedBy { get; set; }
  23. public Nullable<int> DebtorNo { get; set; }
  24. public Nullable<System.Guid> BankDetail { get; set; }
  25. public Nullable<System.DateTime> StartDate { get; set; }
  26. public Nullable<int> AcbType { get; set; }
  27. public Nullable<int> StrikeDay { get; set; }
  28. public Nullable<decimal> Amount { get; set; }
  29. public Nullable<decimal> Percentage { get; set; }
  30. public Nullable<System.DateTime> InvalidDate { get; set; }
  31. public Nullable<System.Guid> RejectionCode { get; set; }
  32. public Nullable<int> OptimisticLockField { get; set; }
  33. public Nullable<int> GCRecord { get; set; }
  34. public Nullable<System.DateTime> CancelledDate { get; set; }
  35. public Nullable<System.DateTime> LastGenerated { get; set; }
  36. public Nullable<System.DateTime> EndDate { get; set; }
  37. public Nullable<int> Status { get; set; }
  38. public Nullable<System.DateTime> LastUpdated { get; set; }
  39. public Nullable<bool> RunASAP { get; set; }
  40. public Nullable<bool> CreditCard { get; set; }
  41. public string CCToken { get; set; }
  42. public Nullable<bool> Amendment { get; set; }
  43. public Nullable<bool> SendToCollectionSystem { get; set; }
  44. public Nullable<System.DateTime> DateLastSentToCollectionSystem { get; set; }
  45. public Nullable<int> NumberOfMonths { get; set; }
  46. public Nullable<int> MonthsRemaining { get; set; }
  47. public Nullable<int> CreditCardDetails { get; set; }
  48. public Nullable<int> ClubBanking { get; set; }
  49. public Nullable<int> ACBDefaultBanking { get; set; }
  50. public Nullable<System.DateTime> OnHoldUpUntil { get; set; }
  51. public string ACBStatus { get; set; }
  52. public Nullable<int> OverrideDefaultBanking { get; set; }
  53. public virtual TblDebtor TblDebtor { get; set; }
  54. public virtual ICollection<TblDebtorBankingAmendment> TblDebtorBankingAmendments { get; set; }
  55. public virtual ICollection<TblPortfolioNote> TblPortfolioNotes { get; set; }
  56. }
  57. }