Dekrety #1
This commit is contained in:
27
Blink.Backoffice.Services.PcmDb/Entities/SklepRegulaKod.cs
Normal file
27
Blink.Backoffice.Services.PcmDb/Entities/SklepRegulaKod.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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!;
|
||||
}
|
||||
Reference in New Issue
Block a user