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,24 +1,27 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class KodWazony
{
public decimal KWId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class KodWazony
{
public decimal KWId { get; set; }
public short Prefix { get; set; }
public short Prefix { get; set; }
public string Nazwa { get; set; } = null!;
public string Nazwa { get; set; } = null!;
public short CzescStala { get; set; }
public short CzescStala { get; set; }
public short WartoscWKodzie { get; set; }
public short WartoscWKodzie { get; set; }
public short DodKontrola { get; set; }
public short DodKontrola { get; set; }
public short PrecyzjaWKodzie { get; set; }
public short PrecyzjaWKodzie { get; set; }
public decimal? CentrKWId { get; set; }
public decimal? CentrKWId { get; set; }
public decimal? JMId { get; set; }
public decimal? JMId { get; set; }
public virtual JM? JM { get; set; }
}
public virtual JM? JM { get; set; }
}