49 lines
1.0 KiB
C#
49 lines
1.0 KiB
C#
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class KasKod
|
|
{
|
|
public decimal KasaId { get; set; }
|
|
|
|
public decimal TowId { get; set; }
|
|
|
|
public short Kolejnosc { get; set; }
|
|
|
|
public string Kod { get; set; } = null!;
|
|
|
|
public short Status { get; set; }
|
|
|
|
public short ZmianyCen { get; set; }
|
|
|
|
public short ZmianyInne { get; set; }
|
|
|
|
public short BylyZmianyCen { get; set; }
|
|
|
|
public short BylyZmianyInne { get; set; }
|
|
|
|
public int? KasPrefPLU { get; set; }
|
|
|
|
public int? PLU { get; set; }
|
|
|
|
public short? DodIndeks { get; set; }
|
|
|
|
public short? Stawka { get; set; }
|
|
|
|
public short? TypTowaru { get; set; }
|
|
|
|
public decimal? IleWKodzie { get; set; }
|
|
|
|
public short? PoziomCen { get; set; }
|
|
|
|
public string? Skrot { get; set; }
|
|
|
|
public string? KodOpak { get; set; }
|
|
|
|
public int? PLUOpak { get; set; }
|
|
|
|
public string? Rezerwa { get; set; }
|
|
|
|
public virtual Kasa Kasa { get; set; } = null!;
|
|
|
|
public virtual Towar Tow { get; set; } = null!;
|
|
}
|