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,48 +1,57 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class UzNaSklep
{
public decimal UzNSId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class UzNaSklep
{
public decimal UzNSId { get; set; }
public decimal? SklepId { get; set; }
public decimal? SklepId { get; set; }
public decimal? SklepUzId { get; set; }
public decimal? SklepUzId { get; set; }
public string Identyfikator { get; set; } = null!;
public string Identyfikator { get; set; } = null!;
public string Haslo { get; set; } = null!;
public string Haslo { get; set; } = null!;
public string Nazwisko { get; set; } = null!;
public string Nazwisko { get; set; } = null!;
public short Aktywny { get; set; }
public short Aktywny { get; set; }
public short NrKasjera { get; set; }
public short NrKasjera { get; set; }
public short? Rola { get; set; }
public short? Rola { get; set; }
public string? KodKasjera { get; set; }
public string? KodKasjera { get; set; }
public short? NrSzuflady { get; set; }
public short? NrSzuflady { get; set; }
public string? Jezyk { get; set; }
public string? Jezyk { get; set; }
public string? IdentPrePaid { get; set; }
public string? IdentPrePaid { get; set; }
public string? HasloPrepaid { get; set; }
public string? HasloPrepaid { get; set; }
public DateTime? Zmiana { get; set; }
public DateTime? Zmiana { get; set; }
public DateTime? WymusZmianeHasla { get; set; }
public DateTime? WymusZmianeHasla { get; set; }
public short? RolaKasjera { get; set; }
public short? RolaKasjera { get; set; }
public virtual ICollection<Panel> Panel { get; set; } = new List<Panel>();
public DateTime? WymusZmianeKoduKarty { get; set; }
public virtual ICollection<PowiazanieUzNaSklep> PowiazanieUzNaSklep { get; set; } = new List<PowiazanieUzNaSklep>();
public short? KonfigRegTypZapisu { get; set; }
public virtual Sklep? Sklep { get; set; }
public virtual ICollection<Panel> Panel { get; set; } = new List<Panel>();
public virtual SklepUzytkownik? SklepUzytkownik { get; set; }
public virtual ICollection<PowiazanieUzNaSklep> PowiazanieUzNaSklep { get; set; } = new List<PowiazanieUzNaSklep>();
public virtual ICollection<UprawnienieNaSklep> UprawnienieNaSklep { get; set; } = new List<UprawnienieNaSklep>();
}
public virtual Sklep? Sklep { get; set; }
public virtual SklepUzytkownik? SklepUzytkownik { get; set; }
public virtual ICollection<UprawnienieNaSklep> UprawnienieNaSklep { get; set; } = new List<UprawnienieNaSklep>();
public virtual ICollection<UzNaSklepDlugiZasob> UzNaSklepDlugiZasob { get; set; } = new List<UzNaSklepDlugiZasob>();
}