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

TblJournalLineTransaction.cs 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 TblJournalLineTransaction
  14. {
  15. public TblJournalLineTransaction()
  16. {
  17. this.TblJournalLineTransactionsCatBreakdowns = new HashSet<TblJournalLineTransactionsCatBreakdown>();
  18. }
  19. public int OID { get; set; }
  20. public Nullable<int> JournalLine { get; set; }
  21. public Nullable<int> OriginalTransaction { get; set; }
  22. public Nullable<decimal> TotalAmountReversedSoFar { get; set; }
  23. public Nullable<bool> Reverse { get; set; }
  24. public Nullable<decimal> AmountToReverse { get; set; }
  25. public Nullable<int> OptimisticLockField { get; set; }
  26. public Nullable<int> GCRecord { get; set; }
  27. public Nullable<bool> IsReversal { get; set; }
  28. public Nullable<int> JournalTransStatus { get; set; }
  29. public Nullable<decimal> AmountOfJournalTrans { get; set; }
  30. public Nullable<int> NonReverseTranTypes { get; set; }
  31. public Nullable<int> TranType { get; set; }
  32. public Nullable<decimal> DeltaInstalment { get; set; }
  33. public Nullable<decimal> DeltaCurrent { get; set; }
  34. public Nullable<decimal> DeltaDays30 { get; set; }
  35. public Nullable<decimal> DeltaDays60 { get; set; }
  36. public Nullable<decimal> DeltaDays90 { get; set; }
  37. public Nullable<decimal> DeltaDays120 { get; set; }
  38. public Nullable<decimal> DeltaDays150 { get; set; }
  39. public Nullable<decimal> DeltaDays180 { get; set; }
  40. public Nullable<decimal> CapitalAllocated { get; set; }
  41. public Nullable<decimal> FeesAllocated { get; set; }
  42. public Nullable<decimal> InterestAllocated { get; set; }
  43. public virtual TblDebtorTransaction TblDebtorTransaction { get; set; }
  44. public virtual TblDebtorTranType TblDebtorTranType { get; set; }
  45. public virtual TblDebtorTranType TblDebtorTranType1 { get; set; }
  46. public virtual TblJournalLine TblJournalLine { get; set; }
  47. public virtual ICollection<TblJournalLineTransactionsCatBreakdown> TblJournalLineTransactionsCatBreakdowns { get; set; }
  48. }
  49. }