52 lines
1.1 KiB
C#
52 lines
1.1 KiB
C#
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; }
|
|
}
|