This commit is contained in:
2026-05-19 16:45:53 +02:00
parent e80c8894ea
commit ae32eef32a
735 changed files with 15154 additions and 147132 deletions

View File

@@ -1,22 +1,25 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class KthParWartosc
{
public decimal KPWId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class KthParWartosc
{
public decimal KPWId { get; set; }
public decimal KthParId { get; set; }
public decimal KthParId { get; set; }
public short Kolejnosc { get; set; }
public short Kolejnosc { get; set; }
public string Tekst { get; set; } = null!;
public string Tekst { get; set; } = null!;
public decimal? CentrKPWId { get; set; }
public decimal? CentrKPWId { get; set; }
public virtual KthParam KthPar { get; set; } = null!;
public virtual KthParam KthPar { get; set; } = null!;
public virtual ICollection<KthParam> KthParam { get; set; } = new List<KthParam>();
public virtual ICollection<KthParam> KthParam { get; set; } = new List<KthParam>();
public virtual ICollection<Kontrahent> Kontr { get; set; } = new List<Kontrahent>();
public virtual ICollection<Kontrahent> Kontr { get; set; } = new List<Kontrahent>();
public virtual ICollection<Sklep> Sklep { get; set; } = new List<Sklep>();
}
public virtual ICollection<Sklep> Sklep { get; set; } = new List<Sklep>();
}