This commit is contained in:
2026-05-19 16:45:53 +02:00
parent e80c8894ea
commit ae32eef32a
735 changed files with 15154 additions and 147132 deletions

View 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!;
}