Dekrety #1
This commit is contained in:
29
Blink.Backoffice.Services.PcmDb/Entities/Partia.cs
Normal file
29
Blink.Backoffice.Services.PcmDb/Entities/Partia.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class Partia
|
||||
{
|
||||
public decimal DokId { get; set; }
|
||||
|
||||
public int Kolejnosc { get; set; }
|
||||
|
||||
public short TypPartii { get; set; }
|
||||
|
||||
public decimal TowId { get; set; }
|
||||
|
||||
public decimal Pozostalo { get; set; }
|
||||
|
||||
public string? Cecha1 { get; set; }
|
||||
|
||||
public string? Cecha2 { get; set; }
|
||||
|
||||
public DateTime? DataWazn { get; set; }
|
||||
|
||||
public virtual PozDok PozDok { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<RozliczeniePartii> RozliczeniePartii { get; set; } = new List<RozliczeniePartii>();
|
||||
|
||||
public virtual Towar Tow { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user