37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class Ofertum
|
|
{
|
|
public Ofertum()
|
|
{
|
|
OfKods = new HashSet<OfKod>();
|
|
}
|
|
|
|
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; }
|
|
public virtual Towar Tow { get; set; }
|
|
public virtual ICollection<OfKod> OfKods { get; set; }
|
|
} |