This commit is contained in:
2024-05-16 10:37:44 +02:00
commit 64b26d6823
678 changed files with 154503 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class KontoBankowe
{
public decimal KBId { get; set; }
public string Nazwa { get; set; } = null!;
public string Numer { get; set; } = null!;
public short Domyslne { get; set; }
public short Typ { get; set; }
public string Sufix { get; set; } = null!;
public decimal BankId { get; set; }
public decimal WalId { get; set; }
public decimal? PowKBId { get; set; }
public decimal? MagId { get; set; }
public short Aktywne { get; set; }
public DateTime Zmiana { get; set; }
public decimal? CentrKBId { get; set; }
public decimal? KBIdOplat { get; set; }
public virtual Bank Bank { get; set; } = null!;
public virtual Magazyn? Mag { get; set; }
public virtual ICollection<Oplata> Oplata { get; set; } = new List<Oplata>();
public virtual Waluta Wal { get; set; } = null!;
public virtual ICollection<Dok> Dok { get; set; } = new List<Dok>();
}