35 lines
776 B
C#
35 lines
776 B
C#
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class SklepRegulaPozParSzczeg
|
|
{
|
|
public decimal SklepId { get; set; }
|
|
|
|
public decimal SklepParId { get; set; }
|
|
|
|
public int Kolejnosc { get; set; }
|
|
|
|
public decimal SklepRegulaId { get; set; }
|
|
|
|
public short Typ { get; set; }
|
|
|
|
public int KolejnoscRegulaPar { get; set; }
|
|
|
|
public decimal? Wartosc1 { get; set; }
|
|
|
|
public decimal? Wartosc2 { get; set; }
|
|
|
|
public decimal? Wartosc3 { get; set; }
|
|
|
|
public decimal? Wartosc4 { get; set; }
|
|
|
|
public string? Tekst { get; set; }
|
|
|
|
public short? Opcja1 { get; set; }
|
|
|
|
public short? Opcja2 { get; set; }
|
|
|
|
public decimal? CentrRegulaId { get; set; }
|
|
|
|
public virtual SklepPozPar SklepPozPar { get; set; } = null!;
|
|
}
|