2024-07-01 21:20:00 +02:00

53 lines
1.3 KiB
C#

namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class PrtMag
{
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 decimal? CenaSpDet { get; set; }
public virtual Magazyn Mag { get; set; } = null!;
public virtual ICollection<RozPrtMag> RozPrtMag { get; set; } = new List<RozPrtMag>();
public virtual ICollection<StanPrtMag> StanPrtMag { get; set; } = new List<StanPrtMag>();
public virtual ICollection<SzczegPrtMag> SzczegPrtMag { get; set; } = new List<SzczegPrtMag>();
public virtual Towar Tow { get; set; } = null!;
}