Add DRS
This commit is contained in:
33
Blink.Backoffice.Services.PcmDb/Entities/SklepTowOpak.cs
Normal file
33
Blink.Backoffice.Services.PcmDb/Entities/SklepTowOpak.cs
Normal 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!;
|
||||
}
|
||||
Reference in New Issue
Block a user