Dekrety #1
This commit is contained in:
27
Blink.Backoffice.Services.PcmDb/Entities/StanZgody.cs
Normal file
27
Blink.Backoffice.Services.PcmDb/Entities/StanZgody.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class StanZgody
|
||||
{
|
||||
public decimal KontrId { get; set; }
|
||||
|
||||
public decimal ZgId { get; set; }
|
||||
|
||||
public short Status { get; set; }
|
||||
|
||||
public string Kiedy { get; set; } = null!;
|
||||
|
||||
public string? Wersja { get; set; }
|
||||
|
||||
public DateTime Zmiana { get; set; }
|
||||
|
||||
public short? FormaDec { get; set; }
|
||||
|
||||
public DateTime? DataDec { get; set; }
|
||||
|
||||
public virtual Kontrahent Kontr { get; set; } = null!;
|
||||
|
||||
public virtual Zgoda Zg { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user