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

@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class DokBon
{
public decimal DokId { get; set; }
public short KolejnoscBonu { get; set; }
public string? KodBonu { get; set; }
public string? NazwaSerwisu { get; set; }
public string? IdTransakcji { get; set; }
public short? TypBonu { get; set; }
public decimal? WartoscBonu { get; set; }
public DateTime? CzasTransakcji { get; set; }
public decimal? WalId { get; set; }
public decimal? FormPlatnId { get; set; }
public virtual Dok Dok { get; set; } = null!;
public virtual FormaPlatnPos7? FormPlatn { get; set; }
public virtual Waluta? Wal { get; set; }
}