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 SklepDokBon
{
public decimal SklepId { get; set; }
public decimal SklepDokId { 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? SklepWalId { get; set; }
public decimal? SklepFormPlatnId { get; set; }
public virtual SklepDok SklepDok { get; set; } = null!;
public virtual SklepWaluta? SklepWaluta { get; set; }
}