DRAB/Pcm.Db/Entities/Paragon.cs
2025-07-11 00:18:14 +02:00

56 lines
1.9 KiB
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class Paragon
{
public Paragon()
{
ParBons = new HashSet<ParBon>();
ParPunkties = new HashSet<ParPunkty>();
ParWaluta = new HashSet<ParWalutum>();
PozPars = new HashSet<PozPar>();
RegulaPars = new HashSet<RegulaPar>();
}
public decimal ParId { get; set; }
public decimal KasaId { get; set; }
public DateTime DataCzas { get; set; }
public short TypPar { get; set; }
public DateTime Zmiana { get; set; }
public string Kasjer { get; set; }
public string CechyPar { get; set; }
public string KodKarty { get; set; }
public short Aktywny { get; set; }
public int IloscPoz { get; set; }
public decimal Brutto { get; set; }
public decimal OpakZwr { get; set; }
public decimal OpakWyd { get; set; }
public decimal Rabat { get; set; }
public decimal Gotowka { get; set; }
public decimal Bony { get; set; }
public decimal Czek { get; set; }
public decimal Karta { get; set; }
public decimal InneFplat { get; set; }
public decimal? Waluty { get; set; }
public decimal? Przelew { get; set; }
public decimal? DodFplat { get; set; }
public short? EksportFk { get; set; }
public decimal? WalId { get; set; }
public decimal? Kurs { get; set; }
public DateTime? ZmianaPkt { get; set; }
public string Nip { get; set; }
public string GrupyGtu { get; set; }
public short? PodmiotPowiazany { get; set; }
public virtual Kasa Kasa { get; set; }
public virtual Walutum Wal { get; set; }
public virtual ICollection<ParBon> ParBons { get; set; }
public virtual ICollection<ParPunkty> ParPunkties { get; set; }
public virtual ICollection<ParWalutum> ParWaluta { get; set; }
public virtual ICollection<PozPar> PozPars { get; set; }
public virtual ICollection<RegulaPar> RegulaPars { get; set; }
}