Add DRS
This commit is contained in:
33
Blink.Backoffice.Services.PcmDb/Entities/SklepDokBon.cs
Normal file
33
Blink.Backoffice.Services.PcmDb/Entities/SklepDokBon.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class SklepDokBon
|
||||
{
|
||||
public decimal SklepId { get; set; }
|
||||
|
||||
public decimal SklepDokId { get; set; }
|
||||
|
||||
public short KolejnoscBonu { get; set; }
|
||||
|
||||
public string? KodBonu { get; set; }
|
||||
|
||||
public string? NazwaSerwisu { get; set; }
|
||||
|
||||
public string? IdTransakcji { get; set; }
|
||||
|
||||
public short? TypBonu { get; set; }
|
||||
|
||||
public decimal? WartoscBonu { get; set; }
|
||||
|
||||
public DateTime? CzasTransakcji { get; set; }
|
||||
|
||||
public decimal? SklepWalId { get; set; }
|
||||
|
||||
public decimal? SklepFormPlatnId { get; set; }
|
||||
|
||||
public virtual SklepDok SklepDok { get; set; } = null!;
|
||||
|
||||
public virtual SklepWaluta? SklepWaluta { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user