2024-07-01 21:20:00 +02:00

23 lines
560 B
C#

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!;
}