2024-07-01 21:28:20 +02:00

33 lines
867 B
C#

namespace DuSoft.PcmDb.Entities;
public partial class GrupaAkcyzowa
{
public decimal GrAkcId { get; set; }
public string Kod { get; set; } = null!;
public string Nazwa { get; set; } = null!;
public string AkcJM { get; set; } = null!;
public string OpcjeWzoru { get; set; } = null!;
public string? PrefiksyCN { get; set; }
public string? Opis { get; set; }
public decimal? CentrGrAkcId { get; set; }
public DateTime Zmiana { get; set; }
public string? DodJM { get; set; }
public decimal? IleDodJMWAkcJM { get; set; }
public virtual ICollection<PozAkcyza> PozAkcyza { get; set; } = new List<PozAkcyza>();
public virtual ICollection<TabelaAkcyzowa> TabelaAkcyzowa { get; set; } = new List<TabelaAkcyzowa>();
public virtual ICollection<TowAkcyza> TowAkcyza { get; set; } = new List<TowAkcyza>();
}