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,32 +1,35 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class KartaLoj
{
public decimal KartaId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class KartaLoj
{
public decimal KartaId { get; set; }
public decimal KontoId { get; set; }
public decimal KontoId { get; set; }
public short TypKarty { get; set; }
public short TypKarty { get; set; }
public string? KodKarty { get; set; }
public string? KodKarty { get; set; }
public DateTime? WaznaOd { get; set; }
public DateTime? WaznaOd { get; set; }
public DateTime? WaznaDo { get; set; }
public DateTime? WaznaDo { get; set; }
public DateTime? Uniewazniono { get; set; }
public DateTime? Uniewazniono { get; set; }
public string? Posiadacz { get; set; }
public string? Posiadacz { get; set; }
public string? Opis1 { get; set; }
public string? Opis1 { get; set; }
public string? Opis2 { get; set; }
public string? Opis2 { get; set; }
public decimal? CentrKartaId { get; set; }
public decimal? CentrKartaId { get; set; }
public virtual KontoLoj Konto { get; set; } = null!;
public virtual KontoLoj Konto { get; set; } = null!;
public virtual ICollection<ZdarzLoj> ZdarzLoj { get; set; } = new List<ZdarzLoj>();
public virtual ICollection<ZdarzLoj> ZdarzLoj { get; set; } = new List<ZdarzLoj>();
public virtual ICollection<NrRej> NrRej { get; set; } = new List<NrRej>();
}
public virtual ICollection<NrRej> NrRej { get; set; } = new List<NrRej>();
}