2024-07-01 21:28:20 +02:00

69 lines
2.0 KiB
C#

namespace DuSoft.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> SklepDok { get; set; } = new List<SklepDok>();
public virtual ICollection<SklepEmail> SklepEmail { get; set; } = new List<SklepEmail>();
public virtual ICollection<SklepGrupaUz> SklepGrupaUzSklepUzytkownik { get; set; } = new List<SklepGrupaUz>();
public virtual SklepGrupaUz? SklepGrupaUzSklepUzytkownikNavigation { get; set; }
public virtual ICollection<SklepPanel> SklepPanel { get; set; } = new List<SklepPanel>();
public virtual ICollection<SklepPowiazanieUz> SklepPowiazanieUz { get; set; } = new List<SklepPowiazanieUz>();
public virtual SklepProfil? SklepProfil { get; set; }
public virtual ICollection<SklepTrescEmail> SklepTrescEmail { get; set; } = new List<SklepTrescEmail>();
public virtual ICollection<SklepUprawnienie> SklepUprawnienie { get; set; } = new List<SklepUprawnienie>();
public virtual ICollection<SklepZdarzOs> SklepZdarzOs { get; set; } = new List<SklepZdarzOs>();
public virtual Uzytkownik? Uz { get; set; }
public virtual ICollection<UzNaSklep> UzNaSklep { get; set; } = new List<UzNaSklep>();
}