erp-platform/api/src/Erp.Platform.Domain/Entities/Tenant/SupplyChain/PartnerBank.cs

29 lines
952 B
C#
Raw Normal View History

2025-11-11 19:49:52 +00:00
using System;
2025-10-31 22:16:46 +00:00
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.MultiTenancy;
2025-11-11 19:49:52 +00:00
namespace Erp.Platform.Entities;
2025-10-31 22:16:46 +00:00
public class PartnerBank : FullAuditedEntity<Guid>, IMultiTenant
{
public Guid? TenantId { get; set; }
public Guid PartnerId { get; set; }
public Partner Partner { get; set; }
public string BankName { get; set; }
2025-11-12 12:59:31 +00:00
public string AccountNumber { get; set; } //Hesap Numarası
2025-10-31 22:16:46 +00:00
public string Iban { get; set; } //IBAN
public string SwiftCode { get; set; } //BIC
public string AccountOwner { get; set; } //Hesap Sahibi
public string BranchName { get; set; } //Şube Adı
2025-11-12 12:59:31 +00:00
public string AccountType { get; set; } //Hesap Türü
2025-10-31 22:16:46 +00:00
public string Currency { get; set; }
2025-10-31 22:16:46 +00:00
public decimal Balance { get; set; }
public decimal OverdraftLimit { get; set; }
public decimal DailyTransferLimit { get; set; }
public bool IsDefault { get; set; }
public bool IsActive { get; set; }
2025-11-11 19:49:52 +00:00
}