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,48 +1,51 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class Oferta
{
public decimal KontrId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class Oferta
{
public decimal KontrId { get; set; }
public decimal OfId { get; set; }
public decimal OfId { get; set; }
public decimal? TowId { get; set; }
public decimal? TowId { get; set; }
public decimal? Przelicznik { get; set; }
public decimal? Przelicznik { get; set; }
public string? Nazwa { get; set; }
public string? Nazwa { get; set; }
public string? Skrot { get; set; }
public string? Skrot { get; set; }
public string? Indeks1 { get; set; }
public string? Indeks1 { get; set; }
public string? Indeks2 { get; set; }
public string? Indeks2 { get; set; }
public string? Opis1 { get; set; }
public string? Opis1 { get; set; }
public string? Opis2 { get; set; }
public string? Opis2 { get; set; }
public string? Opis3 { get; set; }
public string? Opis3 { get; set; }
public string? Opis4 { get; set; }
public string? Opis4 { get; set; }
public string? CKU { get; set; }
public string? CKU { get; set; }
public short? TermWazn { get; set; }
public short? TermWazn { get; set; }
public short? Stawka { get; set; }
public short? Stawka { get; set; }
public decimal? Cena { get; set; }
public decimal? Cena { get; set; }
public string? Asortyment { get; set; }
public string? Asortyment { get; set; }
public string? Kategoria { get; set; }
public string? Kategoria { get; set; }
public string? JM { get; set; }
public string? JM { get; set; }
public virtual Kontrahent Kontr { get; set; } = null!;
public virtual Kontrahent Kontr { get; set; } = null!;
public virtual ICollection<OfKod> OfKod { get; set; } = new List<OfKod>();
public virtual ICollection<OfKod> OfKod { get; set; } = new List<OfKod>();
public virtual Towar? Tow { get; set; }
}
public virtual Towar? Tow { get; set; }
}