Add DRS
This commit is contained in:
@@ -1,40 +1,43 @@
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class SklepKontoLoj
|
||||
{
|
||||
public decimal SklepId { get; set; }
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class SklepKontoLoj
|
||||
{
|
||||
public decimal SklepId { get; set; }
|
||||
|
||||
public decimal SklepKontoId { get; set; }
|
||||
public decimal SklepKontoId { get; set; }
|
||||
|
||||
public decimal SklepKontrId { get; set; }
|
||||
public decimal SklepKontrId { get; set; }
|
||||
|
||||
public short TypKonta { get; set; }
|
||||
public short TypKonta { get; set; }
|
||||
|
||||
public short Aktywne { get; set; }
|
||||
public short Aktywne { get; set; }
|
||||
|
||||
public string? Nazwa { get; set; }
|
||||
public string? Nazwa { get; set; }
|
||||
|
||||
public decimal StanPocz { get; set; }
|
||||
public decimal StanPocz { get; set; }
|
||||
|
||||
public decimal Stan { get; set; }
|
||||
public decimal Stan { get; set; }
|
||||
|
||||
public DateTime ZmianaStanu { get; set; }
|
||||
public DateTime ZmianaStanu { get; set; }
|
||||
|
||||
public DateTime Zmiana { get; set; }
|
||||
public DateTime Zmiana { get; set; }
|
||||
|
||||
public decimal? KontoId { get; set; }
|
||||
public decimal? KontoId { get; set; }
|
||||
|
||||
public decimal? CentrKontoId { get; set; }
|
||||
public decimal? CentrKontoId { get; set; }
|
||||
|
||||
public virtual KontoLoj? Konto { get; set; }
|
||||
public virtual KontoLoj? Konto { get; set; }
|
||||
|
||||
public virtual Sklep Sklep { get; set; } = null!;
|
||||
public virtual Sklep Sklep { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<SklepKartaLoj> SklepKartaLoj { get; set; } = new List<SklepKartaLoj>();
|
||||
public virtual ICollection<SklepKartaLoj> SklepKartaLoj { get; set; } = new List<SklepKartaLoj>();
|
||||
|
||||
public virtual SklepKontr SklepKontr { get; set; } = null!;
|
||||
public virtual SklepKontr SklepKontr { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<SklepPowKontLoj> SklepPowKontLojSklepKontoLoj { get; set; } = new List<SklepPowKontLoj>();
|
||||
public virtual ICollection<SklepPowKontLoj> SklepPowKontLojSklepKontoLoj { get; set; } = new List<SklepPowKontLoj>();
|
||||
|
||||
public virtual ICollection<SklepPowKontLoj> SklepPowKontLojSklepKontoLojNavigation { get; set; } = new List<SklepPowKontLoj>();
|
||||
}
|
||||
public virtual ICollection<SklepPowKontLoj> SklepPowKontLojSklepKontoLojNavigation { get; set; } = new List<SklepPowKontLoj>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user