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,47 @@
using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepWaluta
{
public decimal SklepId { get; set; }
public decimal SklepWalId { get; set; }
public decimal? WalId { get; set; }
public string Kod { get; set; } = null!;
public string Nazwa { get; set; } = null!;
public decimal Kurs { get; set; }
public short Znaczenie { get; set; }
public short Aktywny { get; set; }
public string? Skrot1 { get; set; }
public string? Skrot100 { get; set; }
public short? UkrycNaKasie { get; set; }
public virtual Sklep Sklep { get; set; } = null!;
public virtual ICollection<SklepDok> SklepDok { get; set; } = new List<SklepDok>();
public virtual ICollection<SklepDokKurs> SklepDokKurs { get; set; } = new List<SklepDokKurs>();
public virtual ICollection<SklepDokWaluta> SklepDokWaluta { get; set; } = new List<SklepDokWaluta>();
public virtual ICollection<SklepKontoBankowe> SklepKontoBankowe { get; set; } = new List<SklepKontoBankowe>();
public virtual ICollection<SklepKontoBankoweKontr> SklepKontoBankoweKontr { get; set; } = new List<SklepKontoBankoweKontr>();
public virtual ICollection<SklepParWaluta> SklepParWaluta { get; set; } = new List<SklepParWaluta>();
public virtual ICollection<SklepParagon> SklepParagon { get; set; } = new List<SklepParagon>();
public virtual Waluta? Wal { get; set; }
}