70 lines
1.5 KiB
C#
70 lines
1.5 KiB
C#
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>();
|
|
}
|