Dekrety #1
This commit is contained in:
27
Blink.Backoffice.Services.PcmDb/Entities/Parametr.cs
Normal file
27
Blink.Backoffice.Services.PcmDb/Entities/Parametr.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class Parametr
|
||||
{
|
||||
public decimal ParId { get; set; }
|
||||
|
||||
public string Nazwa { get; set; } = null!;
|
||||
|
||||
public short TypPar { get; set; }
|
||||
|
||||
public int WartMin { get; set; }
|
||||
|
||||
public int WartMax { get; set; }
|
||||
|
||||
public decimal? CentrParId { get; set; }
|
||||
|
||||
public virtual ICollection<GrWartosc> GrWartosc { get; set; } = new List<GrWartosc>();
|
||||
|
||||
public virtual ICollection<KatParam> KatParam { get; set; } = new List<KatParam>();
|
||||
|
||||
public virtual ICollection<ParWartosc> ParWartosc { get; set; } = new List<ParWartosc>();
|
||||
|
||||
public virtual ICollection<TowWartosc> TowWartosc { get; set; } = new List<TowWartosc>();
|
||||
}
|
||||
Reference in New Issue
Block a user