41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
namespace DuSoft.PcmDb.Entities;
|
|
|
|
public partial class SklepKontoLoj
|
|
{
|
|
public decimal SklepId { get; set; }
|
|
|
|
public decimal SklepKontoId { get; set; }
|
|
|
|
public decimal SklepKontrId { get; set; }
|
|
|
|
public short TypKonta { get; set; }
|
|
|
|
public short Aktywne { get; set; }
|
|
|
|
public string? Nazwa { get; set; }
|
|
|
|
public decimal StanPocz { get; set; }
|
|
|
|
public decimal Stan { get; set; }
|
|
|
|
public DateTime ZmianaStanu { get; set; }
|
|
|
|
public DateTime Zmiana { get; set; }
|
|
|
|
public decimal? KontoId { get; set; }
|
|
|
|
public decimal? CentrKontoId { get; set; }
|
|
|
|
public virtual KontoLoj? Konto { get; set; }
|
|
|
|
public virtual Sklep Sklep { get; set; } = null!;
|
|
|
|
public virtual ICollection<SklepKartaLoj> SklepKartaLoj { get; set; } = new List<SklepKartaLoj>();
|
|
|
|
public virtual SklepKontr SklepKontr { get; set; } = null!;
|
|
|
|
public virtual ICollection<SklepPowKontLoj> SklepPowKontLojSklepKontoLoj { get; set; } = new List<SklepPowKontLoj>();
|
|
|
|
public virtual ICollection<SklepPowKontLoj> SklepPowKontLojSklepKontoLojNavigation { get; set; } = new List<SklepPowKontLoj>();
|
|
}
|