Dekrety #1
This commit is contained in:
37
Blink.Backoffice.Services.PcmDb/Entities/PozPar.cs
Normal file
37
Blink.Backoffice.Services.PcmDb/Entities/PozPar.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class PozPar
|
||||
{
|
||||
public decimal ParId { get; set; }
|
||||
|
||||
public int Kolejnosc { get; set; }
|
||||
|
||||
public decimal TowId { get; set; }
|
||||
|
||||
public short TypPozPar { get; set; }
|
||||
|
||||
public short Stawka { get; set; }
|
||||
|
||||
public decimal Ilosc { get; set; }
|
||||
|
||||
public decimal RabatKwot { get; set; }
|
||||
|
||||
public decimal WartoscBrutto { get; set; }
|
||||
|
||||
public string? Kod { get; set; }
|
||||
|
||||
public string? GrupaGTU { get; set; }
|
||||
|
||||
public virtual Paragon Par { get; set; } = null!;
|
||||
|
||||
public virtual PozParSzczeg? PozParSzczeg { get; set; }
|
||||
|
||||
public virtual ICollection<RegulaPozPar> RegulaPozPar { get; set; } = new List<RegulaPozPar>();
|
||||
|
||||
public virtual ICollection<RegulaPozParSzczeg> RegulaPozParSzczeg { get; set; } = new List<RegulaPozParSzczeg>();
|
||||
|
||||
public virtual Towar Tow { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user