Dekrety #1
This commit is contained in:
27
Blink.Backoffice.Services.PcmDb/Entities/TowDodatek.cs
Normal file
27
Blink.Backoffice.Services.PcmDb/Entities/TowDodatek.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class TowDodatek
|
||||
{
|
||||
public decimal TowId { get; set; }
|
||||
|
||||
public short Kolejnosc { get; set; }
|
||||
|
||||
public decimal DodTowId { get; set; }
|
||||
|
||||
public decimal Ilosc { get; set; }
|
||||
|
||||
public decimal Cena { get; set; }
|
||||
|
||||
public short Domyslny { get; set; }
|
||||
|
||||
public short Obowiazkowy { get; set; }
|
||||
|
||||
public short? Param1 { get; set; }
|
||||
|
||||
public virtual Towar DodTow { get; set; } = null!;
|
||||
|
||||
public virtual Towar Tow { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user