Dekrety #1
This commit is contained in:
35
Blink.Backoffice.Services.PcmDb/Entities/SklepRapWartPocz.cs
Normal file
35
Blink.Backoffice.Services.PcmDb/Entities/SklepRapWartPocz.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class SklepRapWartPocz
|
||||
{
|
||||
public decimal SklepId { get; set; }
|
||||
|
||||
public decimal SklepRWPId { get; set; }
|
||||
|
||||
public short TypRap { get; set; }
|
||||
|
||||
public DateTime Data { get; set; }
|
||||
|
||||
public short Aktywny { get; set; }
|
||||
|
||||
public short? Param1 { get; set; }
|
||||
|
||||
public short? Param2 { get; set; }
|
||||
|
||||
public short? Param3 { get; set; }
|
||||
|
||||
public string? ParamTxt { get; set; }
|
||||
|
||||
public DateTime Wykonano { get; set; }
|
||||
|
||||
public DateTime Zmiana { get; set; }
|
||||
|
||||
public short? Wersja { get; set; }
|
||||
|
||||
public virtual Sklep Sklep { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<SklepRapWartPoczDane> SklepRapWartPoczDane { get; set; } = new List<SklepRapWartPoczDane>();
|
||||
}
|
||||
Reference in New Issue
Block a user