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.

TblJournalBatch.cs 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 TblJournalBatch
  14. {
  15. public TblJournalBatch()
  16. {
  17. this.TblJournalLines = new HashSet<TblJournalLine>();
  18. }
  19. public int OID { get; set; }
  20. public Nullable<System.DateTime> DateCaptured { get; set; }
  21. public Nullable<System.Guid> CapturedBy { get; set; }
  22. public Nullable<System.DateTime> PostedToDebtors { get; set; }
  23. public Nullable<decimal> BatchAmount { get; set; }
  24. public Nullable<int> TransactionType { get; set; }
  25. public Nullable<System.Guid> AuthoriseBy { get; set; }
  26. public Nullable<bool> FullyAuthorised { get; set; }
  27. public Nullable<decimal> CalculatedTotal { get; set; }
  28. public Nullable<int> OptimisticLockField { get; set; }
  29. public Nullable<int> GCRecord { get; set; }
  30. public Nullable<int> BankAccounts { get; set; }
  31. public Nullable<bool> Declined { get; set; }
  32. public Nullable<bool> Checked { get; set; }
  33. public Nullable<bool> CreatedNotificationSend { get; set; }
  34. public Nullable<int> CancellationSettlement { get; set; }
  35. public string Captured { get; set; }
  36. public virtual TblDebtorTranType TblDebtorTranType { get; set; }
  37. public virtual ICollection<TblJournalLine> TblJournalLines { get; set; }
  38. }
  39. }