52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class UzNaSklep
|
|
{
|
|
public decimal UzNSId { get; set; }
|
|
|
|
public decimal? SklepId { get; set; }
|
|
|
|
public decimal? SklepUzId { get; set; }
|
|
|
|
public string Identyfikator { get; set; } = null!;
|
|
|
|
public string Haslo { 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 string? Jezyk { get; set; }
|
|
|
|
public string? IdentPrePaid { get; set; }
|
|
|
|
public string? HasloPrepaid { get; set; }
|
|
|
|
public DateTime? Zmiana { get; set; }
|
|
|
|
public DateTime? WymusZmianeHasla { get; set; }
|
|
|
|
public short? RolaKasjera { get; set; }
|
|
|
|
public virtual ICollection<Panel> Panel { get; set; } = new List<Panel>();
|
|
|
|
public virtual ICollection<PowiazanieUzNaSklep> PowiazanieUzNaSklep { get; set; } = new List<PowiazanieUzNaSklep>();
|
|
|
|
public virtual Sklep? Sklep { get; set; }
|
|
|
|
public virtual SklepUzytkownik? SklepUzytkownik { get; set; }
|
|
|
|
public virtual ICollection<UprawnienieNaSklep> UprawnienieNaSklep { get; set; } = new List<UprawnienieNaSklep>();
|
|
}
|