30 lines
626 B
C#
30 lines
626 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
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!;
|
|
}
|