Dekrety #1
This commit is contained in:
45
Blink.Backoffice.Services.PcmDb/Entities/HarmWpis.cs
Normal file
45
Blink.Backoffice.Services.PcmDb/Entities/HarmWpis.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user