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,42 +1,47 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class HarmWpis
{
public decimal HarmId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class HarmWpis
{
public decimal HarmId { get; set; }
public short HarmTyp { get; set; }
public short HarmTyp { get; set; }
public string Nazwa { get; set; } = null!;
public string Nazwa { get; set; } = null!;
public string Opcje { get; set; } = null!;
public string Opcje { get; set; } = null!;
public short Aktywny { get; set; }
public short Aktywny { get; set; }
public short Uwzgledniony { get; set; }
public short Uwzgledniony { get; set; }
public DateTime Zmiana { get; set; }
public DateTime Zmiana { get; set; }
public decimal? PolId { get; set; }
public decimal? PolId { get; set; }
public decimal? CentrHarmId { get; set; }
public decimal? CentrHarmId { get; set; }
public DateTime? WaznyOd { get; set; }
public DateTime? WaznyOd { get; set; }
public DateTime? WaznyDo { get; set; }
public DateTime? WaznyDo { get; set; }
public decimal? KrajId { get; set; }
public decimal? KrajId { get; set; }
public short? CenyBrutto { get; set; }
public short? CenyBrutto { get; set; }
public virtual ICollection<HarmCeny> HarmCeny { get; set; } = new List<HarmCeny>();
public string? Opis { get; set; }
public virtual ICollection<HarmCykl> HarmCykl { get; set; } = new List<HarmCykl>();
public virtual ICollection<HarmCeny> HarmCeny { get; set; } = new List<HarmCeny>();
public virtual ICollection<HarmHarm> HarmHarmHarm { get; set; } = new List<HarmHarm>();
public virtual ICollection<HarmCykl> HarmCykl { get; set; } = new List<HarmCykl>();
public virtual ICollection<HarmHarm> HarmHarmPoprzHarm { get; set; } = new List<HarmHarm>();
public virtual ICollection<HarmHarm> HarmHarmHarm { get; set; } = new List<HarmHarm>();
public virtual Kraj? Kraj { get; set; }
public virtual ICollection<HarmHarm> HarmHarmPoprzHarm { get; set; } = new List<HarmHarm>();
public virtual Polityka? Pol { get; set; }
}
public virtual Kraj? Kraj { get; set; }
public virtual Polityka? Pol { get; set; }
}