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,28 +1,31 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class RapWartPocz
{
public decimal RWPId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class RapWartPocz
{
public decimal RWPId { get; set; }
public short TypRap { get; set; }
public short TypRap { get; set; }
public DateTime Data { get; set; }
public DateTime Data { get; set; }
public short Aktywny { get; set; }
public short Aktywny { get; set; }
public short? Param1 { get; set; }
public short? Param1 { get; set; }
public short? Param2 { get; set; }
public short? Param2 { get; set; }
public short? Param3 { get; set; }
public short? Param3 { get; set; }
public string? ParamTxt { get; set; }
public string? ParamTxt { get; set; }
public DateTime Wykonano { get; set; }
public DateTime Wykonano { get; set; }
public DateTime Zmiana { get; set; }
public DateTime Zmiana { get; set; }
public short? Wersja { get; set; }
public short? Wersja { get; set; }
public virtual ICollection<RapWartPoczDane> RapWartPoczDane { get; set; } = new List<RapWartPoczDane>();
}
public virtual ICollection<RapWartPoczDane> RapWartPoczDane { get; set; } = new List<RapWartPoczDane>();
}