This commit is contained in:
2024-05-16 10:37:44 +02:00
commit 64b26d6823
678 changed files with 154503 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.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>();
}