This commit is contained in:
2024-05-16 10:37:44 +02:00
commit 64b26d6823
678 changed files with 154503 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
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>();
}