Add DRS
This commit is contained in:
31
Blink.Backoffice.Services.PcmDb/Entities/TowOpak.cs
Normal file
31
Blink.Backoffice.Services.PcmDb/Entities/TowOpak.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class TowOpak
|
||||
{
|
||||
public decimal TowId { get; set; }
|
||||
|
||||
public short Znaczenie { get; set; }
|
||||
|
||||
public short Kolejnosc { get; set; }
|
||||
|
||||
public decimal OpakId { get; set; }
|
||||
|
||||
public short? Opcja1 { get; set; }
|
||||
|
||||
public short? Opcja2 { get; set; }
|
||||
|
||||
public short? Opcja3 { get; set; }
|
||||
|
||||
public decimal? Przelicznik { get; set; }
|
||||
|
||||
public decimal? MinIlosc { get; set; }
|
||||
|
||||
public decimal? MaxIlosc { get; set; }
|
||||
|
||||
public virtual Towar Opak { get; set; } = null!;
|
||||
|
||||
public virtual Towar Tow { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user