This commit is contained in:
2026-05-19 16:45:53 +02:00
parent e80c8894ea
commit ae32eef32a
735 changed files with 15154 additions and 147132 deletions

View File

@@ -1,42 +1,45 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class TowKraj
{
public decimal TowId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class TowKraj
{
public decimal TowId { get; set; }
public decimal KrajId { get; set; }
public decimal KrajId { get; set; }
public DateTime Zmiana { get; set; }
public DateTime Zmiana { get; set; }
public short? Stawka { get; set; }
public short? Stawka { get; set; }
public decimal? CenaZak { get; set; }
public decimal? CenaZak { get; set; }
public decimal? CenaDet { get; set; }
public decimal? CenaDet { get; set; }
public decimal? CenaHurt { get; set; }
public decimal? CenaHurt { get; set; }
public decimal? CenaDod { get; set; }
public decimal? CenaDod { get; set; }
public decimal? CenaNoc { get; set; }
public decimal? CenaNoc { get; set; }
public string? Nazwa { get; set; }
public string? Nazwa { get; set; }
public string? Skrot { get; set; }
public string? Skrot { get; set; }
public string? Indeks1 { get; set; }
public string? Indeks1 { get; set; }
public string? Indeks2 { get; set; }
public string? Indeks2 { get; set; }
public string? Opis1 { get; set; }
public string? Opis1 { get; set; }
public string? Opis2 { get; set; }
public string? Opis2 { get; set; }
public string? Opis3 { get; set; }
public string? Opis3 { get; set; }
public string? Opis4 { get; set; }
public string? Opis4 { get; set; }
public virtual Kraj Kraj { get; set; } = null!;
public virtual Kraj Kraj { get; set; } = null!;
public virtual Towar Tow { get; set; } = null!;
}
public virtual Towar Tow { get; set; } = null!;
}