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,69 @@
using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepHistoriaKontrahenta
{
public decimal SklepId { get; set; }
public decimal SklepHKId { get; set; }
public decimal? SklepKontrId { 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 Sklep Sklep { get; set; } = null!;
public virtual ICollection<SklepDok> SklepDok { get; set; } = new List<SklepDok>();
}