This commit is contained in:
2026-05-19 16:45:53 +02:00
parent e80c8894ea
commit ae32eef32a
735 changed files with 15154 additions and 147132 deletions

View File

@@ -1,36 +1,39 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class SkladnikWzorca
{
public decimal SkWzId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SkladnikWzorca
{
public decimal SkWzId { get; set; }
public decimal? TowIdWzorca { get; set; }
public decimal? TowIdWzorca { get; set; }
public string Nazwa { get; set; } = null!;
public string Nazwa { get; set; } = null!;
public short Kolejnosc { get; set; }
public short Kolejnosc { get; set; }
public decimal Ilosc { get; set; }
public decimal Ilosc { get; set; }
public decimal Cena { get; set; }
public decimal Cena { get; set; }
public short Obowiazkowy { get; set; }
public short Obowiazkowy { get; set; }
public short Aktywny { get; set; }
public short Aktywny { get; set; }
public DateTime Zmiana { get; set; }
public DateTime Zmiana { get; set; }
public decimal? CentrSkWzId { get; set; }
public decimal? CentrSkWzId { get; set; }
public short? WyborWielu { get; set; }
public short? WyborWielu { get; set; }
public short? CzyDodatek { get; set; }
public short? CzyDodatek { get; set; }
public short? RozneCeny { get; set; }
public short? RozneCeny { get; set; }
public short? WyliczenieCeny { get; set; }
public short? WyliczenieCeny { get; set; }
public virtual Towar? TowIdWzorcaNavigation { get; set; }
public virtual Towar? TowIdWzorcaNavigation { get; set; }
public virtual ICollection<TowarSkladnika> TowarSkladnika { get; set; } = new List<TowarSkladnika>();
}
public virtual ICollection<TowarSkladnika> TowarSkladnika { get; set; } = new List<TowarSkladnika>();
}