Dekrety #1
This commit is contained in:
51
Blink.Backoffice.Services.PcmDb/Entities/Oferta.cs
Normal file
51
Blink.Backoffice.Services.PcmDb/Entities/Oferta.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user