28 lines
952 B
C#
28 lines
952 B
C#
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; }
|
||
}
|