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,33 @@
using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepTowOpak
{
public decimal SklepId { get; set; }
public decimal SklepTowId { get; set; }
public short Znaczenie { get; set; }
public short Kolejnosc { get; set; }
public decimal SklepOpakId { 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 SklepTowar SklepTowar { get; set; } = null!;
public virtual SklepTowar SklepTowarNavigation { get; set; } = null!;
}