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

60 lines
2.1 KiB
C#

using System.Collections.Generic;
using System.Text.Json.Serialization;
#nullable disable
namespace Pcm.Db.Entities;
public class PozDok
{
public PozDok()
{
PozAkcyzas = new HashSet<PozAkcyza>();
RegulaPozDokSzczegs = new HashSet<RegulaPozDokSzczeg>();
RegulaPozDoks = new HashSet<RegulaPozDok>();
RozPrtMags = new HashSet<RozPrtMag>();
RozliczeniePartiis = new HashSet<RozliczeniePartii>();
TekstPozs = new HashSet<TekstPoz>();
}
public decimal DokId { get; set; }
public int Kolejnosc { get; set; }
public int NrPozycji { get; set; }
public decimal TowId { get; set; }
public short TypPoz { get; set; }
public decimal IloscPlus { get; set; }
public decimal IloscMinus { get; set; }
public short PoziomCen { get; set; }
public short Metoda { get; set; }
public decimal CenaDomyslna { get; set; }
public decimal CenaPrzedRab { get; set; }
public decimal RabatProc { get; set; }
public decimal CenaPoRab { get; set; }
public decimal Wartosc { get; set; }
public decimal CenaDet { get; set; }
public decimal CenaMag { get; set; }
public short Stawka { get; set; }
public short TypTowaru { get; set; }
public decimal IleWzgrzewce { get; set; }
public short? StawkaDod { get; set; }
public decimal? Netto { get; set; }
public decimal? Podatek { get; set; }
[JsonIgnore]
public virtual Dok Dok { get; set; }
public virtual Towar Tow { get; set; }
[JsonIgnore]
public virtual Partium Partium { get; set; }
[JsonIgnore]
public virtual ICollection<PozAkcyza> PozAkcyzas { get; set; }
[JsonIgnore]
public virtual ICollection<RegulaPozDokSzczeg> RegulaPozDokSzczegs { get; set; }
[JsonIgnore]
public virtual ICollection<RegulaPozDok> RegulaPozDoks { get; set; }
[JsonIgnore]
public virtual ICollection<RozPrtMag> RozPrtMags { get; set; }
[JsonIgnore]
public virtual ICollection<RozliczeniePartii> RozliczeniePartiis { get; set; }
[JsonIgnore]
public virtual ICollection<TekstPoz> TekstPozs { get; set; }
}