This commit is contained in:
2024-05-16 10:37:44 +02:00
commit 64b26d6823
678 changed files with 154503 additions and 0 deletions

View File

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