Dekrety #1
This commit is contained in:
45
Blink.Backoffice.Services.PcmDb/Entities/TowKraj.cs
Normal file
45
Blink.Backoffice.Services.PcmDb/Entities/TowKraj.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
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!;
|
||||
}
|
||||
Reference in New Issue
Block a user