This commit is contained in:
2024-05-16 10:37:44 +02:00
commit 64b26d6823
678 changed files with 154503 additions and 0 deletions

View File

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