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,38 +1,45 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class SklepPanel
{
public decimal SklepId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepPanel
{
public decimal SklepId { get; set; }
public decimal SklepPanelId { get; set; }
public decimal SklepPanelId { get; set; }
public short Aktywny { get; set; }
public short Aktywny { get; set; }
public short Rodzaj { get; set; }
public short Rodzaj { get; set; }
public decimal? SklepUzId { get; set; }
public decimal? SklepUzId { get; set; }
public int? Param1 { get; set; }
public int? Param1 { get; set; }
public string Nazwa { get; set; } = null!;
public string Nazwa { get; set; } = null!;
public short? T { get; set; }
public short? T { get; set; }
public short? L { get; set; }
public short? L { get; set; }
public short? H { get; set; }
public short? H { get; set; }
public short? W { get; set; }
public short? W { get; set; }
public DateTime Zmiana { get; set; }
public DateTime Zmiana { get; set; }
public decimal? PanelId { get; set; }
public decimal? PanelId { get; set; }
public short TypAplikacji { get; set; }
public short TypAplikacji { get; set; }
public virtual Panel? Panel { get; set; }
public decimal? SklepZakladkaId { get; set; }
public virtual ICollection<SklepPanelParam> SklepPanelParam { get; set; } = new List<SklepPanelParam>();
public virtual Panel? Panel { get; set; }
public virtual SklepUzytkownik? SklepUzytkownik { get; set; }
}
public virtual ICollection<SklepPanelParam> SklepPanelParam { get; set; } = new List<SklepPanelParam>();
public virtual SklepUzytkownik? SklepUzytkownik { get; set; }
public virtual SklepZakladkaPanelu? SklepZakladkaPanelu { get; set; }
}