BankOperation.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Entities.Models
  4. {
  5. public partial class BankOperation
  6. {
  7. public BankOperation()
  8. {
  9. SkTransactions = new HashSet<Transaction>();
  10. }
  11. public Guid Id { get; set; }
  12. public Guid? CollectionId { get; set; }
  13. public int Version { get; set; }
  14. public Guid? CreatedUserId { get; set; }
  15. public DateTime? CreatedDate { get; set; }
  16. public Guid? ModifiedUserId { get; set; }
  17. public DateTime? ModifiedDate { get; set; }
  18. public string? Status { get; set; }
  19. public string? Code { get; set; }
  20. public DateTime? DocDate { get; set; }
  21. public string? Note { get; set; }
  22. public Guid? BusinessId { get; set; }
  23. public Guid? BankAccountId { get; set; }
  24. public Guid? CashOperationTypeId { get; set; }
  25. public Guid? CustomerId { get; set; }
  26. public decimal? IncomeAmount { get; set; }
  27. public decimal? OutcomeAmount { get; set; }
  28. public string? Purpose { get; set; }
  29. public Guid? OperationPurposeId { get; set; }
  30. public Guid? IncomeItemsCollectionId { get; set; }
  31. public Guid? OutcomeItemsCollectionId { get; set; }
  32. public Guid? CustomHouseItemsCollectionId { get; set; }
  33. public decimal? AdvanceAmount { get; set; }
  34. public decimal? BalanceAmount { get; set; }
  35. public bool? IsChanged { get; set; }
  36. public long OrderId { get; set; }
  37. public virtual ICollection<Transaction> SkTransactions { get; set; }
  38. }
  39. }