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,46 +1,49 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class ZdarzLoj
{
public decimal ZdarzLojId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class ZdarzLoj
{
public decimal ZdarzLojId { get; set; }
public decimal? KontoId { get; set; }
public decimal? KontoId { get; set; }
public decimal? KartaId { get; set; }
public decimal? KartaId { get; set; }
public string? KodKarty { get; set; }
public string? KodKarty { get; set; }
public DateTime DataCzas { get; set; }
public DateTime DataCzas { get; set; }
public DateTime DataCzasZapisu { get; set; }
public DateTime DataCzasZapisu { get; set; }
public short TypZdarz { get; set; }
public short TypZdarz { get; set; }
public decimal? RegulaId { get; set; }
public decimal? RegulaId { get; set; }
public decimal? StanPrzed { get; set; }
public decimal? StanPrzed { get; set; }
public decimal? StanPo { get; set; }
public decimal? StanPo { get; set; }
public decimal? Kwota { get; set; }
public decimal? Kwota { get; set; }
public string? Opis { get; set; }
public string? Opis { get; set; }
public string? TransUUID { get; set; }
public string? TransUUID { get; set; }
public string? ShopNo { get; set; }
public string? ShopNo { get; set; }
public string? PosNo { get; set; }
public string? PosNo { get; set; }
public decimal? SklepId { get; set; }
public decimal? SklepId { get; set; }
public decimal? DokId { get; set; }
public decimal? DokId { get; set; }
public string? Cecha { get; set; }
public string? Cecha { get; set; }
public virtual KartaLoj? Karta { get; set; }
public virtual KartaLoj? Karta { get; set; }
public virtual KontoLoj? Konto { get; set; }
public virtual KontoLoj? Konto { get; set; }
public virtual ICollection<OpisZdarzLoj> OpisZdarzLoj { get; set; } = new List<OpisZdarzLoj>();
}
public virtual ICollection<OpisZdarzLoj> OpisZdarzLoj { get; set; } = new List<OpisZdarzLoj>();
}