2024-07-01 21:28:20 +02:00

27 lines
558 B
C#

namespace DuSoft.PcmDb.Entities;
public partial class KodDod
{
public decimal TowId { get; set; }
public short Kolejnosc { get; set; }
public string Skrot { get; set; } = null!;
public string Kod { get; set; } = null!;
public short PoziomCen { get; set; }
public int PrefPLU { get; set; }
public decimal? IleWKodzie { get; set; }
public short? TypKodu { get; set; }
public string? SubsysKoduDod { get; set; }
public short? KodCentralny { get; set; }
public virtual Towar Tow { get; set; } = null!;
}