26 lines
609 B
C#
26 lines
609 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class SklepRozlicza
|
|
{
|
|
public decimal SklepId { get; set; }
|
|
|
|
public decimal SklepDokId { get; set; }
|
|
|
|
public int Kolejnosc { get; set; }
|
|
|
|
public decimal RozliczanySklepId { get; set; }
|
|
|
|
public decimal RozliczanySklepDokId { get; set; }
|
|
|
|
public decimal Rozliczenie { get; set; }
|
|
|
|
public decimal? RozliczeniePodatku { get; set; }
|
|
|
|
public virtual SklepDok SklepDok { get; set; } = null!;
|
|
|
|
public virtual SklepDok SklepDokNavigation { get; set; } = null!;
|
|
}
|