DRAB/Pcm.Db/Entities/SklepKontrSklep.cs
2025-07-11 00:18:14 +02:00

26 lines
802 B
C#

using System;
#nullable disable
namespace Pcm.Db.Entities;
public class SklepKontrSklep
{
public decimal SklepId { get; set; }
public decimal SklepKontrId { get; set; }
public decimal? SklepMagId { get; set; }
public short NrSklepu { get; set; }
public string NrSeryjny { get; set; }
public DateTime? OstImport { get; set; }
public DateTime? WymImport { get; set; }
public DateTime? DataBo { get; set; }
public int? KolejnyWdniuBo { get; set; }
public short? PelnyImport { get; set; }
public DateTime? OstEksport { get; set; }
public DateTime? PotwEksport { get; set; }
public string KodKraju { get; set; }
public short? Rola { get; set; }
public DateTime? OkrZamkniety { get; set; }
public virtual Kontrahent Sklep { get; set; }
}