46 lines
946 B
C#
46 lines
946 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class TowKraj
|
|
{
|
|
public decimal TowId { get; set; }
|
|
|
|
public decimal KrajId { get; set; }
|
|
|
|
public DateTime Zmiana { get; set; }
|
|
|
|
public short? Stawka { get; set; }
|
|
|
|
public decimal? CenaZak { get; set; }
|
|
|
|
public decimal? CenaDet { get; set; }
|
|
|
|
public decimal? CenaHurt { get; set; }
|
|
|
|
public decimal? CenaDod { get; set; }
|
|
|
|
public decimal? CenaNoc { 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 virtual Kraj Kraj { get; set; } = null!;
|
|
|
|
public virtual Towar Tow { get; set; } = null!;
|
|
}
|