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,34 +1,37 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class RegulaDok
{
public decimal DokId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class RegulaDok
{
public decimal DokId { get; set; }
public decimal RegulaId { get; set; }
public decimal RegulaId { get; set; }
public int Kolejnosc { get; set; }
public int Kolejnosc { get; set; }
public decimal? Wartosc { get; set; }
public decimal? Wartosc { get; set; }
public string? Tekst { get; set; }
public string? Tekst { get; set; }
public short? TypReguly { get; set; }
public short? TypReguly { get; set; }
public short? Opcja { get; set; }
public short? Opcja { get; set; }
public decimal? KontoId { get; set; }
public decimal? KontoId { get; set; }
public short? Opcja2 { get; set; }
public short? Opcja2 { get; set; }
public decimal? Wartosc2 { get; set; }
public decimal? Wartosc2 { get; set; }
public decimal? Wartosc3 { get; set; }
public decimal? Wartosc3 { get; set; }
public virtual Dok Dok { get; set; } = null!;
public virtual Dok Dok { get; set; } = null!;
public virtual KontoLoj? Konto { get; set; }
public virtual KontoLoj? Konto { get; set; }
public virtual Regula Regula { get; set; } = null!;
public virtual Regula Regula { get; set; } = null!;
public virtual ICollection<RegulaDokSzczeg> RegulaDokSzczeg { get; set; } = new List<RegulaDokSzczeg>();
}
public virtual ICollection<RegulaDokSzczeg> RegulaDokSzczeg { get; set; } = new List<RegulaDokSzczeg>();
}