36 lines
1.3 KiB
C#
36 lines
1.3 KiB
C#
namespace Pcm.Db.Entities;
|
|
|
|
public class PrtMag
|
|
{
|
|
public PrtMag()
|
|
{
|
|
RozPrtMags = new HashSet<RozPrtMag>();
|
|
StanPrtMags = new HashSet<StanPrtMag>();
|
|
SzczegPrtMags = new HashSet<SzczegPrtMag>();
|
|
}
|
|
|
|
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<RozPrtMag> RozPrtMags { get; set; }
|
|
public virtual ICollection<StanPrtMag> StanPrtMags { get; set; }
|
|
public virtual ICollection<SzczegPrtMag> SzczegPrtMags { get; set; }
|
|
} |