34 lines
762 B
C#
34 lines
762 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class DokBon
|
|
{
|
|
public decimal DokId { 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? WalId { get; set; }
|
|
|
|
public decimal? FormPlatnId { get; set; }
|
|
|
|
public virtual Dok Dok { get; set; } = null!;
|
|
|
|
public virtual FormaPlatnPos7? FormPlatn { get; set; }
|
|
|
|
public virtual Waluta? Wal { get; set; }
|
|
}
|