Dekrety #1
This commit is contained in:
25
Blink.Backoffice.Services.PcmDb/Entities/SklepRozlicza.cs
Normal file
25
Blink.Backoffice.Services.PcmDb/Entities/SklepRozlicza.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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!;
|
||||
}
|
||||
Reference in New Issue
Block a user