This commit is contained in:
2024-05-16 10:37:44 +02:00
commit 64b26d6823
678 changed files with 154503 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepPrtMag
{
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 decimal? CenaSpDet { get; set; }
public virtual SklepMagazyn SklepMagazyn { get; set; } = null!;
public virtual ICollection<SklepRozPrtMag> SklepRozPrtMag { get; set; } = new List<SklepRozPrtMag>();
public virtual ICollection<SklepStanPrtMag> SklepStanPrtMag { get; set; } = new List<SklepStanPrtMag>();
public virtual ICollection<SklepSzczegPrtMag> SklepSzczegPrtMag { get; set; } = new List<SklepSzczegPrtMag>();
public virtual SklepTowar SklepTowar { get; set; } = null!;
}