erp-platform/api/src/Erp.Platform.Domain/Entities/Tenant/SupplyChain/PartnerBank.cs
2025-11-24 22:04:43 +03:00

28 lines
952 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.MultiTenancy;
namespace Erp.Platform.Entities;
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; }
public string AccountNumber { get; set; } //Hesap Numarası
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ı
public string AccountType { get; set; } //Hesap Türü
public string Currency { get; set; }
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; }
}