Add DRS
This commit is contained in:
@@ -1,40 +1,47 @@
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class Panel
|
||||
{
|
||||
public decimal PanelId { get; set; }
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class Panel
|
||||
{
|
||||
public decimal PanelId { get; set; }
|
||||
|
||||
public short Aktywny { get; set; }
|
||||
public short Aktywny { get; set; }
|
||||
|
||||
public short Rodzaj { get; set; }
|
||||
public short Rodzaj { get; set; }
|
||||
|
||||
public decimal? UzId { get; set; }
|
||||
public decimal? UzId { get; set; }
|
||||
|
||||
public decimal? UzNSId { get; set; }
|
||||
public decimal? UzNSId { 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? CentrPanelId { get; set; }
|
||||
public decimal? CentrPanelId { get; set; }
|
||||
|
||||
public short TypAplikacji { get; set; }
|
||||
public short TypAplikacji { get; set; }
|
||||
|
||||
public virtual ICollection<PanelParam> PanelParam { get; set; } = new List<PanelParam>();
|
||||
public decimal? ZakladkaId { get; set; }
|
||||
|
||||
public virtual ICollection<SklepPanel> SklepPanel { get; set; } = new List<SklepPanel>();
|
||||
public virtual ICollection<PanelParam> PanelParam { get; set; } = new List<PanelParam>();
|
||||
|
||||
public virtual Uzytkownik? Uz { get; set; }
|
||||
public virtual ICollection<SklepPanel> SklepPanel { get; set; } = new List<SklepPanel>();
|
||||
|
||||
public virtual UzNaSklep? UzNS { get; set; }
|
||||
}
|
||||
public virtual Uzytkownik? Uz { get; set; }
|
||||
|
||||
public virtual UzNaSklep? UzNS { get; set; }
|
||||
|
||||
public virtual ZakladkaPanelu? Zakladka { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user