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,28 +1,31 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class SklepProfil
{
public decimal SklepId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepProfil
{
public decimal SklepId { get; set; }
public decimal SklepProfilId { get; set; }
public decimal SklepProfilId { get; set; }
public decimal? ProfilId { get; set; }
public decimal? ProfilId { get; set; }
public short Typ { get; set; }
public short Typ { get; set; }
public string Nazwa { get; set; } = null!;
public string Nazwa { get; set; } = null!;
public short? Aktywny { get; set; }
public short? Aktywny { get; set; }
public DateTime? Zmiana { get; set; }
public DateTime? Zmiana { get; set; }
public DateTime? Utworzony { get; set; }
public DateTime? Utworzony { get; set; }
public virtual Profil? Profil { get; set; }
public virtual Profil? Profil { get; set; }
public virtual Sklep Sklep { get; set; } = null!;
public virtual Sklep Sklep { get; set; } = null!;
public virtual ICollection<SklepProfilKonfig> SklepProfilKonfig { get; set; } = new List<SklepProfilKonfig>();
public virtual ICollection<SklepProfilKonfig> SklepProfilKonfig { get; set; } = new List<SklepProfilKonfig>();
public virtual ICollection<SklepUzytkownik> SklepUzytkownik { get; set; } = new List<SklepUzytkownik>();
}
public virtual ICollection<SklepUzytkownik> SklepUzytkownik { get; set; } = new List<SklepUzytkownik>();
}