Dekrety #1
This commit is contained in:
39
Blink.Backoffice.Services.PcmDb/Entities/SkladnikWzorca.cs
Normal file
39
Blink.Backoffice.Services.PcmDb/Entities/SkladnikWzorca.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user