This commit is contained in:
2024-05-16 10:37:44 +02:00
commit 64b26d6823
678 changed files with 154503 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
using System;
using System.Collections.Generic;
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!;
}