using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class PrtMag { public PrtMag() { RozPrtMags = new HashSet(); StanPrtMags = new HashSet(); SzczegPrtMags = new HashSet(); } public decimal TowId { get; set; } public decimal Pmid { get; set; } public decimal MagId { get; set; } public short Status { get; set; } public DateTime? Data { get; set; } public int? KolejnyWdniu { get; set; } public string NrDostawy { get; set; } public string NrPartii { get; set; } public DateTime? DataWazn { get; set; } public decimal CenaZak { get; set; } public short Stawka { get; set; } public decimal? Dostarczono { get; set; } public decimal Pozostalo { get; set; } public DateTime Zmiana { get; set; } public decimal? KontrId { get; set; } public int? NrPozycji { get; set; } public DateTime? ZmianaIstotna { get; set; } public decimal? Rezerwacja { get; set; } public virtual Magazyn Mag { get; set; } public virtual Towar Tow { get; set; } public virtual ICollection RozPrtMags { get; set; } public virtual ICollection StanPrtMags { get; set; } public virtual ICollection SzczegPrtMags { get; set; } }