namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class SklepUzytkownik { public decimal SklepId { get; set; } public decimal SklepUzId { get; set; } public string Identyfikator { get; set; } = null!; public string Nazwisko { get; set; } = null!; public short Aktywny { get; set; } public short NrKasjera { get; set; } public short? Rola { get; set; } public string? KodKasjera { get; set; } public short? NrSzuflady { get; set; } public decimal? SklepProfilId { get; set; } public decimal? UzId { get; set; } public short? Opiekun { get; set; } public DateTime? OstZmianaHasla { get; set; } public string? Jezyk { get; set; } public string? IdentPrepaid { get; set; } public string? HasloPrepaid { get; set; } public DateTime? Zmiana { get; set; } public short? RolaKasjera { get; set; } public string? Haslo { get; set; } public virtual Sklep Sklep { get; set; } = null!; public virtual ICollection SklepDok { get; set; } = new List(); public virtual ICollection SklepEmail { get; set; } = new List(); public virtual ICollection SklepGrupaUzSklepUzytkownik { get; set; } = new List(); public virtual SklepGrupaUz? SklepGrupaUzSklepUzytkownikNavigation { get; set; } public virtual ICollection SklepPanel { get; set; } = new List(); public virtual ICollection SklepPowiazanieUz { get; set; } = new List(); public virtual SklepProfil? SklepProfil { get; set; } public virtual ICollection SklepTrescEmail { get; set; } = new List(); public virtual ICollection SklepUprawnienie { get; set; } = new List(); public virtual ICollection SklepZdarzOs { get; set; } = new List(); public virtual Uzytkownik? Uz { get; set; } public virtual ICollection UzNaSklep { get; set; } = new List(); }