Basic ERD diagram of PV Database
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

TblJournalLine.cs 4.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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 TblJournalLine
  14. {
  15. public TblJournalLine()
  16. {
  17. this.TblDebtorTransactions = new HashSet<TblDebtorTransaction>();
  18. this.TblDebtorTransactions1 = new HashSet<TblDebtorTransaction>();
  19. this.TblJournalLineCatBreakdowns = new HashSet<TblJournalLineCatBreakdown>();
  20. this.TblJournalLineTransactions = new HashSet<TblJournalLineTransaction>();
  21. this.TblSuspenseTransactions = new HashSet<TblSuspenseTransaction>();
  22. }
  23. public int OID { get; set; }
  24. public Nullable<int> JournalBatch { get; set; }
  25. public Nullable<int> Debtor { get; set; }
  26. public Nullable<decimal> Amount { get; set; }
  27. public string Comments { get; set; }
  28. public Nullable<System.DateTime> EffectiveDate { get; set; }
  29. public string ReferenceNumber { get; set; }
  30. public Nullable<int> OptimisticLockField { get; set; }
  31. public Nullable<int> GCRecord { get; set; }
  32. public Nullable<int> PayType { get; set; }
  33. public Nullable<decimal> CapitalAllocation { get; set; }
  34. public Nullable<decimal> FeesAllocation { get; set; }
  35. public Nullable<decimal> InterestAllocation { get; set; }
  36. public Nullable<decimal> DebtorCapital { get; set; }
  37. public Nullable<decimal> DebtorFees { get; set; }
  38. public Nullable<decimal> DebtorInterest { get; set; }
  39. public Nullable<int> ToAccount { get; set; }
  40. public Nullable<int> LineTransactionType { get; set; }
  41. public Nullable<int> BankAccount { get; set; }
  42. public Nullable<bool> IsMultiReversal { get; set; }
  43. public Nullable<decimal> Current { get; set; }
  44. public Nullable<decimal> Days30 { get; set; }
  45. public Nullable<decimal> Days60 { get; set; }
  46. public Nullable<decimal> Days90 { get; set; }
  47. public Nullable<decimal> Days120 { get; set; }
  48. public Nullable<decimal> Days150 { get; set; }
  49. public Nullable<decimal> Days180 { get; set; }
  50. public Nullable<decimal> DeltaCurrent { get; set; }
  51. public Nullable<decimal> DeltaDays30 { get; set; }
  52. public Nullable<decimal> DeltaDays60 { get; set; }
  53. public Nullable<decimal> DeltaDays90 { get; set; }
  54. public Nullable<decimal> DeltaDays120 { get; set; }
  55. public Nullable<decimal> DeltaDays150 { get; set; }
  56. public Nullable<decimal> DeltaDays180 { get; set; }
  57. public Nullable<bool> Override { get; set; }
  58. public Nullable<int> ManagementFeeYear { get; set; }
  59. public Nullable<decimal> Instalment { get; set; }
  60. public Nullable<decimal> DeltaInstalment { get; set; }
  61. public Nullable<int> SupportingDocument { get; set; }
  62. public Nullable<bool> Posted { get; set; }
  63. public string ChequeNumber { get; set; }
  64. public Nullable<bool> TrfValidate { get; set; }
  65. public Nullable<bool> CancellationJournal { get; set; }
  66. public virtual TblDebtor TblDebtor { get; set; }
  67. public virtual ICollection<TblDebtorTransaction> TblDebtorTransactions { get; set; }
  68. public virtual ICollection<TblDebtorTransaction> TblDebtorTransactions1 { get; set; }
  69. public virtual TblDebtorTranType TblDebtorTranType { get; set; }
  70. public virtual TblJournalBatch TblJournalBatch { get; set; }
  71. public virtual ICollection<TblJournalLineCatBreakdown> TblJournalLineCatBreakdowns { get; set; }
  72. public virtual TblPaymentType TblPaymentType { get; set; }
  73. public virtual ICollection<TblJournalLineTransaction> TblJournalLineTransactions { get; set; }
  74. public virtual ICollection<TblSuspenseTransaction> TblSuspenseTransactions { get; set; }
  75. }
  76. }