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,32 +1,35 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class GrupaAkcyzowa
{
public decimal GrAkcId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class GrupaAkcyzowa
{
public decimal GrAkcId { get; set; }
public string Kod { get; set; } = null!;
public string Kod { get; set; } = null!;
public string Nazwa { get; set; } = null!;
public string Nazwa { get; set; } = null!;
public string AkcJM { get; set; } = null!;
public string AkcJM { get; set; } = null!;
public string OpcjeWzoru { get; set; } = null!;
public string OpcjeWzoru { get; set; } = null!;
public string? PrefiksyCN { get; set; }
public string? PrefiksyCN { get; set; }
public string? Opis { get; set; }
public string? Opis { get; set; }
public decimal? CentrGrAkcId { get; set; }
public decimal? CentrGrAkcId { get; set; }
public DateTime Zmiana { get; set; }
public DateTime Zmiana { get; set; }
public string? DodJM { get; set; }
public string? DodJM { get; set; }
public decimal? IleDodJMWAkcJM { get; set; }
public decimal? IleDodJMWAkcJM { get; set; }
public virtual ICollection<PozAkcyza> PozAkcyza { get; set; } = new List<PozAkcyza>();
public virtual ICollection<PozAkcyza> PozAkcyza { get; set; } = new List<PozAkcyza>();
public virtual ICollection<TabelaAkcyzowa> TabelaAkcyzowa { get; set; } = new List<TabelaAkcyzowa>();
public virtual ICollection<TabelaAkcyzowa> TabelaAkcyzowa { get; set; } = new List<TabelaAkcyzowa>();
public virtual ICollection<TowAkcyza> TowAkcyza { get; set; } = new List<TowAkcyza>();
}
public virtual ICollection<TowAkcyza> TowAkcyza { get; set; } = new List<TowAkcyza>();
}