2024-05-16 10:37:44 +02:00

28 lines
601 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SklepRegulaKod
{
public decimal SklepId { get; set; }
public decimal SklepRegulaId { get; set; }
public string Kod { get; set; } = null!;
public short Znaczenie { get; set; }
public decimal? Ilosc { get; set; }
public decimal? Cena { get; set; }
public int? Parametr { get; set; }
public string? NazwaTowaru { get; set; }
public string? Informacja { get; set; }
public virtual SklepRegula SklepRegula { get; set; } = null!;
}