2024-05-16 10:37:44 +02:00

40 lines
923 B
C#

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