DRAB/Pcm.Db/Entities/SklepPrtMag.cs
2025-07-11 00:18:14 +02:00

41 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class SklepPrtMag
{
public SklepPrtMag()
{
SklepRozPrtMags = new HashSet<SklepRozPrtMag>();
SklepStanPrtMags = new HashSet<SklepStanPrtMag>();
SklepSzczegPrtMags = new HashSet<SklepSzczegPrtMag>();
}
public decimal SklepId { get; set; }
public decimal SklepTowId { get; set; }
public decimal Pmid { get; set; }
public decimal SklepMagId { 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? SklepKontrId { get; set; }
public int? NrPozycji { get; set; }
public decimal? Rezerwacja { get; set; }
public virtual SklepMagazyn Sklep { get; set; }
public virtual SklepTowar SklepNavigation { get; set; }
public virtual ICollection<SklepRozPrtMag> SklepRozPrtMags { get; set; }
public virtual ICollection<SklepStanPrtMag> SklepStanPrtMags { get; set; }
public virtual ICollection<SklepSzczegPrtMag> SklepSzczegPrtMags { get; set; }
}