27 lines
577 B
C#
27 lines
577 B
C#
namespace Blink.Backoffice.Services.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!;
|
|
}
|