2024-05-16 10:37:44 +02:00

46 lines
1.1 KiB
C#

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