This commit is contained in:
2026-05-19 16:45:53 +02:00
parent e80c8894ea
commit ae32eef32a
735 changed files with 15154 additions and 147132 deletions

View File

@@ -0,0 +1,67 @@
using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class HistoriaKontrahenta
{
public decimal HKId { get; set; }
public decimal? KontrId { get; set; }
public string? Nazwa { get; set; }
public string? Imie { get; set; }
public string? Nazwisko { get; set; }
public string? Ulica { get; set; }
public string? NrDomu { get; set; }
public string? NrLokalu { get; set; }
public string? Kod { get; set; }
public string? Poczta { get; set; }
public string? Miasto { get; set; }
public string? Gmina { get; set; }
public string? Powiat { get; set; }
public string? Wojewodztwo { get; set; }
public string? KodKraju { get; set; }
public string? NazwaKraju { get; set; }
public string? EMail { get; set; }
public string? Telefon { get; set; }
public string? Fax { get; set; }
public string? Bank { get; set; }
public string? Konto { get; set; }
public string? NIP { get; set; }
public string? NumerBDO { get; set; }
public string? NumerEORI { get; set; }
public string? GLN { get; set; }
public short? RodzajPodmiotu { get; set; }
public DateTime WazneOd { get; set; }
public DateTime Zmiana { get; set; }
public virtual ICollection<Dok> Dok { get; set; } = new List<Dok>();
public virtual Kontrahent? Kontr { get; set; }
}